/* ********* 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);
  font-family: var(--ivy-presto);
  color: var(--dark);
}

html {
  scroll-behavior: smooth;
}

html,
body {
  scroll-behavior: smooth;
}

h1,
.heading-h1 {
  font-size: var(--h1-font-size);
  line-height: var(--h1-line-height);
}

h2,
.heading-h2 {
  font-size: var(--h2-font-size);
  line-height: var(--h2-line-height);
}

h3,
.heading-h3 {
  font-size: var(--h3-font-size);
  line-height: var(--h3-line-height);
}

h4,
.heading-h4 {
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
}

h5,
.heading-h5 {
  font-size: var(--h5-font-size);
  line-height: var(--h5-line-height);
}

h6,
.heading-h6 {
  font-size: var(--h6-font-size);
  line-height: var(--h6-line-height);
}

.cust-container-lg {
  width: 100%;
  max-width: 84.4%;
  margin: 0 70px;
}

.cust-container-md {
  width: 100%;
  max-width: 69.9%;
  margin: 0 207px;
}

.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;
}

/* theme-btn */
.theme-btn {
  font-size: var(--btn-font-size);
  line-height: var(--btn-line-height);
  font-family: var(--forma-djr);
  border: none;
  font-weight: 500;
  text-align: center;
  padding: 18px 47.3px;
  color: var(--white);
  display: inline-block;
  background: var(--light-dark);
  border-radius: 60px;
  transition: all 200ms ease-in;
  letter-spacing: 1px;
}

.theme-btn span {
  width: 11px;
  height: 10px;
  display: inline-flex;
  background-image: url(../images/arrow-white.svg);
  background-size: cover;
  justify-content: end;
  align-items: center;
  margin-left: 10px;
}

.theme-btn:hover {
  background: var(--dark);
  color: var(--white);
  transition: all 200ms ease-in;
}

.theme-btn-outline {
  font-size: var(--btn-font-size);
  line-height: var(--btn-line-height);
  font-family: var(--forma-djr);
  border: 1px solid var(--dark);
  font-weight: 500;
  text-align: center;
  padding: 16.5px 35.3px;
  color: var(--dark);
  display: inline-block;
  background: transparent;
  border-radius: 60px;
  transition: all 200ms ease-in;
  letter-spacing: 1px;
}

.theme-btn-outline span {
  width: 11px;
  height: 10px;
  display: inline-flex;
  background-image: url(../images/errow-dark.svg);
  background-size: cover;
  justify-content: end;
  align-items: center;
  margin-left: 10px;
}

.theme-btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  transition: all 200ms ease-in;
}

.theme-btn-outline:hover span {
  background-image: url(../images/arrow-white.svg);
}


/* form controls */
.form-control::-webkit-input-placeholder {
  color: var(--light-dark);
}

.form-control::-moz-placeholder {
  color: var(--LightPeriwinkle);
}

.form-control:-ms-input-placeholder {
  color: var(--LightPeriwinkle);
}

.form-control:-moz-placeholder {
  color: var(--LightPeriwinkle);
}

.form-control:focus,
.form-control:focus-visible {
  outline: none !important;
}

.cust-form .cust-form-group {
  margin-bottom: 38px;
}

.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(--RichBlue);
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
  background: transparent;
  outline: 0 !important;
  color: var(--RichBlue) !important;
}

input:focus,
.form-control:focus {
  box-shadow: none;
  color: var(--RichBlue);
  border-color: var(--RichBlue);
  outline: 0;
  background: transparent;
}

.form-control {
  border: none;
  border-bottom: 1px solid var(--RichBlue);
  background-color: transparent;
  border-radius: 0;
  padding: 6px 0 15px;
  width: 100%;
  font-family: var(--fontfamliyNeue);
  font-weight: 500;
  height: auto;
  color: var(--RichBlue);
  font-size: var(--h6-font-size);
  line-height: var(--h6-line-height);
  min-height: auto;
  outline: 0 ;
}

.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(--CerisePink);
}

