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

:root {
  --headerheight: 123px;
  --headerpadding: 15px;
  --headerfixed: 80px;
  --headerstripfixed: 0px;
  --footerstrip: 66px;
  --sectionpadding: 50px 0 60px;
  --primary: #fff;
  --secondary: #000;
  --prime: #040635;
  --elementhover: rgba(237, 34, 36, 1);
  --white: #fff;
  --black: #000;
  --yellow: #FBC740;
  --text: #666;
  --triangle: 10px;
  --triangle2: 20px;
  --gradient: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 54%);
  --gradient2: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 54%);
  --container: 1280px;
  --containerfluid: 2rem;
  --arrowsize: 20px;
  --space: 11px;
}
@media (max-width: 767px) {
  :root {
    --space: 5px;
  }
}

body.overflow-hidden {
  overflow: hidden;
  margin-right: 8px;
}
@media (max-width: 991px) {
  body.overflow-hidden {
    margin-right: 0;
  }
}
body.overflow-hidden header {
  width: calc(100% - 8px);
}
@media (max-width: 991px) {
  body.overflow-hidden header {
    width: 100%;
  }
}

body, html {
  font-size: 16px;
  line-height: 1.5;
  font-family: Circular;
  font-weight: 400;
}

body.hidden {
  overflow: hidden;
  margin-right: 8px;
}

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

.btn, .btn-dark, .btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
  font-size: 16px;
  background-color: transparent;
  color: var(--white);
  cursor: pointer;
}
@media (max-width: 540px) {
  .btn, .btn-dark, .btn-primary {
    padding: 10px 20px;
    font-size: 13px;
  }
}
.btn::before, .btn-dark::before, .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: transparent;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: inherit;
}
.btn:hover::before, .btn-dark:hover::before, .btn-primary:hover::before {
  transform: scaleX(1);
}
.btn svg, .btn-dark svg, .btn-primary svg {
  margin-right: 12px;
}
.btn svg path, .btn-dark svg path, .btn-primary svg path {
  transition: fill 0.4s ease;
}

.btn-primary {
  background-color: var(--elementhover);
  color: var(--white);
}
.btn-primary::before {
  background-color: rgb(204.6578947368, 30.3947368421, 26.3421052632);
}
.btn-primary:hover {
  color: var(--white);
}
.btn-primary:hover svg {
  transform: translateX(3px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-dark {
  border: 1px solid var(--secondary);
  color: var(--secondary);
}
.btn-dark::before {
  background-color: var(--secondary);
}
.btn-dark:hover {
  color: var(--white);
}
.btn-dark svg path {
  fill: var(--secondary);
}
.btn-dark:hover svg path {
  fill: var(--white);
}

.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1300px) {
  .container {
    padding: 0 25px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}

.container-fluid {
  padding: 0 2rem;
  display: block;
  margin: 0 auto;
}
@media (max-width: 1152px) {
  .container-fluid {
    padding: 0 1rem;
  }
}
@media (max-width: 991px) {
  .container-fluid {
    padding: 0 15px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: Baloo;
}

h4, h5 {
  font-weight: 600;
}

h6 {
  font-weight: 500;
}

h1 {
  font-size: 64px;
  line-height: 1;
}

h2 {
  font-size: 48px;
  line-height: 1.25;
}

h3 {
  font-size: 36px;
  line-height: 1.25;
}
@media (max-width: 1024px) {
  h3 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 28px;
  }
}
@media (max-width: 520px) {
  h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 365px) {
  h3 {
    font-size: 22px;
  }
}

.heading h3 {
  font-size: 36px;
  line-height: 1.25;
}
@media (max-width: 1024px) {
  .heading h3 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .heading h3 {
    font-size: 28px;
  }
}
@media (max-width: 520px) {
  .heading h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 365px) {
  .heading h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 24px;
  line-height: 1.1;
}
@media (max-width: 767px) {
  h4 {
    font-size: 18px;
  }
}

h5 {
  font-size: 20px;
  line-height: 1;
}
@media (max-width: 1300px) {
  h5 {
    font-size: 18px;
  }
}

h6 {
  font-size: 18px;
  line-height: 24px;
}
@media (max-width: 1024px) {
  h6 {
    font-size: 16px;
    line-height: 22px;
  }
}

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

.grid {
  display: grid;
}

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

img {
  max-width: 100%;
}

.invert-img {
  transform: scaleX(-1);
}

input, button, select {
  font-family: inherit;
  font-size: inherit;
}

input {
  border-radius: 0;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

video {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.owl-prev img {
  transform: scaleX(-1);
}

button {
  border: none;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.item-md {
  position: relative;
}
.item-md figure {
  overflow: hidden;
  line-height: 0;
}
.item-md figure img {
  transition: 0.5s ease;
}
.item-md::before, .item-md::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 1;
}
.item-md::after {
  content: none;
}
.item-md figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.item-md .link-md {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.model {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 7;
  width: 100%;
  max-width: 435px;
}
.model .close {
  position: absolute;
  top: 0;
  right: 0;
}

.overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 6;
  opacity: 0;
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(100%);
  transition: opacity 1s ease;
  cursor: pointer;
}
@media (max-width: 991px) {
  .overlay {
    z-index: 2;
  }
}
@media (max-width: 675px) {
  .overlay {
    display: none;
  }
}
.overlay.is-open {
  opacity: 1;
  transform: translateY(0%);
}

.pr-4 {
  padding-right: 4rem;
}

.custom-select {
  max-width: 100%;
  margin: 0 auto;
  border: none;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  font-family: inherit;
  height: var(--selectheight);
  outline: none;
  position: relative;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
}
.custom-select::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient);
}
.custom-select .current {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
}
.custom-select .current img.arrow {
  width: 18px;
}
.custom-select .list {
  text-align: left;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  box-sizing: border-box;
  margin-top: 4px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  transform-origin: 50% 0;
  z-index: 7;
  max-height: 180px;
  overflow-y: auto;
}
.custom-select .list::-webkit-scrollbar {
  width: 4px;
  background: none;
}
.custom-select .list::-webkit-scrollbar-track {
  box-shadow: none;
}
.custom-select .list::-webkit-scrollbar-thumb {
  background-color: var(--text);
  border-radius: 5px;
}
.custom-select .list li {
  display: block;
  padding: 0 20px;
  line-height: 35px;
}
.custom-select .list li.selected {
  background: #e2e2e2;
}
.custom-select .list li:hover {
  background: var(--secondary);
}
.custom-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

.form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 35px 0;
  --theme: #000;
  --label: rgb(256 256 256 / .6);
  --color: #000;
  --font: 300;
  --borderbefore: rgb(256 256 256 / .6);
  --borderafter: #fff;
  --sectionbackground: #fff;
}
@media (max-width: 675px) {
  .form {
    gap: 25px 0;
  }
}
.form .form-group {
  --inputsize: 42px;
  --lrgap: 15px;
  --tbgap: 20px;
  position: relative;
  flex: 0 1 100%;
  --selectheight: var(--inputsize);
}
.form .form-group.flex50 {
  flex: 0 1 48%;
}
@media (max-width: 675px) {
  .form .form-group.flex50 {
    flex: 0 1 100%;
  }
}
.form .form-group label {
  font-weight: var(--font);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--theme);
  line-height: calc(var(--inputsize) - 1px);
  transition: 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.form .form-group input, .form .form-group textarea {
  height: var(--inputsize);
  border: none;
  border-bottom: 1px solid var(--theme);
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--color);
  font-size: inherit;
  font-family: inherit;
}
.form .form-group input.valid, .form .form-group textarea.valid {
  border-color: var(--border);
}
.form .form-group input:focus, .form .form-group input.valid, .form .form-group textarea:focus, .form .form-group textarea.valid {
  outline: none;
}
.form .form-group input:focus ~ label, .form .form-group input.valid ~ label, .form .form-group textarea:focus ~ label, .form .form-group textarea.valid ~ label {
  line-height: 0px;
  font-size: 14px;
  color: var(--black);
}
.form .form-group textarea {
  min-height: var(--inputsize);
  padding-top: 10px;
  line-height: 1.2;
}
.form .form-group textarea ~ label {
  background: var(--sectionbackground);
}
.form .form-group.message-bx textarea {
  min-height: 86px;
  height: 100%;
  padding-top: 15px;
}
.form .form-group.message-bx label {
  top: 12px;
  translate: 0 0;
}
.form .form-group.message-bx textarea {
  padding-right: 15px;
}
.form .form-group.message-bx textarea::-webkit-scrollbar {
  width: 2px;
  background: none;
}
.form .form-group.message-bx textarea::-webkit-scrollbar-track {
  box-shadow: none;
}
.form .form-group.message-bx textarea::-webkit-scrollbar-thumb {
  background-color: var(--white);
  border-radius: 15px;
}
.form .form-group.message-bx textarea:focus ~ label, .form .form-group.message-bx textarea.valid ~ label {
  top: 0;
  font-size: 14px;
  translate: 0 -50%;
}
.form .form-group.captcha-box {
  --size: 120px;
}
.form .form-group.captcha-box input {
  width: calc(100% - var(--size));
}
.form .form-group.captcha-box input:focus ~ .captcha-question, .form .form-group.captcha-box input.valid ~ .captcha-question {
  border-color: var(--border);
}
.form .form-group.captcha-box .captcha-question {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: var(--inputsize);
  width: var(--size);
  font-weight: 600;
  border-bottom: 1px solid var(--theme);
  text-align: center;
  color: var(--theme);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.form .sbmt-btn {
  display: inline-flex;
  align-items: center;
  gap: 0 6px;
  color: var(--black);
  height: 44px;
  line-height: 44px;
  border-radius: 25px;
  overflow: hidden;
  background: var(--gradient);
  padding: 0 50px;
  position: relative;
  z-index: 0;
  text-transform: uppercase;
  transition: 0.7s;
  font-weight: 500;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
}
.form .sbmt-btn svg, .form .sbmt-btn path {
  transition: 0.7s;
}
.form .sbmt-btn::before, .form .sbmt-btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.7s;
  z-index: -1;
}
.form .sbmt-btn::before {
  background: var(--gradient);
}
.form .sbmt-btn::after {
  background: var(--gradient2);
  opacity: 0;
}
.form .sbmt-btn:hover::before {
  opacity: 0;
}
.form .sbmt-btn:hover::after {
  opacity: 1;
}

.banner {
  position: relative;
  position: relative;
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
}
.banner::before {
  background: linear-gradient(454deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.49) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 24.5%, rgba(0, 0, 0, 0.48) 100%);
  z-index: 1;
}
@media (max-width: 991px) {
  .banner::before {
    background: linear-gradient(515deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.67) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.38) 24.5%, rgba(0, 0, 0, 0.04) 100%);
  }
}
.banner .bg {
  line-height: 0;
}
.banner .bg video, .banner .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .banner-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.play-btn {
  --btnsize: 51px;
  --border: 1px;
  --bordercolor: var(--white);
  --playbtncolor: var(--white);
  height: var(--btnsize);
  width: var(--btnsize);
  border-radius: 50%;
  border: var(--border) solid var(--bordercolor);
  position: relative;
  background: none;
}
.play-btn::before {
  width: 100%;
  height: 100%;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  position: absolute;
  content: "";
  transform: translateX(-50%) translateY(-50%);
  background: var(--bordercolor);
  border-radius: 50%;
  display: block;
  animation: pulse-border 1500ms ease-out infinite;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0;
  height: 0;
  border-top: calc(var(--btnsize) / 8) solid transparent;
  border-bottom: calc(var(--btnsize) / 8) solid transparent;
  border-left: calc(var(--btnsize) / 5.6) solid var(--playbtncolor);
}

.blue {
  background: #1BB6F0;
}

.yellow {
  background: #FBC740;
}

.btn, .btn-primary, .btn-dark {
  padding: 10px 16px;
  border-radius: 50px;
  text-transform: capitalize;
  font-size: 16px;
}
@media (max-width: 540px) {
  .btn, .btn-primary, .btn-dark {
    padding: 6px 12px;
    font-size: 14px;
  }
}

.whiteBtn {
  background: var(--white);
  color: var(--black);
  transition: 0.5s ease;
}
.whiteBtn:hover {
  background-color: #FBC740;
}

.yellowBtn {
  background: #FBC740;
  color: #000;
  transition: 0.5s ease;
}
.yellowBtn:hover {
  background-color: #fff;
}

.tab-nav {
  cursor: default;
}
.tab-nav [data-tab] {
  cursor: pointer;
  caret-color: transparent;
}

.tab-nav-content {
  position: relative;
}
.tab-nav-content .tabs:not(.active) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.svg path[fill] {
  fill: currentColor;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body {
  position: relative;
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  transition: 0.5s ease;
  height: var(--headerheight);
}
header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: var(--prime);
}
header::after {
  bottom: auto;
  height: 0;
  z-index: -1;
  transition: 0.5s ease;
}
@media (max-width: 991px) {
  header {
    height: 90px;
    background: #fff;
  }
}
@media (max-width: 675px) {
  header {
    height: 80px;
  }
}
@media (max-width: 540px) {
  header {
    height: 68px;
  }
}
header .header-container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px var(--containerfluid);
  transition: 0.5s ease;
  gap: 2rem;
}
@media (max-width: 520px) {
  header .header-container {
    padding: 6px 10px;
  }
}
header .header-container .colA, header .header-container .colB {
  height: auto;
}
header .header-container .colA a.logo {
  padding: var(--headerpadding) 0;
  height: 100%;
}
@media (max-width: 767px) {
  header .header-container .colA a.logo img {
    width: 130px;
  }
}
@media (max-width: 520px) {
  header .header-container .colA a.logo img {
    width: 90px;
  }
}
header .header-container .colA a.logo .prettify-white {
  display: block;
}
@media (max-width: 991px) {
  header .header-container .colA a.logo .prettify-white {
    display: none;
  }
}
header .header-container .colA a.logo .prettify-black {
  display: none;
}
@media (max-width: 991px) {
  header .header-container .colA a.logo .prettify-black {
    display: block;
  }
}
header .header-container .colB {
  display: flex;
  align-items: center;
}
header .header-container .colB ul.nav-a li {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  font-family: "Poppins", serif;
  color: var(--white);
  font-weight: 600;
}
header .header-container .colB ul.nav-a li:not(:last-child) {
  margin-right: 30px;
  display: inline-block;
}
@media (max-width: 540px) {
  header .header-container .colB ul.nav-a li:not(:last-child) {
    display: none;
  }
}
header .header-container .colB ul.nav-a li a:not(.btn):not(.btn-primary):not(.btn-dark) {
  color: var(--white);
  font-weight: 500;
  transition: 0.5s ease;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  header .header-container .colB ul.nav-a li a:not(.btn):not(.btn-primary):not(.btn-dark) {
    color: var(--black);
  }
}
header .header-container .colB ul.nav-a li a:not(.btn):not(.btn-primary):not(.btn-dark):hover {
  opacity: 0.7;
}
header .header-container .colB ul.nav-a li a svg {
  fill: currentColor;
}

header.header-fixed, header.header-fit {
  transition: 0.5s ease;
  --headerpadding: 14px;
  height: var(--headerfixed);
}
@media (max-width: 520px) {
  header.header-fixed, header.header-fit {
    height: 60px;
  }
}
header.header-fixed::after, header.header-fit::after {
  height: 100%;
}
header.header-fit {
  transition: 0s;
}
header.header-fit::after {
  transition: none;
}
header.header-fit .header-container .colA .logo {
  transition: none !important;
}
header.header-shadow {
  box-shadow: 0px 2px 8px 0px rgba(99, 99, 99, 0.2);
}

.model.ham-pop {
  right: 0;
  max-width: 480px;
  background: #fff;
  transform: translateX(100%);
  transition: 0.5s ease;
  z-index: 10;
}
.model.ham-pop.is-open {
  transform: translateX(0%);
}
.model.ham-pop .close {
  top: 30px;
  right: 25px;
}
.model.ham-pop .close path {
  stroke: var(--text) !important;
  stroke-width: 2 !important;
}
.model.ham-pop .model-body {
  padding: 75px 40px 30px;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.model.ham-pop .model-body::-webkit-scrollbar {
  width: 6px;
  background: var(--white);
}
.model.ham-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.model.ham-pop .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}
.model.ham-pop .model-body .ico {
  max-width: 70px;
  margin-bottom: 55px;
  line-height: 0;
}
.model.ham-pop .model-body .ico img, .model.ham-pop .model-body .ico svg {
  width: 100%;
  height: auto;
}
.model.ham-pop .model-body .nav-list {
  flex: 1;
}
.model.ham-pop .model-body .nav-list > li:not(:last-child) {
  margin-bottom: 22px;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown {
  position: relative;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .plu-ico {
  position: absolute;
  right: 0;
  top: 4px;
  --sizeplu: 22px;
  height: var(--sizeplu);
  width: var(--sizeplu);
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .plu-ico::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  right: 0;
  height: 2px;
  width: 100%;
  background: var(--prime);
  transition: 0.5s ease;
  transform: rotate(90deg);
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .plu-ico::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  right: 0;
  height: 2px;
  width: 100%;
  background: var(--prime);
  transition: 0.5s ease;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .plu-ico.active::before {
  transform: rotate(0deg);
  opacity: 0;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham {
  display: none;
  padding-top: 15px;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham ul {
  padding: 15px 0;
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham ul li {
  padding: 9px 0;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham ul li a {
  font-size: 20px;
  color: #000;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham ul li a:hover {
  color: var(--prime);
}
.model.ham-pop .model-body .nav-list > li > a {
  font-size: 28px;
  line-height: 1.06;
  color: #000;
  display: inline-block;
  font-weight: 500;
}
.model.ham-pop .model-body .nav-list > li > a:hover {
  color: var(--prime);
}
.model.ham-pop .model-body .bottom-list {
  border-top: 1px solid #ccc;
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.model.ham-pop .model-body .bottom-list .social-icons a {
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  line-height: 0;
  overflow: hidden;
  position: relative;
  color: var(--text);
}
.model.ham-pop .model-body .bottom-list .social-icons a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: var(--prime);
}
.model.ham-pop .model-body .bottom-list .social-icons a::before {
  border-radius: 50%;
  transform: scale(1.5);
  z-index: -1;
  opacity: 0;
  transition: 0.2s ease;
}
.model.ham-pop .model-body .bottom-list .social-icons a:not(:last-child) {
  margin-right: 4px;
}
.model.ham-pop .model-body .bottom-list .social-icons a svg {
  width: 24px;
  height: 24px;
}
.model.ham-pop .model-body .bottom-list .social-icons a svg path {
  transition: none;
}
.model.ham-pop .model-body .bottom-list .social-icons a svg path[stroke], .model.ham-pop .model-body .bottom-list .social-icons a svg path[fill=none] {
  stroke: currentColor;
}
.model.ham-pop .model-body .bottom-list .social-icons a svg path[fill] {
  fill: currentColor;
}
.model.ham-pop .model-body .bottom-list .social-icons a:hover {
  color: #dadada;
}
.model.ham-pop .model-body .bottom-list .social-icons a:hover::before {
  transition: 0.5s ease;
  opacity: 1;
  transform: scale(1);
}

.model.enquire-pop {
  right: 0;
  transform: translateX(100%);
  transition: 0.5s ease;
  background: var(--white);
  z-index: 10;
}
.model.enquire-pop.is-open {
  transform: translateX(0%);
}
.model.enquire-pop button.close {
  top: 25px;
  right: 25px;
}
.model.enquire-pop .model-body {
  padding: 60px 35px 30px;
  height: 100%;
  overflow-y: auto;
}
.model.enquire-pop .model-body::-webkit-scrollbar {
  width: 3px;
  background: var(--white);
}
.model.enquire-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.model.enquire-pop .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}
.model.enquire-pop .model-body .title {
  text-align: center;
  margin-bottom: 2rem;
}
.model.enquire-pop .model-body .title h4 {
  font-size: 32px;
  color: var(--black);
  font-family: Queens;
  font-weight: 500;
  text-transform: capitalize;
}
.model.enquire-pop .model-body .title p {
  color: var(--black);
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
  max-width: 317px;
  margin-left: auto;
  margin-right: auto;
}
.model.enquire-pop .model-body .form {
  --gaptb: 15px;
}
.model.enquire-pop .model-body .form .sbmt-grp {
  width: 100%;
}
.model.enquire-pop .model-body .form .sbmt-grp a {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #fff !important;
}
@media (max-width: 991px) {
  .model.enquire-pop .model-body .form .sbmt-grp a {
    color: #000;
  }
}
.model.enquire-pop .model-body .form .sbmt-grp a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--elementhover);
  border-radius: 25px;
  z-index: -2;
}
@media (max-width: 991px) {
  .model.enquire-pop .model-body .form .sbmt-grp a::after {
    background-color: var(--white);
  }
}
.model.enquire-pop .model-body .form .sbmt-grp a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgb(204.6578947368, 30.3947368421, 26.3421052632);
  transition: all 0.3s;
  border-radius: 25px;
  z-index: -1;
}
.model.enquire-pop .model-body .form .sbmt-grp a:hover {
  color: #fff;
}
.model.enquire-pop .model-body .form .sbmt-grp a:hover::before {
  width: 100%;
}
.model.enquire-pop .model-body .form .sbmt-grp a::after {
  background: var(--elementhover);
}
.model.enquire-pop .model-body .form .sbmt-grp a::before {
  background: #cc0003;
}

.model.video-pop {
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4784313725);
  z-index: 9;
  max-width: 100%;
  transform: translateY(100%);
  transition: 0.5s ease;
}
.model.video-pop.is-open {
  transform: translateY(0%);
}
.model.video-pop .close-video {
  position: absolute;
  bottom: calc(100% + 20px);
  top: auto;
  right: -40px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease;
}
.model.video-pop .close-video:hover {
  background: var(--primary);
}
.model.video-pop .close-video svg {
  height: 35%;
  width: 35%;
}
.model.video-pop .close-video path {
  stroke-width: 2;
  stroke: var(--white);
}
.model.video-pop .model-body {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  max-width: 50%;
}
.model.video-pop .model-body iframe {
  width: 100%;
  aspect-ratio: 1.9;
  border: 2px solid var(--white);
  background: var(--white);
}/*# sourceMappingURL=header.css.map */