@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  /* max-width: 100%; */
  /* overflow-x: hidden; */
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 20px;
  color: #444;
  line-height: 35px;
  font-weight: 300;
  background: #f6f6f8;
  overflow-x: hidden;
}

/* body .cursor {
  pointer-events: none;
} */

/* body .cursor__ball {
  position: fixed;
  top: 0;
  left: 0;
  mix-blend-mode: difference;
  z-index: 1000;
} */

/* body .cursor__ball circle {
  fill: #f7f8fa;
} */


body::before {
  content: "";
  position: fixed;
  top: 0;
  left: -20%;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 100px;
  opacity: 0.3;
  background: var(--light-color-gradient, linear-gradient(270deg, #FCBE6B 17.03%, #97539F 100%));
  filter: blur(117px);
}

img {
  max-width: 100%;
}

figure {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

figure img {
  max-height: 100%;
}

.strong {
  font-weight: 800;
}

small {
  font-size: 12px;
}

.container {
  max-width: 1800px;
  padding: 0 30px;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

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

a:hover {
  text-decoration: none;
  color: inherit;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgb(231 15 20 / 5%);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #25356B;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  border-radius: 10px;
  background: #555;
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
}

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

.hidden {
  display: none;
}

.link {
  text-decoration: underline;
}

h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  color: #000;
}

h2 {
  text-transform: uppercase;
  font-weight: normal;
}

h3 {
  font-size: 130px;
  font-weight: 700;
  line-height: 145px;
  margin: 0 0 70px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px;
  text-transform: uppercase;
  position: relative;
}

h4 {
  font-size: 40px;
  font-weight: 600;
  margin: 0 0 30px;
}

h5 {
  font-size: 24px;
  line-height: 39px;
}

h6 {
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
}

.show_767 {
  display: none;
}

.primaryColor {
  color: #e70f14
}

.header {
  padding: 20px 0;
  position: absolute;
  top: 0;
  z-index: 2;
  width: 100%;
}

.header .btn-outline {
  height: 42px;
  line-height: 40px;
  padding: 0 20px;
}

.is-sticky {
  position: fixed;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-animation: slideDown 0.35s ease-out;
  animation: slideDown 0.35s ease-out;
  z-index: 12;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn {
  border-radius: 30px;
  font-size: 12px;
  height: 52px;
  text-transform: uppercase;
  padding: 0 30px;
  line-height: 50px;
  border: 0;
  position: relative;
  transition: all ease .2s !important;
  overflow: hidden;
  font-weight: 800;
}

.btn-primary {
  background: linear-gradient(left, #25356B, #97539F);
  background: -webkit-linear-gradient(left, #25356B, #97539F);
  color: #fff !important;
  position: relative;
}

.btn-primary:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  width: 100%;
  transition: all ease .9s;
  background: linear-gradient(left, transparent, #25356B, transparent);
  background: -webkit-linear-gradient(left, transparent, #25356B, transparent);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-orange {
  background: -webkit-linear-gradient(left, #FCBE6B, #F16A21) !important;
  background: linear-gradient(left, #FCBE6B, #F16A21);
  position: relative;
}

.btn-white {
  background: #fff;
  position: relative;
  color: #444;
}

.btn-orange:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  width: 100%;
  transition: all ease .9s;
  background: linear-gradient(left, transparent, #F16A21, transparent);
  background: -webkit-linear-gradient(left, transparent, #F16A21, transparent);
}

.btn-orange:hover::before {
  left: 100%;
}

.btn-outline {
  border: solid 1px #FCBE6B;
  color: #FCBE6B !important;
}

.btn-outline:hover {
  background: #161616;
  color: #fff !important;
}

.btn-trinary {
  background: #fcc508;
  color: #564300 !important;
}

.btn-trinary:hover {
  background: #fb9c08;
}

.logo {
  position: relative
}

.logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.logo img {
  height: 60px;
  z-index: 1;
  position: relative;
}

footer {
  background: #010222;
  padding: 60px 0 10px;
  color: #fff;
  margin: 100px 0 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: linear-gradient(left, #FCBE6B, #97539F);
  background: -webkit-linear-gradient(left, #FCBE6B, #97539F);
  height: 110%;
  width: 50%;
  border-radius: 50%;
  filter: blur(190px);
  transform: rotate(-45deg);
  opacity: 0.60;
}

footer a {
  color: #eee;
}

footer a:hover {
  color: #FCBE6B;
}

footer h4 {
  margin: 0 0 20px
}

footer ul {
  list-style: none;
}

footer li {}

footer h3 {
  color: #fff;
  margin: 0 0 20px;
}

footer .leftContent {
  width: min(100%, 60%);
  padding: 0 100px 0 0;
}

.footer-logo {
  width: min(80%, 300px);
  margin: 0 0 40px;
}

.call-info {
  position: relative;
  padding: 0 0 0 40px;
  margin: 0 0 20px;
}

.call-info .icon {
  position: absolute;
  top: 7px;
  left: 0;
}

footer h5 {
  margin: 0 0 20px;
}

.socialWrap {
  margin: 60px 0 0;
}

.social-icons {
  display: flex;
  margin: 0 0 0 -10px;
  gap: 20px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all ease 0.2s;
  font-size: 30px;
  color: #fff;
}

.footer-tab {
  display: flex;
  column-gap: 40px;
  flex-wrap: wrap;
  z-index: 1;
  margin: 30px 0 0;
  padding: 0 20px;
}

.footerFlex {
  display: flex;
}

.rightContent {
  width: min(100%, 60%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footerForm {
  background: #000;
  z-index: 1;
  padding: 40px;
  border-radius: 20px;
  position: relative;
}

.footerForm h4 {
  margin: 0 0 30px;
}

.footerForm p {
  margin: 0 0 30px;
}

.footerForm .form-group {}

.footerForm .form-control {
  background: rgb(13 13 13);
  border: solid 1px #272727 !important;
  min-height: 50px;
  border-radius: 10px !important;
}

.footerForm .btn-primary {}

.copyrightSec {
  color: #fff;
  padding: 20px 0 0;
  position: relative;
  margin: 60px 0 0;
}

.copyrightSec:after {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  background: linear-gradient(left, #FCBE6B, #F16A21);
  background: -webkit-linear-gradient(left, #FCBE6B, #F16A21);
  top: 0;
}

.copyrightSec .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.headingBlock {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
}

.headingBlock a {
  margin: 0 90px 0 0;
}

.owl-dots {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.owl-dot {
  height: 14px;
  width: 14px;
  border: solid 1px #e70f14 !important;
  border-radius: 50px;
}

.owl-dot.active {
  background: #e70f14 !important;
}

.form-group label {
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 0;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  height: 41px;
}

.form-group input[type="text"]::placeholder,
.form-group input[type="tel"]::placeholder,
.form-group input[type="number"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group textarea {
  height: inherit;
}

#goToTop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  font-size: 34px;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 4px;
  width: 50px;
  height: 50px;
  border: solid 1px #d90e13;
  background: #fdf0f1;
  color: #564300 !important;
  transition: all ease 0.2s;
}

#goToTop:hover {
  background: #d90e13;
}

.thumbWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.thumbWrap .owl-nav {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 5px;
  font-size: 30px;
}

.owl-nav button {
  width: 34px;
  height: 34px;
  border: solid 1px #C4C4C4 !important;
  transition: all ease 0.2s;
  border-radius: 5px !important;
}

.thumbWrap .owl-stage-outer {
  padding: 10px 18px;
  width: 105%;
}

.thumbWrap .owl-stage {
  display: flex;
  flex-wrap: wrap;
}

.thumbWrap .thumb {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 4px 10px 0px #EEE;
  padding: 14px 14px 0 14px;
  position: relative;
  transition: all ease .2s;
  margin: 0 0 20px;
  display: block;
  height: 100%;
}

.thumbWrap .thumb:hover {
  box-shadow: 0px 0px 30px 0px #efefef;
}

.thumbWrap .thumb figure img {
  width: auto
}

.thumbWrap .thumb .arrowWrap {
  position: relative;
}

.thumb:hover .arrow {
  background: #ddd;
  right: 5px;
}

.modal.fade.right .modal-dialog {
  position: absolute;
  /* right: 0; */
  margin: 0;
  width: 100%;
  transform: translate3d(0%, 0, 0);
}

.modal.fade.right.fade .modal-dialog {
  right: 0;
  transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.fade.right .modal-content {
  height: 100%;
}

.modal.fade.right .modal-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gradientText {
  background: linear-gradient(left, #97539F, #FCBE6B);
  background: -webkit-linear-gradient(left, #97539F, #FCBE6B);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bodyContent {
  padding-top: 120px !important;
}

@media screen and (max-width: 1200px) {
  .container {
    padding: 0 14px;
  }
}

@media only screen and (max-width: 980px) {
  .header .container {
    align-items: center;
  }

  .box-menu {
    /* margin: 0 20px 0 auto !important; */
    right: 20px !important;
    top: 20px !important;
  }
  
  .logo {
    margin: 5px auto;
  }

  .btn-outline {
    display: none
  }

  footer {
    padding: 40px 10px 20px;
    margin: 60px 0 0;
  }

  .footerFlex {
    flex-direction: column;
  }

  footer .leftContent,
  .footerForm {
    width: 100%;
    padding: 20px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {}

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

@media screen and (max-width: 980px) {
  header .btn-primary {
    display: none;
  }

  h1 {
    font-size: 20px;
    line-height: 24px;
    margin: 20px 0 10px;
  }

  h2 {
    font-size: 30px;
    line-height: 20px;
    margin: 10px 0 30px !important;
  }

  h3 {
    font-size: 40px !important;
    transform: translate(0) !important;
    margin: 0 0 30px;
    line-height: 70px;
    padding: 0 20px;
  }

  h4 {
    line-height: 50px;
    font-size: 30px;
  }
}

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

  html,
  body {
    font-size: 16px;
    line-height: 30px;
  }

  footer .container {
    padding: 0;
  }

  footer .container .row {
    flex-direction: column;
  }

  footer .container .row>div {
    max-width: 100%;
  }

  .footerLinks li {
    width: 48%;
  }

  .socialFooter {
    margin: 20px 0;
  }

  .hide_767 {
    display: none;
  }

  .show_767 {
    display: block;
  }

  .copyright {
    padding: 10px 0 0;
    margin: 20px 0 0;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
  }

  footer {
    padding: 0px 0 10px;
  }

  #goToTop {
    bottom: 70px;
  }

  footer h4 {
    margin: 20px 0 0;
  }

  .socialWrap {
    margin: 50px 0 40px;
  }

  .rightContent {
    width: 100%;
  }

  .copyrightSec .container {
    flex-direction: column
  }

  .copyrightSec {
    padding: 10px 10px 0;
    margin: 30px 0 0;
  }

  .copyrightSec .text {
    display: block;
  }

  .copyrightSec .right {
    text-align: center
  }

  .copyrightSec img {
    height: 40px;
    margin: 10px 0 10px;
  }
}