@charset "UTF-8";

/*--------------------------------------------------------------
  >>> TABLE OF CONTENTS:
  ----------------------------------------------------------------
  # Global
      ## Global
      ## Mixins
      ## Theme
      ## Variables
      ## Common

  # Sections
      ## Nav Bar
      ## Banner
      ## Brand Area
      ## Footer
      ## Widgets

  # Elements
      ## accordion
      ## filter
      ## apartment
      ## blog
      ## city
      ## feature
      ## gallery
      ## intro
      ## main-search
      ## pricing
      ## service
      ## team
      ## user-list

  --------------------------------------------------------------*/
/*-----------------
      # Typography
  -----------------*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");

:root {
  --main-color: #2b6ff2;
  --main-color-2: #ffffff1f;
  --heading-color: #1b1b1b;
  --paragraph-color: #808080;
  --body-font: "Roboto", sans-serif;
  --heading-font: "Roboto", sans-serif;
  --body-font-size: 16px;
  --line-height30: 1.7;
  --theme-background: #2b6ff2;
  --theme-text-color: #ffffff;
  --theme-border-color: #e6eaef;
  --theme-background-image: #ffffff;
  --theme-checkbox-color: #2b6ff2;
  --text-video-color: #4285f4;
  --theme-txn-color: #657488;
  --text-loader-color: #20c2ae;
  --theme-checkbox-border-color: #2b6ff2;
  --theme-subtitle-text-color: #657488;
  --theme-text-bold: rgba(9, 29, 61, 1);
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
  font-family: var(--body-font);
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */
}

body {
  margin: 0;
  color: var(--paragraph-color);
  overflow-x: hidden;
  font-family: var(--body-font);
  line-height: var(--line-height30);
  font-size: var(--body-font-size);
  background: #fff;
}

h1 {
  font-size: 70px;
  line-height: 1.2333333333;
}

h2 {
  font-size: 50px;
  line-height: 1.3380952381;
}

h3 {
  font-size: 32px;
  line-height: 1.3833333333;
}

h4 {
  font-size: 24px;
  line-height: 1.3380952381;
}

h5 {
  font-size: 18px;
  line-height: 1.3380952381;
}

h6 {
  font-size: 16px;
  line-height: 1.2380952381;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-weight: 700;
}

p {
  color: var(--paragraph-color);
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  margin-bottom: 10px;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: inherit;
}

a:hover {
  color: var(--main-color);
}

pre {
  word-break: break-word;
}

a i {
  padding: 0 2px;
}

img {
  max-width: 100%;
}

/*---------------------------------------
      ## Button
  ---------------------------------------*/
.btn {
  height: 60px;
  line-height: 60px;
  background: var(--theme-background) !important;
  border-radius: 8px;
  border: 0 !important;
  padding: 0 35px;
  overflow: hidden;
  position: relative;
  border: 0;
  font-size: 16px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: 700;
  z-index: 0;
}

.btn:focus,
.btn:active {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn:after {
  content: "";
  background: var(--main-color-2);
  position: absolute;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  z-index: -1;
  height: 100%;
  left: -35%;
  top: 0;
  -webkit-transform: skew(30deg);
  transform: skew(30deg);
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  width: 0;
}

.btn:hover {
  color: #fff;
  background-color: var(--theme-color) !important;
}

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

.btn-base:active,
.btn-base:focus,
.btn-base:hover {
  color: #000;
  background-position: 0;
}

.btn-base::after {
  display: none;
}

.btn-black {
  color: #fff !important;
  height: 32px !important;
  font-size: 13px !important;
  border: none !important;
  padding: 0 20px !important;
  border-radius: 30px !important;
  background: #3a4560 !important;
  background-position: 50% 0 !important;
  background-size: 200% !important;
}

.btn-black:active,
.btn-black:focus,
.btn-black:hover {
  color: #fff;
}

/*-----------------------------------------
      ## Preloader Css
  -------------------------------------------*/
.pre-wrap {
  position: fixed;
  content: "";
  -webkit-transform: translate(-100%, -240%);
  transform: translate(-100%, -240%);
  font-size: 62px;
}

.preloader-inner {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999999999999;
  background-color: #030724;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.preloader-inner .cancel-preloader {
  position: absolute;
  bottom: 30px;
  right: 30px;
}

.preloader-inner .cancel-preloader a {
  background-color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--main-color);
  width: 200px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 30px;
  display: block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.preloader-inner .cancel-preloader a:hover {
  background-color: var(--heading-color);
  color: #fff;
}

.spinner {
  margin: 120px auto;
  width: 60px;
  height: 60px;
  position: relative;
  text-align: center;
  -webkit-animation: sk-rotate 2s infinite linear;
  animation: sk-rotate 2s infinite linear;
}

.login-bg.intro-area1 {
  background-image: var(--theme-background-image);
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 0px;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.theme-background-gradient {
  position: relative;
}

.theme-background-gradient::before {
  content: "";
  position: absolute;
  background: linear-gradient(
    90deg,
    #44ff9a -0.55%,
    #44b0ff 22.86%,
    #8b44ff 48.36%,
    #ff6644 73.33%,
    #ebff70 99.34%
  ) !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: opacity(0.1);
  border-radius: 10px;
  background-clip: content-box;
  background-origin: content-box;
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: -1;
  pointer-events: none;
}

.login-bg.intro-area {
  background-image: var(--theme-background-image);
  background-size: cover;
  background-repeat: no-repeat;
}

.page-title {
  font-size: 2rem;
}

@media only screen and (min-width: 360px) and (max-width: 768px) {
  .padx-5 {
    padding-right: 1.3rem !important;
    padding-left: 1.3rem !important;
  }

  .padb-5 {
    padding-bottom: 1.3rem !important;
  }

  .login-bg.intro-area {
    padding-bottom: 20px !important;
  }

  .pade-5 {
    padding-right: 0 !important;
  }

  .ori {
    text-align: center;
  }

  .left-form-bg {
    border-radius: 12px !important;
  }

  .ori:after {
    display: none !important;
  }

  .ft-15 {
    font-size: 13px !important;
  }
}

.pade-5 {
  padding-right: 3rem;
}

.left-form-bg {
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 20px 20px 80px rgba(0, 0, 0, 0.02);
  border-radius: 25px;
}

.req-border {
  border-bottom: 1.5px solid var(--theme-border-color);
}

.theme-form-bg {
  border: 2px solid rgba(230, 234, 239, 1);
}

.text-green {
  color: var(--theme-text-color);
}

b {
  color: var(--theme-text-bold);
}

.text-theme3 {
  color: rgba(9, 29, 61, 1);
}

.text-subtitle {
  color: var(--theme-subtitle-text-color);
}

.text-loader {
  color: var(--text-loader-color);
}

.text-txn {
  color: var(--theme-txn-color);
}

.text-video-link {
  color: var(--theme-text-color);
}

.text-red {
  color: red;
}

.bg-checks {
  background: #ffffff;
  border: 1.5px solid var(--theme-border-color);
  box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  padding: 10px 20px;
}

.contactsvg {
  margin-right: 12px;
}

.cusrer {
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--theme-checkbox-color) !important;
  border-color: var(--theme-checkbox-color) !important;
}

.form-check-input:checked[type="radio"] {
  background-image: url(../img/path.png) !important;
  background-size: auto !important;
}

.form-check-input {
  width: 1.2em !important;
  height: 1.2em !important;
}

.form-check-input:focus {
  border: 0 !important;
  outline: 0;
  box-shadow: unset !important;
}

.payment-input {
  display: flex !important;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px 15px 15px !important;
  gap: 10px;
  background: #ffffff;
  border: 1.5px solid var(--theme-border-color) !important;
  box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.04);
  border-radius: 6px !important;
  padding-right: 45px !important;
}

.payment-input:focus {
  box-shadow: unset !important;
}

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

.text-end.copy-button svg {
  margin-top: -80px;
  margin-right: 20px;
}

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

.ft-15 {
  font-size: 15px;
}

.wtch {
  color: var(--text-video-color);
  text-decoration: underline;
}

.ori:after {
  content: "";
  background: url(../img/ori.png) no-repeat;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 33px;
  position: absolute;
  display: inline-block;
}

.form-check-input {
  border: 1px solid var(--theme-checkbox-border-color) !important;
}

.padx-5 {
  padding-right: 3rem;
  padding-left: 3rem;
}

.padb-5 {
  padding-bottom: 3rem;
}

.sticky-button-container {
  position: sticky;
  margin-top: -6vh;
  top: 20px;
  z-index: 9999;
}

.gear-icon {
  width: 12px;
  height: 12px;
  position: relative;
  animation: rotate 2s infinite linear;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
