-------------------------------------------------------------------*/
/*********** CSS TABLE OF CONTENTS *******************

|--- 01.Component -> { Header }
|--- 02.Component -> { Menu }
|--- 03.Component -> { Button }
|--- 04.Component -> { Form }
|--- 05.Component -> { Cards }
|--- 06.Component -> { Section Heading }



|--- THEME CUSTOM STYLES

|--- 01.sections -> { Landing-14 }


******************************************************/
/*=== Media Query ===*/
body[data-theme="dark"],
.dark-bg,
.dark-mode-texts {
  --bg: #19191b;
  --bg-2: #19191b;
  --color-headings: $white;
  --color-texts: rgba(255, 255, 255, 0.7);
  --color-texts-2: rgba(255, 255, 255, 1);
  --color-texts-3: rgba(255, 255, 255, 0.7);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-2: rgba(255, 255, 255, 0.7);
}

body[data-theme="light"],
.light-bg,
.light-mode-texts {
  --bg: $white;
  --bg-2: #f8f9fc;
  --color-headings: #25373f;
  --color-texts: rgba(37, 55, 63, 0.7);
  --color-texts-2: #3b4656;
  --color-texts-3: rgba(38, 39, 41, 0.7);
  --border-color: rgba(128, 138, 142, 0.2);
  --border-color-2: rgba(37, 55, 63, 0.1);
}

body {
  --bg: $white;
  --bg-2: #f8f9fc;
  --color-headings: #25373f;
  --color-texts: rgba(37, 55, 63, 0.7);
  --color-texts-2: #3b4656;
  --color-texts-3: rgba(38, 39, 41, 0.7);
  --border-color: rgba(128, 138, 142, 0.2);
  --border-color-2: rgba(37, 55, 63, 0.1);
}

p {
  color: var(--color-texts);
}

.button {
  max-width: 25rem;
  padding: 1em;
  font-family: Karla;
  font-style: normal;
  font-weight: 700;
  font-size: 1.25rem;
  text-align: center;
  line-height: 28px;
  letter-spacing: -0.53px;
  color: #fff;
  background: #8d0709;
  margin: 0 auto;
  margin-top: 4rem;
  border-radius: 0.375rem;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.button:hover {
  color: #8d0709;
  background: #fff;
}

.button--white {
  background: #fff;
  color: #8d0709;
}

.button--white:hover {
  background: #8d0709;
  color: #fff;
}

.default-logo,
.default-shape {
  display: block;
}

.light-version-logo,
.light-shape {
  display: none;
}

.dark-version-logo,
.dark-shape {
  display: none;
}

.light-version-logo.default-logo {
  display: block;
}

.dark-version-logo.default-logo {
  display: block;
}

body[data-theme="dark"] .dark-version-logo,
body[data-theme="dark"] .dark-shape,
.dark-mode-texts .dark-version-logo,
.dark-mode-texts .dark-shape {
  display: block;
}

body[data-theme="dark"] .light-version-logo,
.dark-mode-texts .light-version-logo {
  display: none;
}

body[data-theme="dark"] .light-version-logo.default-logo,
.dark-mode-texts .light-version-logo.default-logo {
  display: none;
}

body[data-theme="dark"] .light-shape,
.dark-mode-texts .light-shape {
  display: none;
}

body[data-theme="dark"] .light-shape.default-shape,
.dark-mode-texts .light-shape.default-shape {
  display: none;
}

body[data-theme="dark"] .light-mode-texts .light-version-logo,
body[data-theme="dark"] .light-mode-texts .light-shape,
.dark-mode-texts .light-mode-texts .light-version-logo,
.dark-mode-texts .light-mode-texts .light-shape {
  display: block;
}

body[data-theme="dark"] .light-mode-texts .dark-version-logo,
.dark-mode-texts .light-mode-texts .dark-version-logo {
  display: none;
}

body[data-theme="dark"] .light-mode-texts .dark-version-logo.default-logo,
.dark-mode-texts .light-mode-texts .dark-version-logo.default-logo {
  display: none;
}

body[data-theme="dark"] .light-mode-texts .dark-shape,
.dark-mode-texts .light-mode-texts .dark-shape {
  display: none;
}

body[data-theme="dark"] .light-mode-texts .dark-shape.default-shape,
.dark-mode-texts .light-mode-texts .dark-shape.default-shape {
  display: none;
}

body[data-theme="light"] .light-version-logo,
body[data-theme="light"] .light-shape,
.light-mode-texts .light-version-logo,
.light-mode-texts .light-shape {
  display: block;
}

body[data-theme="light"] .dark-version-logo,
.light-mode-texts .dark-version-logo {
  display: none;
}

body[data-theme="light"] .dark-version-logo.default-logo,
.light-mode-texts .dark-version-logo.default-logo {
  display: none;
}

body[data-theme="light"] .dark-shape,
.light-mode-texts .dark-shape {
  display: none;
}

body[data-theme="light"] .dark-shape.default-shape,
.light-mode-texts .dark-shape.default-shape {
  display: none;
}

body[data-theme="light"] .dark-mode-texts .dark-version-logo,
body[data-theme="light"] .dark-mode-texts .dark-shape,
.light-mode-texts .dark-mode-texts .dark-version-logo,
.light-mode-texts .dark-mode-texts .dark-shape {
  display: block;
}

body[data-theme="light"] .dark-mode-texts .light-version-logo,
.light-mode-texts .dark-mode-texts .light-version-logo {
  display: none;
}

body[data-theme="light"] .dark-mode-texts .light-version-logo.default-logo,
.light-mode-texts .dark-mode-texts .light-version-logo.default-logo {
  display: none;
}

body[data-theme="light"] .dark-mode-texts .light-shape,
.light-mode-texts .dark-mode-texts .light-shape {
  display: none;
}

body[data-theme="light"] .dark-mode-texts .light-shape.default-shape,
.light-mode-texts .dark-mode-texts .light-shape.default-shape {
  display: none;
}

.bg-default {
  background: var(--bg);
}

.bg-default-1 {
  background: var(--bg);
}

.bg-default-2 {
  background: var(--bg-2);
}

.bg-default-3 {
  background: var(--bg-3);
}

.bg-default-4 {
  background: var(--bg-4);
}

.bg-default-5 {
  background: var(--bg-5);
}

.bg-default-6 {
  background: var(--bg-6);
}

.text-default-color {
  color: var(--color-texts);
}

.text-default-color-2 {
  color: var(--color-texts-2);
}

.heading-default-color {
  color: var(--color-headings);
}

.border-default-color {
  border-color: var(--border-color);
}

.border-default-color-2 {
  border-color: var(--border-color-2) !important;
}

/*Preloader css*/
div#loading {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

div#loading img {
  z-index: 9999;
}

.preloader {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-color: #ffffff !important;
}

.preloader img {
  width: 200px;
}

/*Header Css StaRT*/
.site-navbar {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0px;
}

@media (min-width: 576px) {
  .site-navbar {
    padding-top: 0px;
  }
}

@media (min-width: 992px) {
  .site-navbar {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
}

.site-navbar .menu-block-wrapper {
  flex-grow: 1;
  align-items: center;
}

@media (min-width: 992px) {
  .site-navbar .menu-block-wrapper {
    display: flex !important;
    flex-basis: auto;
  }
}

.site-header--absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.site-header--sticky:not(.mobile-sticky-enable) {
  position: absolute !important;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}

@media (min-width: 992px) {
  .site-header--sticky:not(.mobile-sticky-enable) {
    position: fixed !important;
    transition: 0.4s;
  }
  .site-header--sticky:not(.mobile-sticky-enable).scrolling {
    transform: translateY(-100%);
    transition: 0.4s;
  }
  .site-header--sticky:not(.mobile-sticky-enable).reveal-header {
    transform: translateY(0%);
    box-shadow: 0 12px 34px -11px rgba(65, 62, 101, 0.1);
    z-index: 1000;
  }
}

.site-header--sticky.mobile-sticky-enable {
  top: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  position: fixed !important;
  transition: 0.4s;
}

.site-header--sticky.mobile-sticky-enable.scrolling {
  transform: translateY(-100%);
  transition: 0.4s;
}

.site-header--sticky.mobile-sticky-enable.reveal-header {
  transform: translateY(0%);
  box-shadow: 0 12px 34px -11px rgba(65, 62, 101, 0.1);
  z-index: 9999;
}

.site-header--menu-center .container {
  position: relative;
}

.site-header--menu-center .menu-block-wrapper {
  position: static;
}

@media (min-width: 992px) {
  .site-header--menu-center .menu-block {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 992px) {
  .site-header--menu-left .container-fluid .sub-menu.megamenu {
    left: 0%;
    transform: translateX(0%) translateY(10px);
  }
}

@media (min-width: 992px) {
  .site-header--menu-left .container-fluid .nav-item.has-megamenu:hover > .sub-menu {
    transform: translateX(0%) translateY(-10px);
    left: 0%;
    margin-left: 20px;
  }
}

.site-header--menu-left .menu-block .site-menu-main {
  justify-content: flex-start;
  padding-left: 15px;
}

@media (min-width: 1200px) {
  .site-header--menu-left .menu-block {
    width: 100%;
  }
}

.site-header--menu-right .menu-block-wrapper {
  position: static;
}

.site-header--menu-right .menu-block {
  margin-left: auto;
}

@media (min-width: 992px) {
  .site-header--menu-right > .container-fluid .sub-menu.megamenu {
    left: 100%;
    transform: translateX(-100%) translateY(10px);
  }
}

@media (min-width: 992px) {
  .site-header--menu-right
    > .container-fluid
    .nav-item.has-megamenu:hover
    > .sub-menu {
    transform: translateX(-100%) translateY(-10px);
    left: 100%;
    margin-left: -20px;
  }
}

@media (min-width: 768px) {
  .container-fluid .site-navbar {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 992px) {
  .container-fluid .site-navbar {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 480px) {
  .header-btns {
    margin-right: 15px;
  }
}

@media (min-width: 992px) {
  .header-btns {
    margin-right: 0;
  }
}

.top-contact-menu-wraper .header-btn {
  order: 3;
}

.top-contact-menu-wraper .mobile-menu-trigger {
  order: 4;
}

@media (min-width: 992px) {
  .top-contact-menu-wraper .nav-link-item {
    color: #fff !important;
  }
  .top-contact-menu-wraper .site-menu-main .nav-link-item {
    padding-top: 19px !important;
    padding-bottom: 19px !important;
  }
  .top-contact-menu-wraper .navbar {
    flex-wrap: wrap;
    padding: 30px 0px 0px 0px;
  }
  .top-contact-menu-wraper .brand-logo {
    min-width: 50%;
    order: 1;
    padding-bottom: 30px;
  }
  .top-contact-menu-wraper .header-btn {
    order: 4;
  }
  .top-contact-menu-wraper .menu-block-wrapper {
    min-width: calc(100% - 256px);
    order: 3;
    background: #1d263a;
    border-radius: 0px 0px 0px 5px;
  }
  .top-contact-menu-wraper .top-contact-block {
    order: 2;
    min-width: 50%;
    display: flex !important;
    justify-content: flex-end;
    padding-bottom: 8px;
  }
  .top-contact-menu-wraper .menu-block {
    margin-left: initial;
  }
}

.top-contact-block ul {
  display: flex;
  align-items: center;
}

.top-contact-block ul li {
  display: inline-flex;
  align-items: center;
}

.top-contact-block span {
  height: 30px;
  width: 1px;
  background: rgba(29, 36, 58, 0.12);
  margin: 0px 35px;
}

.top-contact-block img {
  margin-right: 12px;
}

.top-contact-block a {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 17px;
  color: #1d263a;
}

@media (min-width: 992px) {
  .row-lg {
    display: flex;
  }
}

@-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

@-webkit-keyframes slideRight {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}

@keyframes slideRight {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}

.site-menu-main {
  margin-bottom: 0;
  padding-left: 0;
}

@media (min-width: 992px) {
  .site-menu-main {
    display: flex;
    margin-bottom: 0;
    padding-left: 0;
  }
}

.site-menu-main li {
  list-style: none;
}

.site-menu-main ul {
  list-style: none;
  margin-left: 0;
}

.site-menu-main a {
  text-decoration: none;
}

.navbar {
  padding-top: 20px;
  padding-bottom: 20px;
}

.brand-logo {
  max-width: 200px;
}

.brand-logo img {
  width: 100%;
}

@media (min-width: 992px) {
  .navbar {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.site-menu-main .nav-item {
  display: inherit;
}

.site-menu-main .nav-link-item {
  color: #213053;
  font-size: 15px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: normal;
  position: relative;
}

@media (min-width: 992px) {
  .site-menu-main .nav-link-item {
    padding-top: 35px !important;
    padding-bottom: 33px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

.dark-mode-texts .nav-link-item {
  color: #fff;
}

.site-menu-main .sub-menu {
  position: absolute;
  z-index: 500;
  background-color: #fff;
  box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
  padding: 20px 0px;
  transition: opacity 0.5s ease, top 0.5s ease, margin-top 0.5s ease,
    background-color 0.5s ease;
  margin-top: 25px;
  opacity: 0;
  visibility: hidden;
}

@media (min-width: 992px) {
  .site-menu-main .sub-menu {
    top: 100%;
    min-width: 227px;
    max-width: 227px;
  }
}

@media (min-width: 992px) {
  .site-menu-main .sub-menu .sub-menu {
    top: 0 !important;
    left: 100%;
  }
}

.site-menu-main .sub-menu--item {
  color: var(--color-headings);
  font-size: 15px;
  font-weight: 600;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media (max-width: 992px) {
  .site-menu-main .sub-menu--item {
    padding-top: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}

@media (min-width: 992px) {
  .site-menu-main .sub-menu--item {
    color: #000;
  }
}

.site-menu-main .sub-menu--item > a {
  color: inherit;
}

@media (min-width: 992px) {
  .site-menu-main .sub-menu--item > a {
    transition: 0.4s;
  }
}

.site-menu-main .sub-menu--item:hover > a {
  color: #1787fc;
}

@media (min-width: 992px) {
  .site-menu-main .sub-menu.megamenu {
    background-color: #fff;
  }
}

.site-menu-main .sub-menu.megamenu .dropdown-image-block {
  max-height: 336px;
}

@media (min-width: 320px) and (max-width: 992px) {
  .site-menu-main .sub-menu.megamenu {
    border: 0;
  }
}

@media (min-width: 992px) {
  .site-menu-main .sub-menu.megamenu {
    padding: 30px;
    min-width: 925px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    will-change: transform;
    top: 100%;
    box-shadow: 0 42px 54px rgba(0, 0, 0, 0.09);
    border: 1px solid #e7e9ed;
    border-radius: 8px;
    visibility: hidden;
    z-index: -99;
    opacity: 0;
    pointer-events: none;
  }
  .site-menu-main .sub-menu.megamenu.megadropdown-center {
    transform: translateX(-50%) translateY(1px);
  }
  .site-menu-main .sub-menu.megamenu.megadropdown-right {
    right: 0%;
    transform: translateX(0%) translateY(10px);
  }
  .site-menu-main .sub-menu.megamenu.megadropdown-left {
    left: 0%;
    transform: translateX(0%) translateY(10px);
  }
}

@media (min-width: 1200px) {
  .site-menu-main .sub-menu.megamenu {
    min-width: 1100px;
  }
}

@media (min-width: 1600px) {
  .site-menu-main .sub-menu.megamenu {
    min-width: 1300px;
  }
}

.site-menu-main .sub-menu.megamenu .single-dropdown-block .mega-drop-menu-item {
  padding-top: 14px;
  padding-bottom: 14px;
  display: block;
}

.site-menu-main .sub-menu.megamenu .mega-drop-menu-item {
  padding-top: 2.5px;
  padding-bottom: 2.5px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.4s;
  color: #000;
}

@media (min-width: 320px) and (max-width: 992px) {
  .site-menu-main .sub-menu.megamenu .mega-drop-menu-item {
    color: var(--color-headings);
    border-top: 1px solid var(--border-color-3);
    padding-left: 20px;
    padding-bottom: 13px;
    padding-top: 13px;
  }
}

@media (min-width: 992px) {
  .site-menu-main .sub-menu.megamenu .mega-drop-menu-item {
    padding-left: 0px;
    padding-right: 10px;
  }
  .site-menu-main .sub-menu.megamenu .mega-drop-menu-item:hover {
    color: #1787fc !important;
  }
}

@media (min-width: 320px) and (max-width: 992px) {
  .site-menu-main .sub-menu.megamenu [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
  }
  .site-menu-main .sub-menu.megamenu [class*="row-"] {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 992px) {
  li.nav-item-has-children:not(.has-megamenu) {
    position: relative;
  }
}

@media (min-width: 992px) {
  li.nav-item-has-children:hover > .sub-menu {
    top: 100%;
    margin-top: 0px;
    visibility: visible;
    opacity: 1;
    z-index: 99;
    pointer-events: visible;
    border-radius: 0px 0px 15px 15px;
    border-top: 3px solid #1787fc;
  }
}

.site-menu-main > li .sub-menu > ul > li > a {
  display: inline-block;
  padding: 10px 0;
  font-size: 15px;
  color: #555;
  transition: color 0.3s ease;
  text-decoration: none;
  text-transform: capitalize;
}

.site-menu-main > li .sub-menu.mega-menu {
  left: 50%;
  transform: translateX(-50%);
}

.mobile-menu-head,
.mobile-menu-trigger {
  display: none;
}

/*responsive*/
@media (max-width: 991px) {
  .site-header .mobile-menu-trigger {
    display: flex;
    height: 30px;
    width: 30px;
    margin-left: 15px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }
  .site-header .mobile-menu-trigger span {
    display: block;
    height: 2px;
    background-color: #000;
    width: 24px;
    position: relative;
  }
  .reveal-header .mobile-menu-trigger span {
    background-color: #fff !important;
  }
  .site-header .mobile-menu-trigger span:before,
  .site-header .mobile-menu-trigger span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
  }
  .reveal-header .mobile-menu-trigger span:before,
  .reveal-header .mobile-menu-trigger span:after {
    background-color: #fff !important;
  }
  .dark-mode-texts .mobile-menu-trigger span {
    background-color: #fff;
  }
  .dark-mode-texts .mobile-menu-trigger span:before,
  .dark-mode-texts .mobile-menu-trigger span:after {
    background-color: #fff;
  }
  .site-header .mobile-menu-trigger span:before {
    top: -6px;
  }
  .site-header .mobile-menu-trigger span:after {
    top: 6px;
  }
  .site-header .item-right {
    align-items: center;
  }
  .site-header .menu-block {
    position: fixed;
    width: 320px;
    background-color: #ffffff;
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    transform: translate(-100%);
    transition: all 0.5s ease;
    z-index: 1099;
  }
  .site-header .menu-block.active {
    transform: translate(0%);
  }
  .site-menu-main > li {
    line-height: 1;
    margin: 0;
    display: block;
  }
  .site-menu-main > li > a {
    line-height: 50px;
    height: 50px;
    padding: 0 50px 0 15px;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .site-menu-main > li > a i {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 0;
    right: 0;
    text-align: center;
    line-height: 50px;
    transform: rotate(-90deg);
  }
  .site-header .menu-block .mobile-menu-head {
    display: flex;
    height: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 501;
    position: -webkit-sticky;
    position: sticky;
    background-color: #ffffff;
    top: 0;
  }
  .site-header .menu-block .mobile-menu-head .go-back {
    height: 50px;
    width: 50px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 16px;
    display: none;
  }
  .site-header .menu-block .mobile-menu-head.active .go-back {
    display: block;
  }
  .site-header .menu-block .mobile-menu-head .current-menu-title {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    visibility: hidden;
  }
  .site-header .menu-block .mobile-menu-head.active .current-menu-title {
    visibility: visible;
  }
  .site-header .menu-block .mobile-menu-head .mobile-menu-close {
    height: 50px;
    width: 50px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 25px;
  }
  .site-header .menu-block .site-menu-main {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .site-menu-main > li .sub-menu.mega-menu,
  .site-menu-main > li .sub-menu {
    visibility: visible;
    opacity: 1;
    position: absolute;
    box-shadow: none;
    margin: 0;
    padding: 15px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 50px;
    max-width: none;
    min-width: auto;
    display: none;
    transform: translateX(0%);
    overflow-y: auto;
    overflow-x: hidden;
  }
  .site-menu-main > li .sub-menu.active {
    display: block;
  }
  .site-menu-main > li .sub-menu > ul > li > a,
  .site-menu-main > li .sub-menu.mega-menu > .list-item > ul > li > a {
    display: block;
  }
  .site-menu-main > li .sub-menu.mega-menu > .list-item > ul {
    margin-bottom: 15px;
  }
  .menu-overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
  }
  .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
}

/*Custom Css for menu*/
@media (min-width: 992px) {
  .has-megamenu ul {
    margin-left: auto;
  }
  .site-menu-main a {
    display: flex;
    align-items: center;
  }
  .site-menu-main i {
    margin-left: 15px;
    font-size: 15px;
  }
}

@media (min-width: 1200px) {
  .site-header--menu-center .navbar {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .site-header--menu-center .menu-block-wrapper {
    position: absolute !important;
    left: 50%;
    transform: translateX(-50%);
  }
}

.nav-item-has-children a {
  display: flex;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .reveal-header li.nav-item-has-children:hover > .sub-menu {
    top: 100%;
  }
  .reveal-header li.nav-item-has-children:hover > .megamenu {
    top: 112%;
  }
}

.menu-block.active .nav-link-item {
  color: #000 !important;
}

@media (min-width: 480px) {
  .d-xs-inline-flex {
    display: inline-flex !important;
  }
}

ul.site-menu-main .nav-item i {
  transition: all 0.4s ease-in-out;
}

ul.site-menu-main .nav-item:hover i {
  transform: rotate(-180deg);
}

li.sub-menu--item.nav-item-has-children:hover i {
  transform: rotate(-180deg) !important;
}

li.sub-menu--item.nav-item-has-children i {
  transform: rotate(-90deg) !important;
  transition: all 0.4s ease-in-out;
}

.single-dropdown-block h3 {
  opacity: 0.5;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 1.1px;
  line-height: normal;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 25px;
  display: none;
}

@media (min-width: 992px) {
  .single-dropdown-block h3 {
    display: block;
  }
}

.reveal-header {
  background: #8d0709 !important;
}

.reveal-header .nav-link-item {
  color: #fff !important;
}

.reveal-header .btn {
  color: #fff !important;
}

.reveal-header .btn:hover {
  color: #fff !important;
}

.sticky-menu-bg.reveal-header {
  background: #1d263a !important;
}

.sticky-menu-bg.reveal-header .nav-link-item {
  color: #fff !important;
}

.landing-2-menu .navbar {
  border-bottom: 1px solid rgba(29, 36, 58, 0.12);
}

.landing-2-menu.reveal-header .sign-in-btn {
  color: #1d263a !important;
}

.landing-5-menu.reveal-header .l5-header-btn .btn {
  color: #1d263a !important;
}

.landing-6-menu.reveal-header .l6-header-btn .btn {
  color: #1d263a !important;
}

.landing-6-menu.reveal-header .l6-header-btn .btn:hover {
  color: #fff !important;
}

.mega-menu-image {
  padding-right: 30px;
}

.mega-menu-image img {
  border-radius: 5px;
}

.btn {
  position: relative;
  z-index: 5;
  border-radius: 6px;
  border: 0;
  font-size: 16px;
  font-weight: 700;
  height: 40px;
  min-width: 130px;
  line-height: 28px;
  letter-spacing: -0.53px;
  padding: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.btn:hover {
  color: #fff !important;
}

.btn:focus {
  box-shadow: 0;
}

.btn.focus {
  box-shadow: 0;
}

.btn.btn-medium {
  min-width: 160px;
  height: 48px;
  line-height: 36px;
}

.btn.btn--lg {
  min-width: 181px;
  height: 61px;
}

.btn.btn-xl {
  min-width: 180px;
  height: 60px;
  border-radius: 5px;
}

.btn.btn--xxl {
  min-width: 194px;
  height: 60px;
  border-radius: 5px;
}

.btn.with-icon i {
  margin-left: -5px;
  margin-right: 3px;
  font-size: 16px;
  margin-top: 2px;
}

.btn--reset {
  background: transparent;
  border: 0;
}

.btn--link {
  color: #1787fc;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  min-width: 88px;
  letter-spacing: 1.63px;
  line-height: normal;
  height: 22px;
  padding: 0;
  border-radius: 0;
  border-bottom: 2px solid #1787fc;
  padding: 0px 0px 15px 0px !important;
  margin-top: 40px;
}

.btn--link:hover {
  color: #1787fc !important;
}

.landing-1-menu .header-btn-l1 .btn {
  min-width: 129px;
  height: 45px;
  box-shadow: 0 16px 36px rgba(241, 139, 98, 0.3);
  border-radius: 15px;
  background-color: #ff7139;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: 26px;
  margin-left: 15px;
  margin-right: 5px;
}

@media (min-width: 992px) {
  .landing-1-menu .header-btn-l1 .btn {
    margin-right: 0px;
  }
}

.l4-header-btn .btn {
  text-transform: uppercase;
  background: #ffcd28;
  min-width: 165px;
  height: 60px;
  border-radius: 0;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 4px;
  color: #1d263a;
}

.l5-header-btn .btn {
  border-radius: 0;
  font-weight: 600;
  font-size: 15px;
  color: #1d263a;
}

.l6-header-btn .btn {
  min-width: 131px;
  height: 40px;
  border: 1px solid rgba(29, 36, 58, 0.4);
  border-radius: 15px;
  font-weight: 600;
  font-size: 15px;
  line-height: 26px;
  color: #1d263a;
}

.l7-header-btn .btn {
  background: #1787fc;
  min-width: 131px;
  height: 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  line-height: 26px;
  color: #fff;
  margin-left: 15px;
  margin-right: 5px;
}

@media (min-width: 992px) {
  .l7-header-btn .btn {
    margin-right: 0px;
  }
}

.l8-header-btn .btn {
  background: #20bfa9;
  min-width: 210px;
  height: 50px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 17px;
  line-height: 30px;
  color: #fff;
  margin-left: 15px;
  margin-right: 5px;
}

@media (min-width: 992px) {
  .l8-header-btn .btn {
    margin-right: 0px;
  }
}

.l9-header-btn .btn {
  background: #2d947a;
  min-width: 256px;
  height: 60px;
  border-radius: 0px;
  font-weight: 600;
  font-size: 17px;
  line-height: 30px;
  color: #fff;
}

@media (min-width: 992px) {
  .l9-header-btn .btn {
    border-radius: 0px 0px 5px 0px;
  }
}

.check-input-control {
  margin-bottom: 20px;
}

.check-input-control input:checked ~ .checkbox {
  background: #1787fc !important;
  border-color: #1787fc;
}

.check-input-control input:checked ~ .checkbox::after {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  color: #fff;
  font-size: 11px;
  text-align: center;
  line-height: 20px;
  font-weight: 700;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translate(-50%);
}

.check-input-control .checkbox {
  position: relative;
  line-height: 1;
  min-width: 20px;
  max-width: 20px;
  min-height: 20px;
  max-height: 20px;
  border-radius: 50%;
  background: #9ea1ab;
  display: inline-block;
  cursor: pointer;
}

.check-input-control .checkbox-2 {
  border-radius: 5px;
  border: 1px solid #b5b5b5;
  background: #fff;
}

/*Checkout page radio button*/
.gr-radio-input input:checked ~ label .round-indicator {
  border: 1px solid #473bf0;
  background: #fff;
}

.gr-radio-input input:checked ~ label .round-indicator:after {
  opacity: 1;
}

.gr-radio-input input:checked ~ label .round-indicator {
  border: 1px solid #1787fc;
  background: #fff;
}

.gr-radio-input input:checked ~ label .round-indicator:after {
  opacity: 1;
}

.round-indicator {
  position: relative;
  display: inline-block;
  border: 1px solid #e5e5e5;
  background-color: #e5e5e5;
  min-width: 20px;
  max-width: 20px;
  min-height: 20px;
  max-height: 20px;
  border-radius: 500px;
}

.round-indicator:after {
  content: "";
  background-color: #473bf0;
  min-width: 12px;
  max-width: 12px;
  min-height: 12px;
  max-height: 12px;
  border-radius: 500px;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
}

/*Checkout page radio button*/
.form-control::-moz-placeholder {
  color: #000;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #000;
  opacity: 1;
}
.form-control::placeholder {
  color: #000;
  opacity: 1;
}

.form-control:focus {
  box-shadow: none !important;
}

/*Section heading style-1*/
.section__heading h2 {
  color: #213053;
  font-size: 34px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: -1px;
  line-height: 44px;
  margin-bottom: 25px;
}

@media (min-width: 480px) {
  .section__heading h2 {
    font-size: 38px;
    line-height: 48px;
  }
}

@media (min-width: 768px) {
  .section__heading h2 {
    font-size: 48px;
    line-height: 58px;
  }
}

.section__heading p {
  opacity: 0.7;
  color: #213053;
  font-size: 17px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  line-height: 30px;
  margin-bottom: 0;
}

/*Section heading style-2*/
.section__heading-2 h2 {
  color: #1d263a;
  font-size: 34px !important;
  font-weight: 600;
  font-style: normal;
  letter-spacing: -1px;
  line-height: 42px;
  margin-bottom: 30px;
}

@media (min-width: 480px) {
  .section__heading-2 h2 {
    font-size: 38px !important;
    line-height: 45px;
  }
}

@media (min-width: 768px) {
  .section__heading-2 h2 {
    font-size: 48px;
    line-height: 55px;
  }
}

@media (min-width: 992px) {
  .section__heading-2 h2 {
    font-size: 60px !important;
    line-height: 66px;
  }
}

.section__heading-2 p {
  opacity: 0.8;
  color: #1d263a;
  font-size: 17px;
  font-weight: 400;
  font-style: normal;
  line-height: 30px;
  margin-bottom: 0;
}

/*Section heading style-3*/
.section__heading-3 h2 {
  color: #1d263a;
  font-size: 34px !important;
  font-weight: 600;
  font-style: normal;
  letter-spacing: -1px;
  line-height: 42px;
  margin-bottom: 30px;
}

@media (min-width: 480px) {
  .section__heading-3 h2 {
    font-size: 38px !important;
    line-height: 45px;
  }
}

@media (min-width: 768px) {
  .section__heading-3 h2 {
    font-size: 42px;
    line-height: 50px;
  }
}

.section__heading-3 p {
  opacity: 0.7;
  color: #1d263a;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  line-height: 28px;
  margin-bottom: 0;
}

/*Section heading style-4*/
.section-heading-4 h2 {
  font-family: Karla;
  color: #1f1f1f;
  font-size: 34px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -3px;
  line-height: 44px;
  margin-bottom: 35px;
}

@media (min-width: 480px) {
  .section-heading-4 h2 {
    font-size: 38px;
    line-height: 48px;
  }
}

@media (min-width: 768px) {
  .section-heading-4 h2 {
    font-size: 48px;
    line-height: 60px;
  }
}

.section-heading-4 p {
  font-family: Karla;
  color: #333333;
  font-size: 21px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.4px;
  line-height: 36px;
  margin-bottom: 0;
}

/*Section heading style-5*/
.section-heading-5 h2 {
  font-family: Gothic A1;
  color: #1f1f1f;
  font-size: 34px;
  font-weight: 800;
  font-style: normal;
  letter-spacing: -2.52632px;
  line-height: 44px;
  margin-bottom: 35px;
}

@media (min-width: 480px) {
  .section-heading-5 h2 {
    font-size: 38px;
    line-height: 48px;
  }
}

@media (min-width: 768px) {
  .section-heading-5 h2 {
    font-size: 48px;
    line-height: 64px;
  }
}

.section-heading-5 p {
  font-family: Karla;
  color: #333333;
  font-size: 21px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.4px;
  line-height: 36px;
  margin-bottom: 0;
}

/*Section heading style-6*/
.section-heading-6 h2 {
  font-family: Work Sans;
  color: #1f1f1f;
  font-size: 34px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -2.53px;
  line-height: 44px;
  margin-bottom: 20px;
}

@media (min-width: 480px) {
  .section-heading-6 h2 {
    font-size: 38px;
    line-height: 48px;
  }
}

@media (min-width: 768px) {
  .section-heading-6 h2 {
    font-size: 48px;
    line-height: 56px;
  }
}

.section-heading-6 p {
  font-family: Karla;
  color: #333333;
  font-size: 21px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.4px;
  line-height: 36px;
  margin-bottom: 0;
}

/*Section heading style-7*/
.section-heading-7 h2 {
  font-family: Karla;
  color: #1f1f1f;
  font-size: 34px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -5px;
  line-height: 38px;
  margin-bottom: 35px;
}

@media (min-width: 480px) {
  .section-heading-7 h2 {
    font-size: 38px;
    line-height: 42px;
  }
}

@media (min-width: 768px) {
  .section-heading-7 h2 {
    font-size: 48px;
    line-height: 52px;
  }
}

@media (min-width: 992px) {
  .section-heading-7 h2 {
    font-size: 60px;
    line-height: 64px;
  }
}

.section-heading-7 p {
  font-family: Rubik;
  font-style: normal;
  font-weight: normal;
  font-size: 21px;
  line-height: 36px;
  letter-spacing: -0.3px;
  color: #666666;
  margin-bottom: 0;
}

/*Section heading style-8*/
.section-heading-8 h2 {
  font-family: Rubik;
  color: #1f1f1f;
  font-size: 34px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -1px;
  line-height: 46px;
  margin-bottom: 35px;
}

@media (min-width: 480px) {
  .section-heading-8 h2 {
    font-size: 38px;
    line-height: 52px;
  }
}

@media (min-width: 768px) {
  .section-heading-8 h2 {
    letter-spacing: -3px;
    font-size: 48px;
    line-height: 62px;
  }
}

@media (min-width: 992px) {
  .section-heading-8 h2 {
    letter-spacing: -5px;
    font-size: 60px;
    line-height: 74px;
  }
}

.section-heading-8 p {
  font-family: Karla;
  font-style: normal;
  font-weight: normal;
  font-size: 21px;
  line-height: 36px;
  letter-spacing: -0.3px;
  color: #666666;
  margin-bottom: 0;
}

/*Section heading style-9*/
.section-heading-9 h2 {
  font-family: Karla;
  color: #1f1f1f;
  font-size: 34px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -2.52632px;
  line-height: 40px;
  margin-bottom: 15px;
}

@media (min-width: 480px) {
  .section-heading-9 h2 {
    font-size: 38px;
    line-height: 46px;
  }
}

@media (min-width: 768px) {
  .section-heading-9 h2 {
    font-size: 48px;
    line-height: 56px;
  }
}

.section-heading-9 p {
  font-family: Karla;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 32px;
  color: #e4e4e4;
  margin-bottom: 0;
}

/*Section heading style-10*/
.section-heading-10 h2 {
  font-family: Inter;
  color: #000;
  font-size: 34px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.345px;
  line-height: 44px;
  margin-bottom: 25px;
}

@media (min-width: 480px) {
  .section-heading-10 h2 {
    font-size: 38px;
    line-height: 48px;
  }
}

@media (min-width: 768px) {
  .section-heading-10 h2 {
    font-size: 46px;
    line-height: 56px;
  }
}

.section-heading-10 p {
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 32px;
  color: #323232;
  margin-bottom: 0;
}

/*Section heading style-11*/
.section-heading-11 h2 {
  font-family: Inter;
  color: #000;
  font-size: 34px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.3px;
  line-height: 46px;
  margin-bottom: 25px;
}

@media (min-width: 480px) {
  .section-heading-11 h2 {
    font-size: 38px;
    line-height: 50px;
  }
}

.section-heading-11 p {
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 32px;
  color: #323232;
  margin-bottom: 0;
}

/*Section heading style-12*/
.section-heading-12 h6 {
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 32px;
  color: #5029de;
  margin-bottom: 15px;
}

.section-heading-12 h2 {
  font-family: Inter;
  color: #000;
  font-size: 34px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.3px;
  line-height: 46px;
  margin-bottom: 25px;
}

@media (min-width: 480px) {
  .section-heading-12 h2 {
    font-size: 38px;
    line-height: 50px;
  }
}

.section-heading-12 p {
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 34px;
  color: #535659;
  margin-bottom: 0;
}

/*Section heading style-13*/
.section-heading-13 h2 {
  font-family: Nunito;
  color: #2f4b6e;
  font-weight: 800;
  font-size: 38px;
  line-height: 48px;
  margin-bottom: 15px;
}

@media (min-width: 480px) {
  .section-heading-13 h2 {
    font-size: 42px;
    line-height: 52px;
  }
}

.section-heading-13 p {
  font-family: Nunito;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 36px;
  color: #2f4b6e;
  margin-bottom: 0;
}

/*Section heading style-14*/
.section-heading-14 h2 {
  color: #1d263a;
  font-weight: 600;
  font-size: 34px;
  line-height: 42px;
  letter-spacing: -1px;
  margin-bottom: 15px;
}

@media (min-width: 480px) {
  .section-heading-14 h2 {
    font-size: 38px;
    line-height: 44px;
  }
}

@media (min-width: 768px) {
  .section-heading-14 h2 {
    font-size: 48px;
    line-height: 54px;
  }
}

@media (min-width: 992px) {
  .section-heading-14 h2 {
    font-size: 60px;
    line-height: 66px;
  }
}

.section-heading-14 p {
  font-size: 21px;
  line-height: 32px;
  color: #1d263a;
  opacity: 0.7;
  margin-bottom: 0;
}

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>      
   Hero Area-L-14

        <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
.landing-14-menu .site-menu-main .nav-link-item {
  font-family: Karla;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.4px;
}

.landing-14-menu .site-menu-main .nav-link-item i {
  color: #fff;
}

.landing-14-menu .site-menu-main .sub-menu--item {
  font-family: Karla;
  color: #1f1f1f;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.4px;
}

.landing-14-menu.reveal-header .sign-in-btn {
  color: #666666 !important;
}

.hero-area-l-14 {
  padding-top: 105px;
  padding-bottom: 0px;
  min-height: 80vh;
  text-align: center;
}

.hero-area-l-14 .price {
  width: max-content;
  padding: 0.25em 0.35em;
  border-radius: 0.25rem;
  background: hsl(359, 91%, 49%);
}

.hero-area-l-14 .wrapper + .wrapper {
  margin-top: 1rem;
}

.hero-area-l-14 .selo {
  max-width: 60px;
}

.hero-area-l-14 .inpi {
  max-width: 104px;
}

.hero-area-l-14 span {
  font-size: 0.875rem;
  margin-left: 0.5rem;
  color: #fff;
}

.form-container .wrapper {
  position: relative;
  width: 90%;
  height: 100%;
  padding: 2.25rem;
  margin: 0 auto;
  overflow-y: auto;
  background-color: #fff;
  border-radius: 0.5em;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 0.3125em 0.9375em;
}

.form {
  display: flex;
  align-items: center;
  height: 90%;
  /* Style the input fields */
}
.form h6 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: 1.15;
  text-align: center;
}
.form p {
  text-align: center;
  line-height: 1.25;
  color: #000;
}
.form p:last-child(1) {
  margin-bottom: 1em;
}
.form input {
  width: 100%;
  padding: 0;
  font-size: 1.0625rem;
  color: #000;
  border: 0.0625rem solid #000;
  border-radius: 0.25rem;
  padding: 0.25em;
}
.form input:focus-visible {
  outline: 0;
}
.form select {
  width: 100%;
  padding: 0 1em 0 0;
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: inherit;
  cursor: inherit;
  /* Additional resets for further consistency */
  background-color: transparent;
  border: none;
  outline: none;
  /* A reset of styles, including removing the default dropdown arrow */
  appearance: none;
}

.btn--close {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  max-width: 1rem;
  padding: 0;
  font-size: var(--ff-xs);
  color: #fff;
  background-color: #761d1f;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0.25em 0.375em -0.0625em,
    rgba(0, 0, 0, 0.06) 0px 0.125rem 0.25em -0.0625em;
  animation: none;
}

.form__field-wrapper {
  margin-top: 1em;
}

.form__field-wrapper__input {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  width: 100%;
  padding: 0.3125rem;
  padding-left: 0.625rem;
  font-size: 1.0625rem;
  color: var(--clr-white);
  border: 0.0625rem solid var(--select-border);
  border-radius: 0.25rem;
}

.form__field-wrapper__input:focus-within {
  outline: 0.1125rem solid var(--select-focus);
}

.form__select-wrapper {
  display: grid;
  grid-template-areas: "select";
  align-items: center;
  width: 100%;
  padding: 0.625em;
  font-size: 1.25rem;
  line-height: 1.1;
  cursor: pointer;
  background-color: #fff;
  background-image: linear-gradient(to top, #f9f9f9, #fff 33%);
  border: 0.0625em solid var(--select-border);
  border-radius: 0.25em;
}

.form__select-wrapper:focus-within {
  border: 0.0625em solid var(--select-focus);
}

.form__select-wrapper::after {
  justify-self: end;
  width: 0.8em;
  height: 0.5em;
  clip-path: polygon(100% 0%, 0 0%, 50% 100%);
  content: "";
  background-color: var(--select-arrow);
}

select,
.form__select-wrapper::after {
  grid-area: select;
}

.btn-wrapper {
  display: flex;
  justify-content: center;
}

.form .btn--submit {
  max-width: 100%;
  margin: 0 auto;
  margin-top: 1em;
  font-size: var(--fs-sm);
  background-color: #761d1f;
  color: #fff;
  animation: pulse-main 1s infinite;
}

@media (min-width: 480px) {
  .hero-area-l-14 {
    padding-top: 110px;
  }
}

@media (min-width: 768px) {
  .hero-area-l-14 {
    padding-top: 110px;
    padding-bottom: 0px;
    text-align: left;
  }
}

@media (min-width: 992px) {
  .hero-area-l-14 {
    min-height: calc(100vh + 140px);
    padding-top: 140px;
    padding-bottom: 20px;
  }
}

@media screen and (min-width: 62rem) and (max-width: 75rem) {
  .hero-area-l-14 {
    padding-top: 20px;
  }
}

.hero-area-l-14 .content {
  position: relative;
  z-index: 5;
  padding-top: 25px;
}

@media (min-width: 992px) {
  .hero-area-l-14 .content {
    padding-top: 0;
  }
}

@media (min-width: 1200px) {
  .hero-area-l-14 .content {
    padding-right: 0;
  }
}

@media (min-width: 1600px) {
  .hero-area-l-14 .content {
    padding-right: 82px;
  }
}

.hero-area-l-14 .content h1 {
  font-family: Rubik;
  font-style: normal;
  font-weight: 400;
  font-size: 34px;
  line-height: 40px;
  letter-spacing: -3.11px;
  color: #fff;
  margin-bottom: 10px;
}

@media (min-width: 576px) {
  .hero-area-l-14 .content h1 {
    font-size: 40px;
    line-height: 46px;
  }
}

@media (min-width: 768px) {
  .hero-area-l-14 .content h1 {
    font-size: 60px;
    line-height: 66px;
  }
}

@media (min-width: 1200px) {
  .hero-area-l-14 .content h1 {
    font-size: 70px;
    line-height: 76px;
  }
}

.hero-area-l-14 .content p {
  font-family: Karla;
  font-style: normal;
  font-weight: normal;
  font-size: 21px;
  line-height: 36px;
  letter-spacing: -0.3px;
  color: #fff;
  margin: 18px auto 30px auto;
}

@media screen and (min-width: 768px) {
  .hero-area-l-14 .content p {
    margin: 18px 0 30px 0;
  }
}

.hero-area-l-14 .content .btn {
  min-width: 205px;
  height: 60px;
  background: #333333;
  border-radius: 3px;
  font-family: Karla;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  letter-spacing: -0.4px;
  color: #ffffff;
  margin-top: 10px;
}

.hero-area-l-14 .bg-shape-14 {
  background: url(../image/l4/hero-bg.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 0px;
  height: 100%;
  width: 100%;
  left: 0;
  transform: rotate(0deg);
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}

.hero-area-l-14 .bg-shape-14::after {
  content: "";
  position: absolute;
  top: -5%;
  left: 0%;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: url(../image/l4/hero-bg\ copy.svg);
  background-repeat: no-repeat;
}

@media (min-width: 992px) {
  .hero-area-l-14 .bg-shape-14 {
    top: -25px;
  }
}

@media (min-width: 1200px) {
  .hero-area-l-14 .bg-shape-14 {
    top: -15px;
  }
}

.header-btn-l-14 .trail-btn {
  font-family: Karla;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  letter-spacing: -0.4px;
  color: #ffffff;
  min-width: 152px;
  height: 40px;
  background: #333333;
  border-radius: 3px;
  margin-left: 15px;
}

.banner-image-l-14 {
  padding-top: 45px;
}

@media (min-width: 992px) {
  .banner-image-l-14 {
    padding-top: 0;
    margin-top: 100px;
  }
}

@media (min-width: 1200px) {
  .banner-image-l-14 {
    margin-top: -100px;
  }
}

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>      
  Brand Area-L-14

        <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
.brand-area-l-14 {
  padding-top: 3.75rem;
  padding-bottom: 3.125rem;
}

@media (min-width: 48rem) {
  .brand-area-l-14 {
    padding-top: 5rem;
  }
}

@media (min-width: 62rem) {
  .brand-area-l-14 {
    padding-top: 6.25rem;
  }
}

.brand-area-l-14 h4 {
  font-family: Rubik;
  font-style: normal;
  font-weight: normal;
  font-size: 2rem;
  line-height: 1.2;
  text-align: center;
  color: #333333;
  padding-bottom: 2.1875rem;
}

.brand-area-l-14-items {
  margin: 0px -1.25rem -2.8125rem -1.25rem;
}

.brand-area-l-14-items .single-brand {
  max-width: 12.5rem;
  margin: 0px 1.25rem 2.8125rem 1.25rem;
}

.brand-area-l-14-items .single-brand img {
  width: 100%;
}

.brand-aarea-border-l14 {
  border-top: 1px solid #e4e4e4;
  margin: 3.75rem 0px 0px 0px;
}

@media (min-width: 48rem) {
  .brand-aarea-border-l14 {
    margin: 5rem 0px 0px 0px;
  }
}

@media (min-width: 62rem) {
  .brand-aarea-border-l14 {
    margin: 6.25rem 0px 0px 0px;
  }
}

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>      
   Content-area-1-L-14

        <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
.content-area-l-14-1 .content {
  padding-top: 2.8125rem;
}

.content-area-l-14-1 {
  padding: 1rem;
  background-color: #8d0709;
}
@media screen and (min-width: 48rem) {
  .content-area-l-14-1 {
    padding: 4rem;
    background-color: #8d0709;
  }
}

.content-area-l-14-1 h2 {
  font-weight: 500;
  text-align: center;
  color: #fff;
}

.content-area-l-14-1 p {
  font-size: 1.5rem;
  text-align: left;
  color: #fff;
}

.content-area-l-14-1 b {
  font-weight: 900;
}

.content-area-l-14-1 p + p {
  margin-top: 1rem;
}

@media (min-width: 992px) {
  .content-area-l-14-1 .content {
    padding-top: 0;
  }
}

.content-area-l-14-1 .content .btn {
  border: 0;
  padding: 0;
  min-width: initial;
  font-family: Karla;
  font-style: normal;
  font-weight: bold;
  font-size: 17px;
  line-height: 28px;
  letter-spacing: -0.4px;
  color: #0c39f8;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .content-area-l-14-1 .content .btn {
    margin-top: 50px;
  }
}

.content-area-l-14-1 .content .btn i {
  margin-left: 22px;
}

.content-area-l-14-1 .content .btn:hover {
  color: #0c39f8 !important;
}

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>      
             Feature Area-L-17
          <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
.feature-area-l-17 {
  padding: 3.125rem 0 1.125rem 0;
}

@media (min-width: 768px) {
  .feature-area-l-17 {
    padding: 4.375rem 0 0 0;
  }
}

@media (min-width: 992px) {
  .feature-area-l-17 {
    padding: 6.5625rem 0 1.64rem 0;
  }
}

.feature-area-l-17 .feature-area-l-17-items {
  margin-bottom: -30px;
}

.feature-area-l-17 .feature-area-l-17-items .col-lg-4 {
  margin-bottom: 30px;
}

.feature-area-l-17 .feature-area-l-17-items .single-features {
  padding: 0px 30px;
}

@media (min-width: 992px) {
  .feature-area-l-17 .feature-area-l-17-items .single-features {
    padding: 0px 20px;
  }
}

@media (min-width: 1200px) {
  .feature-area-l-17 .feature-area-l-17-items .single-features {
    padding: 0px 35px;
  }
}

.feature-area-l-17 img {
  max-width: 104px;
  margin-bottom: 0.5rem;
}

.feature-area-l-17 .feature-area-l-17-items .single-features h4 {
  font-family: Inter;
  font-style: normal;
  font-weight: bold;
  font-size: 22px;
  line-height: 34px;
  color: #000000;
  margin-bottom: 25px;
}

.feature-area-l-17 .feature-area-l-17-items .single-features p {
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 34px;
  color: #323232;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .feature-area-l-17 .feature-area-l-17-items .single-features.single-border:after {
    position: absolute;
    content: "";
    right: -15px;
    top: 50%;
    height: 111px;
    transform: translateY(-50%);
    width: 1px;
    background: #e8e8ea;
  }
}

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>      
            Testimonial Area-L-17
          <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
.testimonial-area-l-17 {
  padding-block: 3.75rem;
  /* background: #e7e7e7; */
}

@media (min-width: 768px) {
  .testimonial-area-l-17 {
    padding-block: 5rem;
  }
}

.testimonial-area-l-17 .testimonial-card {
  padding: 20px 30px 37px 30px;
}

@media (min-width: 768px) {
  .testimonial-area-l-17 .testimonial-card {
    padding: 20px 45px 37px 45px;
  }
}

@media (min-width: 992px) {
  .testimonial-area-l-17 .testimonial-card {
    padding: 20px 30px 37px 30px;
  }
}

@media (min-width: 1200px) {
  .testimonial-area-l-17 .testimonial-card {
    padding: 20px 45px 37px 45px;
  }
}

.testimonial-area-l-17 .testimonial-card img {
  margin-right: 20px;
  max-width: 72px;
  border-radius: 50%;
}

.testimonial-area-l-17 .testimonial-card p {
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -0.1px;
  color: #000000;
  padding: 55px 30px 22px 0px;
  min-height: 240px;
}

.testimonial-area-l-17 .testimonial-card .user-identity h5 {
  font-family: Inter;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: -0.3px;
  color: #323232;
  margin-bottom: 0;
}

.testimonial-area-l-17 .testimonial-card .user-identity span {
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: -0.3px;
  color: #323232;
  display: inline-block;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

/* ACCORDIONS */
.ac {
  box-shadow: var(--shadow-xs);
}

.ac li + li {
  padding-top: 0.35rem;
}

.ac .ac-header.ac-header {
  font-size: var(--fs-xs);
}

.ac .ac-trigger.ac-trigger::after {
  color: var(--clr-main-dk);
}
.ac .ac-trigger.ac-trigger:focus {
  color: #000;
}

.ac .ac-panel .ac-text.ac-text,
.ac .ac-trigger.ac-trigger {
  font-family: Karla;
  font-style: normal;
  font-weight: normal;
  font-size: 21px;
  line-height: 36px;
  letter-spacing: -0.3px;
  margin-bottom: 0;
  padding: 1.5rem;
}

.ac-text.ac-text {
  font-family: Karla;
  font-style: normal;
  font-weight: normal;
  font-size: 21px;
  line-height: 36px;
  letter-spacing: -0.3px;
  color: #666666;
  margin-bottom: 0;
}

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>      
   Content-area-2-L-14

        <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
.content-area-l-14-2 {
  padding-block: 80px;
}

.content-area-l-14-2 img {
  border: 0.25rem solid #8d0709;
  border-radius: 0.25rem;
  filter: saturate(1.5);
}

@media (min-width: 768px) {
  .content-area-l-14-2 {
    padding-top: 80px;
    padding-bottom: 30px;
  }
}

@media (min-width: 992px) {
  .content-area-l-14-2 {
    padding-bottom: 100px;
  }
}

.content-area-l-14-2 .content {
  padding-top: 45px;
}

@media (min-width: 992px) {
  .content-area-l-14-2 .content {
    padding-top: 0;
  }
}

.content-area-l-14-2 .content .btn {
  border: 0;
  padding: 0;
  min-width: initial;
  font-family: Karla;
  font-style: normal;
  font-weight: bold;
  font-size: 17px;
  line-height: 28px;
  letter-spacing: -0.4px;
  color: #0c39f8;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .content-area-l-14-2 .content .btn {
    margin-top: 50px;
  }
}

.content-area-l-14-2 .content .btn i {
  margin-left: 22px;
}

.content-area-l-14-2 .content .btn:hover {
  color: #0c39f8 !important;
}

.content-area-l-14-3 {
  padding-block: 4rem;
  background-color: #e7e7e7;
}

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>      
   Feature Areea L-14

        <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
.features-area-l-14 .features-area-l-14 {
  margin-bottom: -45px;
}

.features-area-l-14 .features-area-l-14 .col-lg-6 {
  margin-bottom: 45px;
}

.features-area-l-14 .bg-shape-img-2 {
  background: #0c39f8;
  padding: 80px 0px;
}

@media (min-width: 992px) {
  .features-area-l-14 .bg-shape-img-2 {
    background: url(../image/l4/features-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0%;
    padding: 175px 30px 112px 30px;
  }
}

@media (min-width: 1200px) {
  .features-area-l-14 .bg-shape-img-2 {
    padding: 175px 87px 112px 87px;
  }
}

@media (min-width: 1600px) {
  .features-area-l-14 .bg-shape-img-2 {
    padding: 190px 175px 190px 175px;
  }
}

.features-area-l-14 .content-area img {
  margin-right: 25px;
}

@media (min-width: 576px) {
  .features-area-l-14 .content-area img {
    margin-right: 60px;
  }
}

.features-area-l-14 .content-area h5 {
  font-family: Rubik;
  font-style: normal;
  font-weight: normal;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: -1.33333px;
  color: #ffffff;
  margin-bottom: 20px;
}

.features-area-l-14 .content-area p {
  font-family: Karla;
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 28px;
  /* or 165% */
  letter-spacing: -0.4px;
  color: #e4e4e4;
}

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>      
   Pricing Area-L-14

        <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.pricing-area-l14 {
  padding-top: 50px;
  padding-bottom: 60px;
}

@media (min-width: 768px) {
  .pricing-area-l14 {
    padding-top: 70px;
    padding-bottom: 80px;
  }
}

@media (min-width: 992px) {
  .pricing-area-l14 {
    padding-top: 120px;
    padding-bottom: 130px;
  }
}

.pricing-area-l14 .section-heading-8 {
  margin-bottom: 70px;
}

.pricing-area-l14 .l-14-pricing-table {
  margin-top: 40px;
}

.pricing-area-l14 .l-14-pricing-table .single-price .btn {
  min-width: 200px;
  height: 50px;
  background: #333333;
  border-radius: 3px;
  font-family: Karla;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 21px;
  /* identical to box height */
  text-align: center;
  letter-spacing: -0.4px;
  color: #ffffff;
  margin-bottom: 40px;
}

.pricing-area-l14 .l-14-pricing-table .single-price .price-btn-bro .btn {
  background: #14ee80;
  color: #333333;
}

.pricing-area-l14 .l-14-pricing-table .single-price span {
  font-family: Karla;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 32px;
  /* identical to box height, or 267% */
  text-align: center;
  text-transform: uppercase;
  color: #666666;
}

.pricing-area-l14 .l-14-pricing-table .single-price .main-price .price span {
  font-family: Rubik;
  font-style: normal;
  font-weight: normal;
  font-size: 58px;
  line-height: 50px;
  /* identical to box height, or 86% */
  text-align: center;
  color: #000000;
}

.pricing-area-l14 .l-14-pricing-table .single-price .main-price .price h2 {
  font-family: Rubik;
  font-style: normal;
  font-weight: normal;
  font-size: 58px;
  line-height: 50px;
  /* identical to box height, or 86% */
  text-align: center;
  color: #000000;
}

.pricing-area-l14 .l-14-pricing-table .single-price .main-price span {
  font-family: Karla;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 28px;
  /* identical to box height, or 187% */
  text-align: center;
  letter-spacing: -0.428571px;
  color: #666666;
  display: inline-block;
  margin-bottom: 25px;
}

.pricing-area-l14 .l-14-pricing-table .single-price .price-body ul {
  padding: 15px 0px 15px 0px;
}

.pricing-area-l14 .l-14-pricing-table .single-price .price-body ul li {
  font-family: Rubik;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 53px;
  /* or 331% */
  text-align: center;
  letter-spacing: -0.761905px;
  color: #1f1f1f;
}

.pricing-area-l14
  [data-pricing-dynamic][data-value-active="yearly"]
  .dynamic-value:before {
  display: inline-block;
  content: attr(data-yearly);
}

.pricing-area-l14
  [data-pricing-dynamic][data-value-active="yearly"]
  [data-pricing-trigger] {
  background: #1290a4;
}

.pricing-area-l14
  [data-pricing-dynamic][data-value-active="yearly"]
  [data-pricing-trigger]
  span {
  left: calc(100% - 24px);
}

.pricing-area-l14
  [data-pricing-dynamic][data-value-active="yearly"]
  .btn-toggle-2[data-pricing-trigger] {
  background: #1290a4;
}

.pricing-area-l14
  [data-pricing-dynamic][data-value-active="yearly"]
  .btn-toggle-2[data-pricing-trigger]
  span {
  left: calc(100% - 52%);
}

.pricing-area-l14
  [data-pricing-dynamic][data-value-active="yearly"]
  .btn-toggle-2[data-pricing-trigger].active:before {
  color: #666666 !important;
}

.pricing-area-l14
  [data-pricing-dynamic][data-value-active="yearly"]
  .btn-toggle-2[data-pricing-trigger].active:after {
  color: #fff !important;
}

.pricing-area-l14
  [data-pricing-dynamic][data-value-active="monthly"]
  .dynamic-value:before {
  display: inline-block;
  content: attr(data-monthly);
}

.pricing-area-l14 .btn-toggle-2[data-pricing-trigger].active:before {
  color: #fff !important;
}

.pricing-area-l14 .btn-toggle-2[data-pricing-trigger].active:after {
  color: #666666 !important;
}

.pricing-area-l14 .dynamic-value:before {
  display: inline-block;
  content: attr(data-active);
}

.pricing-area-l14 .static-value:before {
  display: inline-block;
  content: attr(data-active);
}

.pricing-area-l14 .btn-toggle {
  width: 48px;
  height: 24px;
  border-radius: 17px;
  background-color: #f8f8f8 !important;
  position: relative;
  margin: 0 15px;
}

.pricing-area-l14 .btn-toggle span {
  width: 16px;
  height: 16px;
  background-color: #1290a4;
  position: absolute;
  left: 5px;
  top: 4px;
  transition: 0.4s;
  border-radius: 500px;
  pointer-events: none;
}

.pricing-area-l14 .btn-toggle-2 {
  width: 220px;
  height: 42px;
  border-radius: 30px;
  background-color: #fff !important;
  border: 1px solid #e5e5e5 !important;
  position: relative;
  margin: 0 15px;
  z-index: 1;
}

.pricing-area-l14 .btn-toggle-2:before {
  position: absolute;
  content: "Monthly";
  width: 46%;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  height: 34px;
  background: transparent;
  left: 9px;
  top: 4px;
  line-height: 34px;
}

.pricing-area-l14 .btn-toggle-2:after {
  position: absolute;
  content: "Yearly";
  width: 46%;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  height: 34px;
  background: transparent;
  right: 9px;
  top: 4px;
  line-height: 34px;
}

.pricing-area-l14 .btn-toggle-2 .round {
  width: 50%;
  /* left: 0 !important; */
  height: 34px;
  top: 3px;
  left: 4px;
  background: blue;
  display: block;
  z-index: -1;
}

.pricing-area-l14 .btn-toggle-2 span {
  display: none;
}

.pricing-area-l14 .btn-toggle[data-value-active="yearly"] {
  background-color: #1290a4 !important;
}

.pricing-area-l14 .btn-toggle[data-value-active="yearly"] span {
  left: calc(100% - 25px) !important;
}

.pricing-area-l14 .btn-toggle-square {
  height: 65px;
  display: inline-flex;
  position: relative;
  z-index: 1;
  padding: 5px;
  align-items: center;
}

.pricing-area-l14 .btn-toggle-square.bg-whisper-3:hover,
.pricing-area-l14 .btn-toggle-square.bg-whisper-3:focus {
  background: #8e8e8e !important;
}

.pricing-area-l14 .btn-toggle-square span {
  min-width: 160px;
  min-height: 50px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
}

.pricing-area-l14 .btn-toggle-square span:first-child {
  border-radius: 10px 0 0 10px;
}

.pricing-area-l14 .btn-toggle-square span:nth-child(2) {
  border-radius: 0px 10px 10px 0;
}

.pricing-area-l14 .btn-toggle-square span.active {
  color: #fff;
  background: #1290a4;
}

.pricing-area-l14 .popular-pricing:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 100%;
  height: 4px;
  background: #f46f7c;
  border-radius: 6px;
}

.pricing-area-l14 .popular-pricing.popular-pricing-2:before {
  height: 3px;
  top: -3px;
  background: #14ee80;
}

.pricing-area-l14 .popular-pricing.popular-pricing-3:before {
  height: 3px;
  top: -3px;
  background: #50e3c2;
}

.pricing-area-l14 .active-border {
  position: relative;
}

.pricing-area-l14 .active-border:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 100%;
  height: 5px;
  background: #5029de;
  border-radius: 5px;
}

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>      
   Cta Area-L-14

        <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
.cta-area-l-14 {
  padding-bottom: 50px;
}

@media (min-width: 768px) {
  .cta-area-l-14 {
    padding-bottom: 70px;
  }
}

@media (min-width: 992px) {
  .cta-area-l-14 {
    padding-bottom: 120px;
  }
}

.cta-area-l-14 .bg-shape-img-3 {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: left bottom !important;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  background: #0c39f8;
}

@media (min-width: 992px) {
  .cta-area-l-14 .bg-shape-img-3 {
    background: url(../image/l4/cta-bg.png);
  }
}

.cta-area-l-14 .cta-area-l-14-content {
  padding: 40px 0px 60px 0px;
}

@media (min-width: 768px) {
  .cta-area-l-14 .cta-area-l-14-content {
    padding: 60px 0px 80px 0px;
  }
}

@media (min-width: 992px) {
  .cta-area-l-14 .cta-area-l-14-content {
    padding: 100px 0px 72px 0px;
  }
}

.cta-area-l-14 .cta-area-l-14-content h2 {
  font-family: Rubik;
  font-style: normal;
  font-weight: normal;
  font-size: 40px;
  line-height: 50px;
  /* identical to box height, or 154% */
  letter-spacing: -2.52632px;
  color: #ffffff;
}

@media (min-width: 768px) {
  .cta-area-l-14 .cta-area-l-14-content h2 {
    font-size: 48px;
    line-height: 60px;
  }
}

.cta-area-l-14 .cta-area-l-14-content .btn {
  background: #14ee80;
  border-radius: 3px;
  min-width: 195px;
  height: 60px;
  font-family: Karla;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  letter-spacing: -0.4px;
  color: #333333;
  margin-top: 20px;
}

.whatsapp-container {
  position: fixed;
  bottom: 2%;
  right: 2%;
  z-index: 10004;
  display: flex;
  gap: 0.25rem;
  align-items: center;
  /* width: 4rem; */
  width: clamp(10rem, 8.439rem + 7.8049vw, 14rem);
  max-width: 18.75rem;
  height: 3.5rem;
  background-color: #1a8d44;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 0.1875rem 0.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: transform 250ms ease-in-out;
}

.whatsapp-container:hover {
  cursor: pointer;
  transform: scale(1.05);
}

.whatsapp-container span {
  font-size: clamp(0.875rem, 0.8036rem + 0.3571vw, 1.125rem);
  font-weight: 500;
  color: #fff;
  line-height: 1;
}

.whatsapp-container .d-flex {
  margin-left: -0.25rem;
}

.whatsapp-container span + span {
  font-weight: 300;
}
.whatsapp-container .tooltip-text {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  right: -200%;
}

.whatsapp-container img {
  width: 30%;
}

.whatsapp-container:hover .tooltip-text {
  visibility: visible;
}
/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>      
     Footer Area L-14
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
.footer-area-l-12 {
  padding-block: 60px;
  background: #8d0709;
}

.footer-area-l-12 .textos {
  text-align: center;
}

.footer-area-l-12 span,
.footer-area-l-12 p {
  color: #fff;
}

.footer-area-l-12 img {
  max-width: 250px;
  align-self: center;
  margin-bottom: 0.25rem;
}

.footer-area-l-12 .copyright {
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .footer-area-l-12 {
    padding-block: 60px;
  }
}

@media (min-width: 992px) {
  .footer-area-l-12 {
    padding-block: 50px;
  }
}

.footer-area-l-12 .footer-l-12-top-border {
  border-top: 1px solid #e5e5e5;
  margin: 0px 0px 45px 0px;
}

@media (min-width: 768px) {
  .footer-area-l-12 .footer-l-12-top-border {
    margin: 0px 0px 65px 0px;
  }
}

@media (min-width: 992px) {
  .footer-area-l-12 .footer-l-12-top-border {
    margin: 0px 0px 70px 0px;
  }
}

.footer-area-l-12 .footer-area-l-12-shape {
  position: absolute;
  left: -30%;
  bottom: 0%;
}

@media (min-width: 992px) {
  .footer-area-l-12 .footer-area-l-12-shape {
    left: -8%;
    bottom: -85%;
  }
}

.footer-area-l-12 .footer-widget p {
  font-family: Karla;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 45px;
  letter-spacing: -0.321429px;
  color: #fff;
}

.footer-area-l-12 .footer-widget ul {
  margin-top: 25px;
}

.footer-area-l-12 .footer-widget ul li a {
  font-family: Karla;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 40px;
  letter-spacing: -0.4px;
  color: #fff;
}

@media (min-width: 576px) {
  .footer-area-l-12 .footer-widget.widget3 {
    margin-top: 70px;
  }
}

.footer-area-l-12 .telefones-texto {
  margin-bottom: 0.25em;
  text-align: center;
}

.footer-area-l-12 .telefones-wrapper {
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.telefones-wrapper p {
  margin-bottom: 0;
}

.address {
  margin-block: 2rem;
}

@media screen and (min-width: 48rem) {
  .footer-area-l-12 .telefones-wrapper {
    flex-direction: row;
    gap: 3rem;
  }
}

.footer-subs-form-l-12 {
  background: #ddf7ea;
  border-radius: 5px;
  padding: 20px 30px 30px 30px;
  margin-top: 20px;
}

@media (min-width: 992px) {
  .footer-subs-form-l-12 {
    margin-top: 0;
  }
}

.footer-subs-form-l-12 p {
  font-family: Karla;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 45px;
  letter-spacing: -0.321429px;
  color: #666666;
  margin-bottom: 5px;
}

.footer-subs-form-l-12 h6 {
  font-family: Karla;
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 28px;
  letter-spacing: -0.4px;
  color: #000000;
  margin-bottom: 20px;
}

.footer-subs-form-l-12 .input-group .form-control {
  background: #ffffff;
  border-radius: 5px;
  font-family: Karla;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 28px;
  color: #666666;
  width: 177px;
  height: 56px;
  border: 0;
  padding-left: 20px;
}

@media (min-width: 480px) {
  .footer-subs-form-l-12 .input-group .form-control {
    font-size: 15px;
    width: 320px;
  }
}

@media (min-width: 992px) {
  .footer-subs-form-l-12 .input-group .form-control {
    width: 250px;
  }
}

@media (min-width: 1200px) {
  .footer-subs-form-l-12 .input-group .form-control {
    width: 320px;
  }
}

.footer-subs-form-l-12 .input-group .form-control::-moz-placeholder {
  color: #666666;
}

.footer-subs-form-l-12 .input-group .form-control:-ms-input-placeholder {
  color: #666666;
}

.footer-subs-form-l-12 .input-group .form-control::placeholder {
  color: #666666;
}

.footer-subs-form-l-12 .input-group .btn {
  min-width: 60px;
  height: 56px;
  background: #4ebe86;
  border-radius: 0px 5px 5px 0px;
}

.footer-subs-form-l-12 .input-group .btn i {
  color: #fff;
}

/* ---------------------------------
-------> THEME CUSTOM STYLES 
---------------------------------
*/
.background-property {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.focus-reset:focus {
  box-shadow: none;
  outline: none;
}

.z-index-1 {
  z-index: 1;
}

@media (min-width: 1600px) {
  .off-right-xxl-1 {
    margin-right: 80px;
  }
}

@media (min-width: 480px) {
  .d-xs-flex {
    display: flex;
  }
}

@media (min-width: 480px) {
  .text-xs-start {
    text-align: start !important;
  }
}

@media (min-width: 480px) {
  .text-xs-center {
    text-align: center;
  }
}

.btn-style-01:before {
  width: 0%;
  height: 100%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0%;
  left: 0%;
  border-radius: 0px;
  background: #213053;
  transition: all 0.5s;
  z-index: -1;
  opacity: 0;
}

.btn-style-01:hover {
  background: none !important;
  box-shadow: none !important;
}

.btn-style-01:hover:before {
  box-shadow: 0px;
  color: #fff;
  opacity: 1;
  width: 100%;
}

/*Button Hover style 02*/
.btn-style-02:before {
  width: 0%;
  height: 100%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0%;
  left: 0%;
  border-radius: 20px;
  background: #213053;
  transition: all 0.5s;
  opacity: 0;
  z-index: -1;
}

.btn-style-02:hover {
  background: none !important;
  box-shadow: none !important;
}

.btn-style-02:hover:before {
  box-shadow: 0px;
  color: #fff;
  opacity: 1;
  width: 100%;
}

/*Button Hover style 03*/
.btn-style-03:before {
  width: 0%;
  height: 100%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0%;
  left: 0%;
  border-radius: 10px;
  background: #213053;
  transition: all 0.5s;
  z-index: -1;
  opacity: 0;
}

.btn-style-03:hover {
  background: none !important;
  box-shadow: none !important;
}

.btn-style-03:hover:before {
  box-shadow: 0px;
  color: #fff;
  opacity: 1;
  width: 100%;
}

/*Button Hover style 04*/
.btn-style-04:before {
  width: 0%;
  height: 100%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0%;
  left: 0%;
  border-radius: 0px;
  background: #213053;
  transition: all 0.5s;
  z-index: -1;
  opacity: 0;
}

.btn-style-04:hover {
  background: none !important;
  box-shadow: none !important;
}

.btn-style-04:hover:before {
  box-shadow: 0px;
  color: #fff;
  opacity: 1;
  width: 100%;
}

/*Button Hover style 05*/
.btn-style-05:before {
  width: 0%;
  height: 100%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0%;
  left: 0%;
  border-radius: 3px;
  background: #213053;
  transition: all 0.5s;
  z-index: -1;
  opacity: 0;
}

.btn-style-05:hover {
  background: none !important;
  box-shadow: none !important;
}

.btn-style-05:hover:before {
  box-shadow: 0px;
  color: #fff;
  opacity: 1;
  width: 100%;
}

/*Button Hover style 06*/
.btn-style-06 a span {
  transition: all 0.4s ease-in-out;
}

.btn-style-06 a:hover span {
  display: inline-block;
  margin-left: 5px;
}

/*Button Hover style 07*/
.btn-style-07:before {
  width: 0%;
  height: 100%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0%;
  left: 0%;
  border-radius: 3px;
  background: #2d947a;
  transition: all 0.5s;
  z-index: -1;
  opacity: 0;
}

.btn-style-07:hover {
  background: none !important;
  box-shadow: none !important;
}

.btn-style-07:hover:before {
  box-shadow: 0px;
  color: #fff;
  opacity: 1;
  width: 100%;
}

img.vertical-move {
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}

@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}

img.horizontal-move {
  -webkit-animation: route 2s infinite alternate;
  animation: route 2s infinite alternate;
}

@-webkit-keyframes route {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-20px);
  }
}

@keyframes route {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-20px);
  }
}

img.spin {
  animation: rotate 15s linear infinite;
  -webkit-animation: rotate 15s linear infinite;
}

@-webkit-keyframes rotate {
  100% {
    transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -ms-transform: rotate(359deg);
    -o-transform: rotate(359deg);
  }
}

@keyframes rotate {
  100% {
    transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -ms-transform: rotate(359deg);
    -o-transform: rotate(359deg);
  }
}

.swing {
  -webkit-animation-name: swing;
  animation-name: swing;
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  transform-origin: 100% 0%;
}

@-webkit-keyframes swing {
  0% {
    transform: rotate(30deg);
  }
  50% {
    transform: rotate(-60deg);
  }
  100% {
    transform: rotate(30deg);
  }
}

@keyframes swing {
  0% {
    transform: rotate(30deg);
  }
  50% {
    transform: rotate(-60deg);
  }
  100% {
    transform: rotate(30deg);
  }
}

.swing-2 {
  -webkit-animation-name: swing;
  animation-name: swing;
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  transform-origin: 100% 0%;
}

@keyframes swing {
  0% {
    transform: rotate(20deg);
  }
  50% {
    transform: rotate(-40deg);
  }
  100% {
    transform: rotate(20deg);
  }
}

/*Image Hover style 01*/
.image-hover-style-01 {
  border-radius: 10px;
}

.image-hover-style-01 img {
  transition: all 0.4s ease-in-out;
}

.image-hover-style-01 img:hover {
  transform: scale(1.2);
  transition: all 1s ease-out;
  filter: brightness(0.7);
}

/*# sourceMappingURL=maps/main.css.map */
