

:root {
  --theme-color-white: #fff;
  --theme-color-white-rgb: 255, 255, 255;
  --theme-color-light: #ffffff;
  --theme-color-gray: #ffffff;
  --theme-color-gray2: #000;
  --theme-color-black: #000000;
  --theme-color-black-rgb: 0, 0, 0;
  --theme-color1: #E40316;
  --theme-color1-rgb: 34, 36, 41;
  --theme-color2: #000;
  /* --theme-color2-rgb: 20, 68, 67; */
  --theme-color3: #ffffff;
  --theme-color4: #000000;
  --theme-color5: #000000;
  --theme-color6: #ffffff;

  /* --theme-color7: #039397;
  --theme-color8: #163838; */
  --theme-color-silver: #C4C4C4;
  --bg-theme-color1: var(--theme-color1);
  --bg-theme-color2: var(--theme-color2);
  --bg-theme-color3: var(--theme-color3);
  --border-theme-color1: var(--theme-color1);
  --border-theme-color2: var(--theme-color2);
  --border-theme-color3: var(--theme-color3);
  --theme-color1-text-color: #fff;
  --theme-color2-text-color: #0f0f0f;
  --theme-color3-text-color: #fff;
  --gradient-1: linear-gradient(99deg, #E40316 0%, #000 93.92%);
  --gradient-2: linear-gradient(to left, rgba(var(--theme-color2-rgb), 1) 0%, rgba(var(--theme-color2-rgb), 0.7) 100%);
  --gradient-3: linear-gradient(-135deg, rgba(23, 23, 23, 0) 50%, var(--theme-color2) 100%);
  --body-color: #fff;
  --text-color: #000;
  --headings-color: #000;
  --link-color: #000;
  --link-hover-color: #E40316;
  --body-font-family: "Poppins", sans-serif;
  --heading-font-family: "DM Sans", sans-serif;
  --style-font: "Manrope", sans-serif;
  --body-font-size: 16px;
  --body-line-height: 1.9;
  --body-font-weight: 400;
  --line-height-heading-h1: 1em;
  --line-height-heading: 1.2em;
  --line-height-heading-small: 1.4em;
  --h1-font-size: 80px;
  --h2-font-size: 56px;
  --h3-font-size: 24px;
  --h4-font-size: 20px;
  --h5-font-size: 18px;
  --h6-font-size: 14px;
  --h1-font-weight: 600;
  --h2-font-weight: 600;
  --h3-font-weight: 600;
  --h4-font-weight: 600;
  --h5-font-weight: 600;
  --h6-font-weight: 700;
  --sec-title-subtitle-color: #000;
  --sec-title-subtitle-font-size: 16px;
  --sec-title-subtitle-font-family: var(--heading-font-family);
  --sec-title-subtitle-font-weight: 600;
  --sec-title-subtitle-line-height: 1;
  --sec-title-color: var(--headings-color);
  --sec-title-font-size: 56px;
  --sec-title-font-family: var(--heading-font-family);
  --sec-title-font-weight: var(--h2-font-weight);
  --theme-light-background: #f8f6f1;
  --theme-light-background-text-color: var(--headings-color);
  --theme-black: #222429;
  --container-width: 1320px;
  --small-container-width: 1000px;
  --large-container-width: 1550px;
  --container-pt: 120px;
  --container-pb: 120px;
}

/*
 * typography.scss
 * -----------------------------------------------
*/
/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
::-moz-selection {
  background: var(--theme-color1);
  color: #fff;
  text-shadow: none;
}
::selection {
  background: var(--theme-color1);
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: var(--theme-color1); /* Firefox */
  color: #fff;
  text-shadow: none;
}

::-webkit-selection {
  background: var(--theme-color1); /* Safari */
  color: #fff;
  text-shadow: none;
}

:active,
:focus {
  outline: none !important;
}

::-webkit-input-placeholder {
  color: #7c858c;
}

::-moz-input-placeholder {
  color: #7c858c;
}

::-ms-input-placeholder {
  color: #7c858c;
}

body {
  background-color: var(--body-color);
  background-attachment: fixed;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  counter-reset: my-sec-counter;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  color: var(--text-color);
  font-size: var(--body-font-size);
  font-family: var(--body-font-family);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
}

p, .text {
  color: var(--text-color);
  font-size: var(--body-font-size);
  font-family: var(--body-font-family);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
}

/* -------- Headings ---------- */
h1, h2, h3, h4, h5, h6 {
  color: var(--headings-color);
  font-family: var(--heading-font-family);
  position: relative;
  line-height: var(--line-height-heading-);
}
h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small {
  font-weight: normal;
  line-height: 1;
  color: var(--headings-color);
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
  font-weight: inherit;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--h1-font-weight);
  line-height: var(--line-height-heading-h1);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--h2-font-weight);
  line-height: var(--line-height-heading);
}

h3 {
  font-size: var(--h3-font-size);
  font-weight: var(--h3-font-weight);
  line-height: var(--line-height-heading);
}

h4 {
  font-size: var(--h4-font-size);
  font-weight: var(--h4-font-weight);
  line-height: var(--line-height-heading-small);
}

h5 {
  font-size: var(--h5-font-size);
  font-weight: var(--h5-font-weight);
  line-height: var(--line-height-heading-small);
}

h6 {
  font-size: var(--h6-font-size);
  font-weight: var(--h6-font-weight);
  line-height: var(--line-height-heading-small);
}

/* -------- Body Text ---------- */
table p {
  margin-bottom: 0;
}

p {
  padding: 0;
  margin: 0;
}
p a:not(.button):not(.btn):hover, p a:not(.button):not(.btn):focus {
  text-decoration: underline;
}

/* -------- other ---------- */
a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: var(--body-font-weight);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover, a:focus {
  color: inherit;
  text-decoration: none;
  outline: none;
}
a b, a strong {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a img {
  border: none;
}

pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset {
  margin-bottom: 10px;
}

ol, ul {
  list-style-position: inside;
  margin: 0;
  padding: 0;
  list-style: none;
}

b, strong {
  color: #333;
  font-weight: var(--body-font-weight-bold);
}

iframe {
  border: none !important;
}

/*
 * container.scss
 * -----------------------------------------------
*/
.container .container {
  width: 100%;
}

.container .container,
.container .container-fluid,
.container-fluid .container,
.container-fluid .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

section > .container,
section > .container-fluid {
  padding-top: var(--container-pt);
  padding-bottom: var(--container-pt);
}
@media (max-width: 1199px) {
  section > .container,
  section > .container-fluid {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  section > .container,
  section > .container-fluid {
    padding: 80px 0;
  }
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: var(--container-width);
  }
}
.auto-container {
  position: static;
  max-width: var(--container-width);
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

/*=== Default Form ===*/
.form-control, .input-text {
  height: calc(2.25rem + 27px);
  padding: 14px 30px;
  outline: 0;
  background-color: #f4f5f8;
  border: 1px solid #f4f5f8;
  color: #686a6f;
  font-size: 0.9rem;
  width: 100%;
}
.form-control::-webkit-input-placeholder, .input-text::-webkit-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::-moz-placeholder, .input-text::-moz-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control:-ms-input-placeholder, .input-text:-ms-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::-ms-input-placeholder, .input-text::-ms-input-placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control::placeholder, .input-text::placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control:-ms-input-placeholder, .input-text:-ms-input-placeholder {
  color: #686a6f;
}
.form-control::-ms-input-placeholder, .input-text::-ms-input-placeholder {
  color: #686a6f;
}

textarea.form-control {
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}

/*
 *	boxed-layout.scss
 * -----------------------------------------------
*/
.tm-boxed-layout {
  background-color: #444;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 15px;
  padding-right: 15px;
}
.tm-boxed-layout.layer-overlay:before {
  z-index: -1;
}
.tm-boxed-layout .page-wrapper {
  margin: 0 auto;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .tm-boxed-layout .page-wrapper {
    width: 1170px;
  }
}
.tm-boxed-layout .container .container {
  width: 100%;
}
@media (min-width: 1200px) {
  .tm-boxed-layout .container {
    width: 1140px;
  }
}
@media (min-width: 1000px) {
  .tm-boxed-layout.tm-container-970px .page-wrapper {
    width: 970px;
  }
}
.tm-boxed-layout.tm-container-970px .container,
.tm-boxed-layout.tm-container-970px .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}
.tm-boxed-layout.tm-container-970px .container .container,
.tm-boxed-layout.tm-container-970px .container .container-fluid,
.tm-boxed-layout.tm-container-970px .container-fluid .container,
.tm-boxed-layout.tm-container-970px .container-fluid .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1300px) {
  .tm-boxed-layout.tm-container-1230px .page-wrapper {
    width: 1230px;
  }
}
.tm-boxed-layout.tm-container-1230px .container,
.tm-boxed-layout.tm-container-1230px .container-fluid {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.tm-boxed-layout.tm-container-1230px .container .container,
.tm-boxed-layout.tm-container-1230px .container .container-fluid,
.tm-boxed-layout.tm-container-1230px .container-fluid .container,
.tm-boxed-layout.tm-container-1230px .container-fluid .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1400px) {
  .tm-boxed-layout.tm-container-1300px .page-wrapper {
    width: 1300px;
  }
}
.tm-boxed-layout.tm-container-1300px .container,
.tm-boxed-layout.tm-container-1300px .container-fluid {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.tm-boxed-layout.tm-container-1300px .container .container,
.tm-boxed-layout.tm-container-1300px .container .container-fluid,
.tm-boxed-layout.tm-container-1300px .container-fluid .container,
.tm-boxed-layout.tm-container-1300px .container-fluid .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1400px) {
  .tm-boxed-layout.tm-container-1340px .page-wrapper {
    width: 1340px;
  }
}
.tm-boxed-layout.tm-container-1340px .container,
.tm-boxed-layout.tm-container-1340px .container-fluid {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.tm-boxed-layout.tm-container-1340px .container .container,
.tm-boxed-layout.tm-container-1340px .container .container-fluid,
.tm-boxed-layout.tm-container-1340px .container-fluid .container,
.tm-boxed-layout.tm-container-1340px .container-fluid .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1400px) {
  .tm-boxed-layout.tm-container-1440px .page-wrapper {
    width: 1440px;
  }
}
.tm-boxed-layout.tm-container-1440px .container,
.tm-boxed-layout.tm-container-1440px .container-fluid {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.tm-boxed-layout.tm-container-1440px .container .container,
.tm-boxed-layout.tm-container-1440px .container .container-fluid,
.tm-boxed-layout.tm-container-1440px .container-fluid .container,
.tm-boxed-layout.tm-container-1440px .container-fluid .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1560px) {
  .tm-boxed-layout.tm-container-1500px .page-wrapper {
    width: 1500px;
  }
}
.tm-boxed-layout.tm-container-1500px .container,
.tm-boxed-layout.tm-container-1500px .container-fluid {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.tm-boxed-layout.tm-container-1500px .container .container,
.tm-boxed-layout.tm-container-1500px .container .container-fluid,
.tm-boxed-layout.tm-container-1500px .container-fluid .container,
.tm-boxed-layout.tm-container-1500px .container-fluid .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1660px) {
  .tm-boxed-layout.tm-container-1600px .page-wrapper {
    width: 1600px;
  }
}
.tm-boxed-layout.tm-container-1600px .container,
.tm-boxed-layout.tm-container-1600px .container-fluid {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.tm-boxed-layout.tm-container-1600px .container .container,
.tm-boxed-layout.tm-container-1600px .container .container-fluid,
.tm-boxed-layout.tm-container-1600px .container-fluid .container,
.tm-boxed-layout.tm-container-1600px .container-fluid .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.tm-boxed-layout.tm-container-100pr .page-wrapper {
  width: 95%;
}
.tm-boxed-layout.tm-container-100pr .page-wrapper .container,
.tm-boxed-layout.tm-container-100pr .page-wrapper .container-fluid {
  width: 100%;
}
.tm-boxed-layout.container-shadow .page-wrapper {
  -webkit-box-shadow: 0 0 25px 0 #777;
          box-shadow: 0 0 25px 0 #777;
}
.tm-boxed-layout .header,
.tm-boxed-layout section,
.tm-boxed-layout .footer {
  background-color: #fff;
}
.tm-boxed-layout .header .navbar-default {
  background-color: #fff;
  border-color: #fff;
  padding: 0;
}
.tm-boxed-layout .header .navbar-default .navbar-nav > li > a {
  padding: 30px 5px;
}
.tm-boxed-layout .header .navbar-default .navbar-collapse {
  background-color: #fff;
  border-color: #fff;
  margin-right: 30px;
}
.tm-boxed-layout .header #header-logo {
  margin: 0;
  padding-top: 27px;
}
.tm-boxed-layout .banner-section .slide-item {
  min-height: 540px;
}
.tm-boxed-layout .banner-section .slide-item .content-box {
  padding: 150px 0 220px;
}
.tm-boxed-layout .banner-section-two .content-box {
  padding: 250px 0 150px;
}
.tm-boxed-layout .banner-section-three .content-box {
  padding: 250px 0 150px;
}
.tm-boxed-layout .banner-section-four .content-box {
  padding: 130px 0;
}

@media (max-width: 1200px) {
  .tm-boxed-layout {
    padding-top: 15px;
  }
  .tm-boxed-layout .header .navbar-default .navbar-nav > li > a {
    padding: 10px;
  }
  .tm-boxed-layout .header .navbar-default .navbar-collapse {
    margin-right: 15px;
  }
  .tm-boxed-layout .navbar-header {
    padding: 15px 0;
  }
  .tm-boxed-layout .navbar-collapse .navbar-nav li a .caret {
    margin-right: 0;
  }
}
/***

====================================================================
Reset
====================================================================

***/
* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  font-size: 100%;
}

/***

====================================================================
Global Settings
====================================================================

***/
textarea {
  overflow: hidden;
  resize: none;
}

button {
  outline: none !important;
  cursor: pointer;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.title a {
  color: inherit;
}

.color1 {
  color: var(--theme-color1);
}

.color2 {
  color: var(--theme-color2);
}

.color3 {
  color: var(--theme-color3);
}

.bg-color3 {
  background-color: var(--theme-color3) !important;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  z-index: 99;
  background-color: var(--body-color);
}

.large-container {
  position: static;
  max-width: var(--large-container-width);
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

.auto-container {
  position: static;
  max-width: var(--container-width);
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

.small-container {
  position: static;
  max-width: var(--small-container-width);
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.dropdown-toggle::after {
  display: none;
}















:root{
    /* --red:; */
    --dark:#000;
    --light:#fff;
}
/*=======================
    Preloader
=======================*/
.preloader {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: default;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999999;
  }
  .preloader .animation-preloader {
    z-index: 1000;
  }
  .preloader .animation-preloader .spinner {
    -webkit-animation: spinner 1s infinite linear;
            animation: spinner 1s infinite linear;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-top-color: var(--headings-color);
    height: 9em;
    margin: 0 auto 3.5em auto;
    width: 9em;
  }
  @media (max-width: 767px) {
    .preloader .animation-preloader .spinner {
      width: 7.5em;
      height: 7.5em;
      margin: 0 auto 1.5em auto;
    }
  }
  .preloader .animation-preloader .txt-loading {
    font: bold 5em var(--heading-font-family), var(--body-font-family);
    text-align: center;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  @media (max-width: 767px) {
    .preloader .animation-preloader .txt-loading {
      font-size: 2.5em;
    }
  }
  .preloader .animation-preloader .txt-loading .letters-loading {
    color: var(--theme-color1);
    position: relative;
  }
  .preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  .preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
  .preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
  .preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
  .preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
  .preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    -webkit-animation-delay: 1.2s;
            animation-delay: 1.2s;
  }
  .preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    -webkit-animation-delay: 1.4s;
            animation-delay: 1.4s;
  }
  .preloader .animation-preloader .txt-loading .letters-loading::before {
    -webkit-animation: letters-loading 4s infinite;
            animation: letters-loading 4s infinite;
    color: var(--headings-color);
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    font-family: var(--heading-font-family);
    position: absolute;
    top: -3px;
    -webkit-transform: rotateY(-90deg);
            transform: rotateY(-90deg);
  }
  .preloader p {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--headings-color);
  }
  .preloader .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    z-index: 1;
    pointer-events: none;
  }
  .preloader .loader .row {
    height: 100%;
  }
  .preloader .loader .loader-section {
    padding: 0px;
  }
  .preloader .loader .loader-section .bg {
    background-color: #f5f5f5;
    height: 100%;
    left: 0;
    width: 100%;
    -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  }
  .preloader.loaded .animation-preloader {
    opacity: 0;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  .preloader.loaded .loader-section .bg {
    width: 0;
    -webkit-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
    transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
  }
  
  
  
  
  
  
  
  
  
  
  
  
  





















/*=======================
Scroll To Top style
=======================*/
.scroll-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    font-size: 16px;
    line-height: 40px;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    background-color: var(--theme-color2);
    z-index: 100;
    display: none;
    border-radius: 50%;
    margin: 0 auto;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  
  .scroll-to-top:hover {
    background: var(--theme-color1);
    color: #000;
  }
  
  
  
  
  
  
  
  
  /* .tabs-box {
    position: relative;
  }
  .tabs-box .tab {
    display: none;
  }
  .tabs-box .tab.active-tab {
    display: block;
  } */
  
  .theme-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    white-space: nowrap;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 0;
    color: #fff !important;
  }
  /* .theme-btn .btn-title {
    position: relative;
  } */
  








  /*Btn Style One*/
  .btn-style-one {
    background-color: var(--bg-theme-color2);
    border-radius: 100px;
    color: var(--theme-color1);
    font-family: var(--heading-font-family);
    font-weight: 700;
    line-height: 1;
    overflow: hidden;
    padding: 20px 42px;
    position: relative;
    text-transform: capitalize;
  }
  .btn-style-one:before {
    position: absolute;
    left: 0;
    top: 0%;
    height: 100%;
    width: 100%;
    content: "";
    background-color: var(--bg-theme-color1);
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    z-index: -1;
  }
  .btn-style-one:hover:before {
    -webkit-transform-origin: top right;
            transform-origin: top right;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .btn-style-one:hover {
    color: var(--headings-color);
  }
  [data-tm-layout=dark] .btn-style-one:hover .icon {
    color: var(--headings-color);
  }
  
















  /*Btn Style*/
  .ks-btn-black {
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    border-radius: 60px;
    text-transform: uppercase;
    padding: 21px 30px;
    text-align: center;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    position: relative;
    background-color: var(--theme-color6);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  @media (max-width: 1199.98px) {
    .ks-btn-black {
      font-size: 12px;
      padding: 16px 25px;
    }
  }
  .ks-btn-black span {
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
    color: var(--theme-color-white);
  }
  .ks-btn-black span span.text-1 {
    position: relative;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .ks-btn-black span span.text-2 {
    position: absolute;
    top: 100%;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .ks-btn-black:hover {
    background: -webkit-gradient(linear, left top, right top, from(#C8F169), to(#039397));
    background: linear-gradient(90deg, #C8F169 0%, #039397 100%);
  }
  .ks-btn-black:hover span span.text-1 {
    -webkit-transform: translateY(-150%);
    transform: translateY(-150%);
  }
  .ks-btn-black:hover span span.text-2 {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  
  .btn-style-two {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-image: -webkit-gradient(linear, right top, left top, from(var(--theme-color1)), color-stop(50%, var(--theme-color7)), to(var(--theme-color1)));
    background-image: linear-gradient(to left, var(--theme-color1) 0%, var(--theme-color7) 50%, var(--theme-color1) 100%);
    background-size: 200%;
    border-radius: 100px;
    color: var(--theme-color-white);
    font-family: var(--heading-font-family);
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    overflow: hidden;
    padding: 20px 28px;
    padding-right: 80px;
    position: relative;
  }
  .btn-style-two:hover {
    background-position: 100% 0;
    color: var(--theme-color-white);
  }
  .btn-style-two:hover .icon {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    background-color: var(--headings-color);
    color: var(--theme-color-white);
  }
  .btn-style-two .icon {
    background-color: var(--theme-color-white);
    border-radius: 50%;
    bottom: 5px;
    color: var(--theme-color-black);
    font-size: 50px;
    height: 50px;
    line-height: 50px;
    position: absolute;
    right: 5px;
    top: 5px;
    -webkit-transition: all 900ms ease;
    transition: all 900ms ease;
    width: 50px;
  }
  
  .btn-style-three {
    position: relative;
    padding: 26px 60px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-right: 100px;
    height: 70px;
    overflow: hidden;
    border-radius: 100px;
    color: var(--theme-color1);
    background-color: rgba(255, 255, 255, 0.1);
  }
  .btn-style-three:before {
    position: absolute;
    left: 0;
    top: 0%;
    height: 100%;
    width: 100%;
    content: "";
    background-color: var(--bg-theme-color1);
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    z-index: -1;
  }
  .btn-style-three:hover {
    color: var(--headings-color);
  }
  .btn-style-three:hover:before {
    -webkit-transform-origin: top right;
            transform-origin: top right;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .btn-style-three:hover .icon {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    background-color: var(--headings-color);
    color: var(--headings-color);
  }
  .btn-style-three .icon {
    background-color: var(--theme-color1);
    border-radius: 50%;
    bottom: 4px;
    color: var(--theme-color-black);
    font-size: 50px;
    height: 62px;
    line-height: 72px;
    position: absolute;
    right: 4px;
    top: 4px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 62px;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  











/*** 

====================================================================
		About Section
====================================================================

***/
.about-image-1 {
    position: relative;
    max-width: 602px;
  }

  .about-image-1 img {
    width: 100%;
    height: 100%;
  }
  
  .about-content-1 .icon-items {
    margin-top: 30px;
    /* display: -webkit-box;
    display: -ms-flexbox; */
    display: flex;
    /* -webkit-box-align: center;
        -ms-flex-align: center; */
            align-items: center;
    gap: 17px;
  }

  @media (max-width: 1399.98px) {
    .about-content-1 .icon-items {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
    }
  }

  .about-content-1 .icon-items .icon {
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme-color2);
    font-size: 36px;
  }

  .about-content-1 .icon-items p {
    font-size: 20px;
    font-weight: 500;
    line-height: 175%;
    color: #000;
    text-transform: capitalize;
    text-decoration-line: underline;
    max-width: 471px;
  }

  @media (max-width: 767.98px) {
    .about-content-1 .icon-items p {
      font-size: 18px;
    }
  }
  @media (max-width: 575.98px) {
    .about-content-1 .icon-items p {
      font-size: 16px;
    }
  }
  [data-tm-layout=dark] .about-content-1 .icon-items p {
    color: #ffffff;
  }
  .about-content-1 .about-text {
    font-size: 18px;
    /* margin-top: 25px; */
    text-align: justify;
    line-height: 28px;
  }
  @media (max-width: 575.98px) {
    .about-content-1 .about-text {
      font-size: 16px;
      /* margin-top: 20px; */
    }
  }


  .about-content-1 .about-list-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
            align-items: center;
            justify-content: space-between;
  }
  @media (max-width: 1199.98px) {
    .about-content-1 .about-list-items {
          flex-wrap: wrap;
      gap: 20px;
    }
  }
  @media (max-width: 767.98px) {
    .about-content-1 .about-list-items {
      margin-top: 30px;
    }
  }
  .about-content-1 .about-list-items .about-list li {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 20px;
  }
    .about-content-1 .about-list-items .about-list li:not(:last-child) {
      margin-bottom: 13px;
    }

  .about-content-1 .about-list-items .about-list li .icon {
    position: relative;
    color: #fff;
    background-color: var(--theme-color1);
    width: 22px;
    height: 22px;
    line-height: 22px;
    border-radius: 22px;
    font-size: 13px;
    text-align: center;
    border: 2px solid var(--headings-color);
  }

  .about-content-1 .about-list-items .about-list li .icon::before {
    position: absolute;
    top: 2px;
    right: -4px;
    content: "";
    background-color: var(--theme-color2);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    z-index: -1;
  }

  /* .about-content-1 .about-list-items .counter-box {
    padding: 32px;
    border-radius: 20px;
    min-width: 250px;
    background: linear-gradient(180deg, #E40316 0%, #000 100%);
    position: relative;
    z-index: 9;
  }
  .about-content-1 .about-list-items .counter-box .butterfly-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
  }
  .about-content-1 .about-list-items .counter-box h2 {
    font-weight: 400;
    font-size: 64px;
    color: #fff;
  }

  .about-content-1 .about-list-items .counter-box .counter-bottom p {
    font-size: 18px;
    max-width: 173px;
    color: #fff;
    font-weight: 500;
    line-height: 133%;
  }
  .about-content-1 .about-list-items .counter-box .counter-bottom .icon {
    font-size: 50px;
    color: #fff;
  } */

  .about-section {
    position: relative;
    z-index: 9;
  }
  .about-section .star-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
  @media (max-width: 1399.98px) {
    .about-section .star-shape {
      display: none;
    }
  }
  .about-section .arrow-shape-1 {
    position: absolute;
    top: 35%;
    right: 40px;
    z-index: -1;
  }
  @media (max-width: 1399.98px) {
    .about-section .arrow-shape-1 {
      display: none;
    }
  }
  .about-section .arrow-shape-2 {
    position: absolute;
    top: 35%;
    right: 0;
    z-index: -1;
  }
  @media (max-width: 1399.98px) {
    .about-section .arrow-shape-2 {
      display: none;
    }
  }
  









































/*** 

====================================================================
    Services Section
====================================================================

***/
.service-section {
  position: relative;
  z-index: 9;
  border-radius: 30px;
  margin: 0 15px;
  padding: 120px 30px;
  background-attachment: fixed;
  background: url(../img/banner/about-bg.jpeg);
}


.service-section::before {
  background: linear-gradient(280deg, rgba(37, 37, 37, 0.85) 15.04%, #000000 50.27%);
  /* background: linear-gradient(280deg, rgba(20, 68, 67, 0.85) 15.04%, #144443 50.27%); */
  z-index: -1;
  border-radius: 30px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  content: "";
}
.service-section .ellipse-bg {
  position: absolute;
  top: 45px;
  left: 150px;
  z-index: -1;
  display: inline-block;
  width: 180px;
  height: 180px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #E40316;
  /* background: var(--primary); */
  -webkit-filter: blur(100px);
          filter: blur(100px);
  z-index: -1;
}

.service-wrapper {
  margin: 0 30px;
}

.service-card-items .icon i {
  -webkit-transition: all 900ms ease;
  transition: all 900ms ease;
  display: inline-block;
}

.service-card-items .content {
  padding: 8px;
  text-align: center;
  
}



.service-card-items .content h3{
  font-size: 14px;
  font-weight: 500;
  color: #fff;

}



















/***

====================================================================
    Marquee Section
====================================================================

***/
.marquee {
  position: relative;
  --duration: 30s;
  --gap: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  gap: 0;
}
.marquee.slide-right {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.marquee.slide-right .text {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.marquee.slide-right .stroke-text {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.marquee .marquee-group {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 0;
  min-width: 100%;
  -webkit-animation: scroll var(--duration) linear infinite;
          animation: scroll var(--duration) linear infinite;
}
@media (max-width: 1899.98px) {
  .marquee .marquee-group {
    gap: 30px;
  }
}
.marquee .text {
  font-size: 48px;
  line-height: 1.3;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 30px;
  position: relative;
  color: var(--headings-color);
}
.marquee .stroke-text {
  font-size: 48px;
  line-height: 1.3;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 30px;
  position: relative;
  color: transparent;
  -webkit-text-stroke: 1px #B4B4B4;
}
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-100% - var(--gap)));
            transform: translateX(calc(-100% - var(--gap)));
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-100% - var(--gap)));
            transform: translateX(calc(-100% - var(--gap)));
  }
}

.marquee-section-2 {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 45px 0;
}
[data-tm-layout=dark] .marquee-section-2 {
  border-color: rgb(var(--theme-color-white-rgb), 0.1);
}

@media (max-width:768px){
  .marquee .text {
    font-size: 24px !important;
  }
}





/* product section by */
.product-section-by .product-content{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  min-height: 600px;
}

.product-section-by .product-content ul li{
  color: #fff !important;
}

.product-section-by .product-img{
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

@media (max-width:768px){
  .product-section-by .product-content{
    min-height: 0px;
  }
}
.product-section-by .product-content.content-left h2{
 color: #fff;
 font-size: 35px;
}
.product-section-by .product-content.content-left p{
 color: #fff;
 font-size: 18px;
}







































/*** 

====================================================================
		Contact Sectiom
====================================================================

***/
.contact-content-1 .sec-title .triangle2 {
  border-left-color: #67A19F;
}
.contact-content-1 .form-box {
  background-color: #fff;
  padding: 65px 42px;
  border-radius: 20px;
  margin-top: 70px;
  max-width: 590px;
}
[data-tm-layout=dark] .contact-content-1 .form-box {
  background-color: var(--dark-color2);
}
@media (max-width: 767.98px) {
  .contact-content-1 .form-box {
    margin-top: 30px;
    padding: 40px 30px;
  }
}
.contact-content-1 .form-box .form-clt input, .contact-content-1 .form-box .form-clt textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  /* padding-bottom: 20px; */
  outline: none;
  background-color: #fff;
  color: var(--text-color);
  text-transform: capitalize;
}
[data-tm-layout=dark] .contact-content-1 .form-box .form-clt input, [data-tm-layout=dark] .contact-content-1 .form-box .form-clt textarea {
  color: rgba(204, 204, 204, 0.8);
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.1);
}
.contact-content-1 .form-box .form-clt textarea {
  padding-bottom: 20px;
}
.contact-content-1 .form-box .form-clt button {
  border: none;
}
.contact-content-1 .form-box .form-clt .btn-style-one {
  background-image: -webkit-gradient(linear, right top, left top, from(var(--theme-color1)), color-stop(50%, var(--theme-color7)), to(var(--theme-color1)));
  background-image: linear-gradient(to left, var(--theme-color1) 0%, var(--theme-color7) 50%, var(--theme-color1) 100%);
  background-size: 200%;
  color: #fff;
  padding: 24px 42px;
}
.contact-content-1 .form-box .form-clt .btn-style-one:before {
  display: none;
}
.contact-content-1 .form-box .form-clt .btn-style-one:hover {
  background-position: 100% 0;
}

.contact-image-1 {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 9;
}
@media (max-width: 1399.98px) {
  .contact-image-1 {
    max-width: 600px;
  }
  .contact-image-1 img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 1199.98px) {
  .contact-image-1 {
    max-width: 500px;
  }
}
@media (max-width: 991.98px) {
  .contact-image-1 {
    position: static;
    height: 600px;
    max-width: initial;
  }
}
.contact-image-1 img {
  height: 100%;
}
.contact-image-1 .contact-info-box {
  border-radius: 20px;
  position: absolute;
  bottom: 130px;
  left: -36%;
  padding: 55px 70px;
  background-color: #4b090e;
  /* background-color: #093736; */
  overflow: hidden;
}
@media (max-width: 1699.98px) {
  .contact-image-1 .contact-info-box {
    left: 0;
    bottom: 0;
  }
}
@media (max-width: 767.98px) {
  .contact-image-1 .contact-info-box {
    padding: 30px;
  }
}
.contact-image-1 .contact-info-box h2 {
  font-size: 36px;
  color: #fff;
  max-width: 322px;
  margin-bottom: 30px;
}
@media (max-width: 767.98px) {
  .contact-image-1 .contact-info-box h2 {
    font-size: 24px;
  }
}
.contact-image-1 .contact-info-box .contact-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
}
.contact-image-1 .contact-info-box .contact-list li:not(:last-child) {
  margin-bottom: 24px;
}
.contact-image-1 .contact-info-box .contact-list li .icon {
  width: 72px;
  height: 72px;
  line-height: 72px;
  border-radius: 50%;
  background-color: var(--theme-color1);
  text-align: center;
  color: var(--headings-color);
  font-size: 30px;
}
.contact-image-1 .contact-info-box .contact-list li .icon img {
  width: initial;
  height: initial;
}
.contact-image-1 .contact-info-box .contact-list li .content h3 {
  font-size: 24px;
  color: #fff;
  font-family: var(--body-font);
  font-weight: 600;
  line-height: 1;
}
.contact-image-1 .contact-info-box .contact-list li .content p {
  font-size: 16px;
}
.contact-image-1 .contact-info-box .contact-list li .content p a {
  color: #fff;
}
.contact-image-1 .contact-info-box .ellipse-bg {
  width: 232px;
  height: 249.521px;
  position: absolute;
  bottom: -30%;
  right: -60px;
  background: rgba(224, 7, 7, 0.5);
  -webkit-filter: blur(100px);
          filter: blur(100px);
  z-index: -1;
}











.contact-section {
  position: relative;
  background-color: #090909ef;
  /* background-color: #144443; */
  z-index: 9;
}
@media (max-width: 991.98px) {
  .contact-section {
    padding-bottom: 0;
  }
}
.contact-section .shape-image {
  position: absolute;
  top: 27%;
  left: -40%;
  -webkit-animation: rounded 5s linear infinite;
          animation: rounded 5s linear infinite;
}
@media (max-width: 1699.98px) {
  .contact-section .shape-image {
    display: none;
  }
}
.contact-section .contact-shape {
  position: absolute;
  left: 0;
  bottom: 130px;
  z-index: -1;
}




































/***

====================================================================
	Testimonial Section
====================================================================

***/
.testimonial-box-items {
  margin-top: 30px;
  padding: 40px;
  padding-top: 0;
  position: relative;
}
@media (max-width: 767.98px) {
  .testimonial-box-items {
    padding: 40px 25px;
    padding-top: 0;
  }
}
.testimonial-box-items::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  content: "";
  border-radius: 20px;
  border: 1px solid #c9c9c9;
  background-color: var(--theme-color-white);
  z-index: -1;
  top: 30px;
  height: initial;
}
[data-tm-layout=dark] .testimonial-box-items::before {
  border-color: var(--dark-color2);
}
.testimonial-box-items .client-info-items {
  border-radius: 20px;
  background: #E00016;
  /* background: #144443; */
  padding: 15px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media (max-width: 767.98px) {
  .testimonial-box-items .client-info-items {
    padding: 15px 15px;
  }
}
.testimonial-box-items .client-info-items .client-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.testimonial-box-items .client-info-items .client-image .quote-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: var(--theme-color1);
  text-align: center;
  border-radius: 50%;
  margin-left: -15px;
  color: var(--headings-color);
}
.testimonial-box-items .client-info-items .client-image img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.testimonial-box-items .client-info-items .client-content h5 {
  color: #fff;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}
.testimonial-box-items .client-info-items .client-content span {
  font-size: 12px;
  line-height: 1;
  display: inline-block;
  color: #fff;
}
.testimonial-box-items .testimonial-content {
  margin-top: 24px;
}
.testimonial-box-items .testimonial-content .star {
  font-size: 12px;
  color: #ffc65e;
  margin-bottom: 10px;
}
.testimonial-box-items .testimonial-content p {
  font-size: 18px;
  line-height: 195%;
}



































/***

==================================================================
	Main Footer
==================================================================

***/
.footer-newsletter-wrapper {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  /* display: -webkit-box;
  display: -ms-flexbox; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0;
}
@media (max-width: 991.98px) {
  .footer-newsletter-wrapper {
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
  }
}
.footer-newsletter-wrapper .footer-newsletter-left {
  /* display: -webkit-box;
  display: -ms-flexbox; */
  display: flex;
  /* -webkit-box-align: center;
      -ms-flex-align: center; */
          align-items: center;
  gap: 35px;
}
.footer-newsletter-wrapper .footer-newsletter-left .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 36px;
  color: var(--theme-color1);
}
.footer-newsletter-wrapper form {
  max-width: 760px;
  width: 100%;
}
.footer-newsletter-wrapper .form-clt {
  position: relative;
  max-width: 525px;
  width: 100%;
  margin: 0 auto;
  margin-right: 0;
}
@media (max-width: 991.98px) {
  .footer-newsletter-wrapper .form-clt {
    max-width: initial;
  }
}
.footer-newsletter-wrapper .form-clt input {
  width: 100%;
  border: none;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 27px 40px;
  padding-right: 20px;
  line-height: 1;
  text-transform: capitalize;
  color: var(--theme-color-white);
}
.footer-newsletter-wrapper .form-clt input::-webkit-input-placeholder {
  color: var(--theme-color-white);
}
.footer-newsletter-wrapper .form-clt input::-moz-placeholder {
  color: var(--theme-color-white);
}
.footer-newsletter-wrapper .form-clt input:-ms-input-placeholder {
  color: var(--theme-color-white);
}
.footer-newsletter-wrapper .form-clt input::-ms-input-placeholder {
  color: var(--theme-color-white);
}
.footer-newsletter-wrapper .form-clt input::placeholder {
  color: var(--theme-color-white);
}
[data-tm-layout=dark] .footer-newsletter-wrapper .form-clt input::-webkit-input-placeholder {
  color: var(--headings-color);
}
[data-tm-layout=dark] .footer-newsletter-wrapper .form-clt input::-moz-placeholder {
  color: var(--headings-color);
}
[data-tm-layout=dark] .footer-newsletter-wrapper .form-clt input:-ms-input-placeholder {
  color: var(--headings-color);
}
[data-tm-layout=dark] .footer-newsletter-wrapper .form-clt input::-ms-input-placeholder {
  color: var(--headings-color);
}
[data-tm-layout=dark] .footer-newsletter-wrapper .form-clt input::placeholder {
  color: var(--headings-color);
}
.footer-newsletter-wrapper .form-clt .arrow-icon {
  background-image: -webkit-gradient(linear, right top, left top, from(var(--theme-color1)), color-stop(50%, var(--theme-color7)), to(var(--theme-color1)));
  background-image: linear-gradient(to left, var(--theme-color1) 0%, var(--theme-color7) 50%, var(--theme-color1) 100%);
  background-size: 200%;
  border: none;
  border-radius: 50%;
  height: 52px;
  line-height: 58px;
  outline: none;
  position: absolute;
  right: 15px;
  text-align: center;
  top: 14px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-size: 25px;
  color: var(--theme-color-white);
  width: 52px;
}
@media (max-width: 1199.98px) {
  .footer-newsletter-wrapper .form-clt .arrow-icon {
    right: 15px;
  }
}
.footer-newsletter-wrapper .form-clt .arrow-icon:hover {
  background-position: 100% 0;
}




.footer-widget-wrapper {
  padding: 30px 0 60px;
}
.footer-widget-wrapper .footer-widget-items .footer-content p {
  color: #B4B4B4;
  max-width: 270px;
  text-transform: capitalize;
}
.footer-widget-wrapper .footer-widget-items .footer-content .social-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.footer-widget-wrapper .footer-widget-items .footer-content .social-icon a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
  color: var(--theme-color-white);
}
[data-tm-layout=dark] .footer-widget-wrapper .footer-widget-items .footer-content .social-icon a {
  color: var(--link-color);
}
.footer-widget-wrapper .footer-widget-items .footer-content .social-icon a:hover {
  background: var(--gradient-1);
}
.footer-widget-wrapper .footer-widget-items .user-links {
  position: relative;
}
.footer-widget-wrapper .footer-widget-items .user-links li {
  position: relative;
  font-size: 16px;
  font-weight: 400;
}
.footer-widget-wrapper .footer-widget-items .user-links li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widget-wrapper .footer-widget-items .user-links li a {
  color: #B8B8B8;
  position: relative;
}
[data-tm-layout=dark] .footer-widget-wrapper .footer-widget-items .user-links li a {
  color: #ffffff;
}
.footer-widget-wrapper .footer-widget-items .user-links li a::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gradient-1);
  content: "";
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.footer-widget-wrapper .footer-widget-items .user-links li:hover a {
  color: var(--theme-color-white);
}
[data-tm-layout=dark] .footer-widget-wrapper .footer-widget-items .user-links li:hover a {
  color: #ffffff;
}
.footer-widget-wrapper .footer-widget-items .user-links li:hover a::before {
  width: 100%;
}
.footer-widget-wrapper .footer-widget-items .contact-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.footer-widget-wrapper .footer-widget-items .contact-list li i {
  font-size: 18px;
  color: var(--theme-color1);
}
.footer-widget-wrapper .footer-widget-items .contact-list li:not(:last-child) {
  margin-bottom: 22px;
}
.footer-widget-wrapper .footer-widget-items .contact-list li p {
  color: #B8B8B8;
  /* text-transform: capitalize; */
  line-height: 1.5;
}
.footer-widget-wrapper .footer-widget-items .contact-list li p a {
  color: #B8B8B8;
}








.footer-bottom {
  /* background: #E40316; */
  background: #000;
  padding: 30px 0;
}
.footer-bottom p {
  text-align: center;
  color: #BEBEBE;
}


.footer-section-1 {
  position: relative;
  z-index: 9;
}
.footer-section-1 .circle-shape {
  display: inline-block;
  border-radius: 592px;
  background: linear-gradient(48deg, #e403164b 13.25%, #e4031669 83.21%);
  /* background: linear-gradient(48deg, rgba(8, 44, 43, 0.3) 13.25%, rgba(128, 167, 82, 0.3) 83.21%); */
  width: 592px;
  height: 592px;
  border-radius: 50%;
  position: absolute;
  top: -20%;
  right: -10%;
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .footer-section-1 .circle-shape {
    display: none;
  }
}
.footer-section-1 .circle-shape-2 {
  display: inline-block;
  border-radius: 592px;
  background: transparent;
  width: 592px;
  height: 592px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: -20%;
  z-index: -1;
  border: 5px solid #E40316;
  /* border: 5px solid rgb(200, 241, 105); */
  opacity: 0.2;
}
@media (max-width: 1199.98px) {
  .footer-section-1 .circle-shape-2 {
    display: none;
  }
}


/* gallery section */
.gallery-image {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-image img {
  transition: transform 0.3s ease;
}

.gallery-image:hover img {
  transform: scale(1.05);
}

.gallery-image .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  font-size: 1.5rem;
  transition: opacity 0.3s ease;
}

.gallery-image:hover .overlay {
  opacity: 1;
}





/* blog */
/* blog-section start */
.blogs .blog-card .card-img{
  position: relative;
}
.blog-card{
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 5px;
}
.blogs .blog-card .card-img .img{
  position: relative;
}
.blogs .blog-card .card-img .date-overlay{
   position: absolute;
   bottom: 0%;
}
.blogs .blog-card .card-img .date-overlay p{
  padding: 10px 20px;
  margin-bottom: 0 !important;
  color: #fff;
  background-color: #000000d3;
}
.blogs .blog-card .blog-content h3{
 font-size: 18px;
 font-weight: 600;
}
.blogs .blog-card .blog-content p{
  font-size: 16px;
  text-align: justify;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis !important;
}
.blogs .blog-card .blog-content a{
  -webkit-text-decoration:none;
  text-decoration: none;
  font-size: 20px;
  color: #000;
  font-weight: 600;
}
.blogs .blog-caption{
 font-size: 18px;
 font-weight: 500;
}
/* blog-section end */




/* blog  */
/* blog-details-start */
    /* related blog-style-start */
    .related-blog {
      box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
      padding: 5px;
      border-bottom: 1px solid #000;
      margin-bottom: 15px;
  }

  .related-blog a {
      text-decoration: none;


  }

  .related-blog .realted-img {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;

  }

  .related-blog .realted-img img {
      height: 100%;
      width: 100%;
  }

  .related-blog .related-blog-content {
      padding: 5px 5px 5px 0px;
  }

  .related-blog .related-blog-content h2 {
      font-size: 16px;
      color: #000;
  }

  .related-blog .related-blog-content p {
      color: #000;
  }

  /* related blog-style-end */


  .blog-detail {
      padding: 50px 0px;
  }


  .blog-image-banner .blog-date p {
      margin-bottom: 0px;
      color: #fff;
  }

  .blog-content-para p {
      text-align: justify;
      font-size: 18px;
  }
/* blog-details-end */

/* responsive section start */
@media(max-width: 768px){
 .blog-detail {
      padding: 30px 0px;
  }
}
/* responsive section end */







/*** 
====================================================================
Page Title
====================================================================
***/
.page-title {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  padding: 100px 0 110px;
  position: relative;
  
}
.page-title:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: radial-gradient(95.51% 264.21% at 92.63% 41.85%, rgba(0, 7, 31, 0) 0%, rgba(4, 44, 42, 0.98) 99.98%, rgba(4, 44, 42, 0.98) 99.99%);
  content: "";
  mix-blend-mode: normal;
}
.page-title .title {
  font-size: 64px;
  color: #ffffff;
  margin-top: 15px;
}

@media(max-width:768px)
{
  .page-title .title {
    font-size: 31px;
    color: #ffffff;
    margin-top: 15px;
}
}
.page-title .text {
  position: relative;
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.05em;
  max-width: 520px;
}

.page-breadcrumb {
  position: relative;
  margin-top: 5px;
}
.page-breadcrumb li {
  position: relative;
  display: inline-block;
  margin-right: 12px;
  padding-right: 13px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}
.page-breadcrumb li:after {
  position: absolute;
  /* content: " \ "; */
  right: -6px;
  top: 1px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  font-family: "Font Awesome 6 Pro";
  color: #ffffff;
}
.page-breadcrumb li:last-child {
  padding-right: 0px;
  margin-right: 0px;
}
.page-breadcrumb li:last-child::after {
  display: none;
}
.page-breadcrumb li a {
  color: var(--theme-color1);
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.page-breadcrumb li a:hover {
  color: #ffffff;
}

.page-title.style-two {
  background-position: center center;
}
.page-title.style-two .page-breadcrumb-outer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 10px 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 8;
}
.page-title.style-two .page-breadcrumb li {
  color: rgb(7, 7, 16);
  font-weight: 600;
}
.page-title.style-two .page-breadcrumb li:after {
  color: rgb(7, 7, 16);
}
.page-title.style-two .page-breadcrumb li a {
  color: rgba(7, 7, 16, 0.6);
}
.page-title.style-two .page-breadcrumb li a:hover {
  color: rgb(7, 7, 16);
}

















/* enquiry page start */
.enquiry p {
  font-size: 18px;
  text-align: justify;
}
.enquiry .enquiry-content h2 {
  font-size: 32px;
  text-align: justify;
}
.enquiry .enquiry-content p {
  margin-bottom: 10px;
  font-size: 18px;
  text-align: justify;
}

.enquiry .enquiry-content ul li {
 
  font-size: 18px;
  text-align: justify;
}

.enquiry-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  background-color: #E00016;
  padding: 10px 10px;
  /* padding: 10px 10px; */
}

.enquiry-card .enq-icon-img-div {
  background-color: #FFF;
  padding: 12px 14px;
  /* border-radius: 50%; */
  box-shadow: rgba(255, 255, 255, 0.89) 0px 3px 8px;
  margin-bottom: 20px;
}

.enquiry-card .enq-icon-img-div img {
  filter: drop-shadow(rgba(0, 0, 0, 0.685) 0px 3px 8px);
}

.enquiry-card .enq-form-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;


}

.enquiry-card .enq-form-content h2 {
  color: #fff;
  font-size: 16px;
  text-align: center;
  margin-bottom: 25px;
}

.enquiry-card .enq-form-content p {
  color: #FFF;
  margin-bottom: 0px;
}

.enquiry-card .enq-form-content p a {
  text-decoration: none;
  color: #fff !important;
}

.enquiry-card .enq-form-content img {
  height: 30px;
}

.enquiry-card .enq-form-content .enq-btn {
  text-decoration: none;
  color: #fff;
  padding: 10px 20px;
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 30px;
  animation: glow-animation 0.8s infinite alternate;
}

@keyframes glow-animation {
  from {
    box-shadow: rgba(255, 255, 255, 0.877) 0px 5px 15px;
  }

  to {
    box-shadow: rgba(255, 255, 255, 0.829) 0px 7px 29px 0px;
  }
}


@media screen and (max-width:991px) {
  .enquiry-card {
    padding: 20px 10px;
  }

  .enquiry .enquiry-img {
    margin: 10px 0px;
  }

  .enquiry-card .enq-form-content h2 {
    color: #fff;
    font-size: 16px;
    text-align: center;
    margin-bottom: 18px;
  }

  .enquiry-card .enq-form-content p {
    color: #FFF;
    margin-bottom: 0px;
    font-size: 14px;
  }
}

.enq-modal .modal-content {
  background-color: #fff !important;
  margin-top: 120px;
}

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

  .enquiry  h2 {
    font-size: 20px !important;
  }


}


.enquiry-detail h2 {
  text-align: center;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  gap: 10px;
}

.enquiry-detail h3 i {
  color: #000;
  margin-right: 10px;
}

.enquiry-detail h3 {
  margin-top: 20px;
  font-size: 24px;
  color: rgb(17, 17, 162);
}

.enquiry-detail p {
  font-size: 18px;
  text-align: justify;
  margin-bottom: 5px;
}

@media screen and (max-width:767px) {
  .enquiry-detail h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .enquiry-detail h3 {
    font-size: 18px;
    margin-top: 10px;
  }

  .enquiry-detail h3 i {
    margin-right: 5px;
  }

  .enquiry-detail p {
    font-size: 12px;
  }
}




/* fixed icon */
.fixed-whatsapp{
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 9999;
}
.fixed-whatsapp img{
  width: 100%;
}

.fixed-phone{
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 90px;
  right: 10px;
  z-index: 9999;
}
.fixed-phone img{
  width: 100%;
}




/* navbar */
.navbar .navbar-brand img{
  width: 120px;
}
.navbar .nav-item .nav-link{
  font-size: 19px !important;
  color: #000;
}













.captchasep1 {
  display: flex;
  background: transparent;
}

.contact-us .contact-form .captchasep1 .form-floating label {
  color: #fff;
}

.contact-us .contact-form .captchasep1 .form-floating .form-control {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  color: #000;
}

.captchasep1 input {
  width: 100% !important;
  /* height: 40px; */
}

.captchasep1 .captcha-codes-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  border-radius: 5px;
  border: none !important;
  /* background: url(../img/logo/captcha-bg.jpg); */
}

.captchasep1 .captcha-codes-sec p {
  letter-spacing: 9px;
  font-style: italic;
  font-size: 32px;
  font-weight: 800;
  padding: 5px;
  height: 100%;
  color: #fff;
  border: none !important;
}

.captchasep1 .captcha-codes-sec {
  margin-bottom: 10px;
}

.captchasep1 .captcha-codes-sec button {
  font-style: italic;
  font-size: 22px;
  outline: none;
  height: 100%;
  border: none;
  background: none;
}

.captchasep1 .captcha-codes-sec button i {
  background: var(--theme-color1);
  color: #000;
  padding: 10px;
  border-radius: 5px;
}


.form-floating .form-control,
.form-floating .form-select {
  height: 2.5rem;
  line-height: 1.25;
  background: transparent !important;
  border: none;
  border-bottom: 1px solid grey;
}
/* responsive captcha */
@media screen and (max-width: 767px) {
  .captchasep1 .captcha-codes-sec p {
    letter-spacing: 2px;
    font-size: 18px;
    width: 60% !important;
  }

  .captchasep1 .captcha-codes-sec button {
    font-size: 12px;
  }

  .contact-form .captchasep1 .form-floating label {
    font-size: 14px;
    padding: 5px;
  }

  .form-floating .form-control,
  .form-floating .form-select {
    height: 2.5rem;
    line-height: 1.25;
    background: transparent !important;
  }

}
/* enquiry style end  */

