/* ********* Common css ************ */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

body {
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  letter-spacing: var(--body-lspacing);
  font-weight: 300;
  font-family: var(--fontfamliy);
}

html,
body {
  scroll-behavior: smooth;
}

h1,
.heading-h1,
h2,
.heading-h2,
h3,
.heading-h3,
h4,
.heading-h4,
h5,
.heading-h5,
h6,
.heading-h6 {
  font-family: var(--fontfamliy);
  font-weight: 400;
}

h1,
.heading-h1 {
  font-size: var(--h1-font-size);
  line-height: var(--h1-line-height);
  letter-spacing: var(--h1-lspacing);
}

h2,
.heading-h2 {
  font-size: var(--h2-font-size);
  line-height: var(--h2-line-height);
  letter-spacing: var(--h2-lspacing);
}

h3,
.heading-h3 {
  font-size: var(--h3-font-size);
  line-height: var(--h3-line-height);
  letter-spacing: var(--h3-lspacing);
}

h4,
.heading-h4 {
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
  letter-spacing: var(--h4-lspacing);
}

h5,
.heading-h5 {
  font-size: var(--h5-font-size);
  line-height: var(--h5-line-height);
  letter-spacing: var(--h5-lspacing);
}

h6,
.heading-h6 {
  font-size: var(--h6-font-size);
  line-height: var(--h6-line-height);
  letter-spacing: var(--h6-lspacing);
}

.cust-container-lg {
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
}

.cust-container-md {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

.img-box {
  position: relative;
  overflow: hidden;
}

.img-box img,
.img-box video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

/* form controls */
.form-control::-webkit-input-placeholder {
  color: var(--black);
}

.form-control::-moz-placeholder {
  color: var(--black);
}

.form-control:-ms-input-placeholder {
  color: var(--black);
}

.form-control:-moz-placeholder {
  color: var(--black);
}

.form-control:focus,
.form-control:focus-visible {
  outline: none !important;
}

.cust-form .cust-form-group {
  margin-bottom: 15px;
}

.cust-form .cust-form-group:last-child {
  margin-bottom: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--black);
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
  background: transparent;
  outline: 0 !important;
  color: var(--black) !important;
}

input:focus,
.form-control:focus {
  box-shadow: none;
  color: var(--black);
  border-color: var(--black);
  outline: 0;
  background: transparent;
}

.form-control {
  border: 1px solid #09052621;
  background-color: #fff;
  border-radius: 4px;
  padding: 12px 9px;
  width: 100%;
  font-family: var(--fontfamliy);
  height: auto;
  color: var(--black);
  font-size: 15px;
  line-height: 20px;
  letter-spacing: var(--h6-lspacing);
  min-height: auto;
  outline: 0;
  font-weight: 400;
}

.cust-form label {
  font-size: var(--md-font-size);
  line-height: var(--md-line-height);
  letter-spacing: var(--md-lspacing);
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--black);
}



/* theme-btn */
.theme-btn {
  font-size: var(--btn-font-size);
  line-height: var(--btn-line-height);
  letter-spacing: var(--btn-lspacing);
  border: 1px solid var(--black);
  font-weight: 400;
  text-align: center;
  padding: 11px 40px;
  color: var(--whitea);
  display: inline-block;
  background: var(--black);
  border-radius: 60px;
  transition: all 200ms ease-in;
}

.theme-btn:hover {
  background: transparent;
  color: var(--black);
  transition: all 200ms ease-in;
}


/* theme-btn */
.theme-btn-one {
  font-size: var(--btn-font-size);
  line-height: var(--btn-line-height);
  letter-spacing: var(--btn-lspacing);
  border: 1px solid var(--whitea);
  font-weight: 400;
  text-align: center;
  padding: 11px 40px;
  color: var(--black);
  display: inline-block;
  background: var(--whitea);
  border-radius: 60px;
  transition: all 200ms ease-in;
}

.theme-btn-one:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* theme-btn */
.theme-btn-outline {
  font-size: var(--btn-font-size);
  line-height: var(--btn-line-height);
  letter-spacing: var(--btn-lspacing);
  border: 1px solid var(--black);
  font-weight: 400;
  text-align: center;
  padding: 11px 40px;
  color: var(--black);
  display: inline-block;
  background: transparent;
  border-radius: 60px;
  transition: all 200ms ease-in;
}

.theme-btn-outline:hover {
  color: var(--white);
  background: var(--black);
  transition: all 200ms ease-in;
}

/* theme-btn */
.theme-white-outline {
  font-size: var(--btn-font-size);
  line-height: var(--btn-line-height);
  letter-spacing: var(--btn-lspacing);
  border: 1px solid var(--white);
  font-weight: 400;
  text-align: center;
  padding: 11px 40px;
  color: var(--white);
  display: inline-block;
  background: transparent;
  border-radius: 60px;
  transition: all 200ms ease-in;
}

.theme-white-outline:hover {
  color: var(--black);
  background: var(--white);
  transition: all 200ms ease-in;
  border-color: var(--white);
}


/* theme-btn */
.theme-btn-two {
  font-size: var(--btn-font-size);
  line-height: var(--btn-line-height);
  border: 1px solid var(--whitea);
  font-weight: 400;
  text-align: center;
  padding: 11px 40px;
  color: var(--black);
  display: inline-block;
  background: var(--whitea);
  border-radius: 60px;
  transition: all 200ms ease-in;
}

.theme-btn-two:hover {
  background: #09052600;
  color: var(--white);
  border-color: var(--w);
}

.custom-select-wrapper {
  position: relative;
  display: block;
  user-select: none;
}

.custom-select-trigger {
  position: relative;
  display: block;
  cursor: pointer;
  transition: all 0.1s ease-in;
  padding-right: 30px;
  padding-left: 10px;
}

.custom-select.opened .custom-select-trigger:after {
  margin-top: 3px;
  transform: rotate(180deg) translateY(-50%);
}

.custom-select-trigger:after {
  position: absolute;
  display: block;
  content: '';
  width: 10px;
  height: 7px;
  top: 50%;
  right: 0;
  margin-top: 0;
  background: url(../images/down.png) no-repeat center;
  transform: rotate(0) translateY(-50%);
  transition: all 0.2s ease-in-out;
  transform-origin: 50% 0;
  background-size: 100%;
}

.custom-select.opened .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
  border: 1px solid var(--black);
  margin-top: -1px;
}

.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: -2px;
  right: -2px;
  margin: 0;
  border: 2px solid var(--dark);
  border-radius: 0;
  box-sizing: border-box;
  box-shadow: 0 2px 1px rgb(0 0 0 / 7%);
  background: #ebedee;
  transition: all 0.1s ease-in-out;
  /* margin-left: 0; */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
  z-index: 99;
  text-transform: uppercase;
  font-weight: 500;
}

.custom-option {
  position: relative;
  display: block;
  padding: 6px 14px;
  border-bottom: none;
  color: var(--black);
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
}

.home-form .form-control {
  border: none;
  border-bottom: 1.5px solid var(--black);
  background-color: transparent;
  border-radius: 0;
  padding: 6px 0 6px;
  width: 100%;
  font-weight: 200;
  height: auto;
  color: var(--black);
  font-size: 18px;
  line-height: 28px;
  min-height: auto;
  outline: 0;
}

.home-form .submit-btn {
  font-size: 16px;
  line-height: 28px;
  background: var(--black);
  color: var(--whitea);
  padding: 10px 40px;
  border-radius: 50px;
  border: 2px solid black;
}

.font-500 {
  font-weight: 500;
}

.font-600 {
  font-weight: 600;
}


/* gradient */

/* body {
  height: 100vh;
  margin: 0;
  background: radial-gradient(circle at 30% 50%, #cfe2fa 0%, transparent 60%),
    radial-gradient(circle at 70% 50%, #fcd6cf 0%, transparent 60%),
    #f5f7fa;
  background-blend-mode: lighten;
}


body {
  height: 100vh;
  margin: 0;
  background: linear-gradient(135deg, #c9dcf5 0%, #f9d5d1 100%);
} */


/* gradient move  */

/* body {
  height: 100vh;
  margin: 0;
  background: linear-gradient(135deg, #c9dcf5, #f9d5d1, #dbe9ff, #fde2d8);
  background-size: 400% 400%;
  animation: gradientMove 20s ease infinite;
} */

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.form-control::-webkit-input-placeholder {
  color: rgb(109, 109, 109);
}

.form-control:-moz-placeholder {
  color: rgb(109, 109, 109);
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: rgb(109, 109, 109);
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: rgb(109, 109, 109);
}

.form-control::-ms-input-placeholder {
  color: rgb(109, 109, 109);
}

.form-control::placeholder {
  color: rgb(109, 109, 109);
}

/* loader */
#loading {
  background-color: #eff1f4;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 1;
  margin-top: 0px;
  top: 0px;
  z-index: 9999999;
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}

#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 150px;
  width: 150px;
  margin-top: -75px;
  margin-left: -75px;
}

.object {
  width: 20px;
  height: 20px;
  background-color: var(--black);
  float: left;
  margin-right: 20px;
  margin-top: 65px;
  -moz-border-radius: 50% 50% 50% 50%;
  -webkit-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
}

#object_one {
  -webkit-animation: object_one 1.5s infinite;
  animation: object_one 1.5s infinite;
}

#object_two {
  -webkit-animation: object_two 1.5s infinite;
  animation: object_two 1.5s infinite;
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

#object_three {
  -webkit-animation: object_three 1.5s infinite;
  animation: object_three 1.5s infinite;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@-webkit-keyframes object_one {
  75% {
    -webkit-transform: scale(0);
  }
}

@keyframes object_one {
  75% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
}

@-webkit-keyframes object_two {
  75% {
    -webkit-transform: scale(0);
  }
}

@keyframes object_two {
  75% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
}

@-webkit-keyframes object_three {
  75% {
    -webkit-transform: scale(0);
  }
}

@keyframes object_three {
  75% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
}

/* end loader */