/* ********* 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(--neue);
  color: var(--dark-blue);
  font-weight: 300;
}

html {
  scroll-behavior: smooth;
}

strong {
  font-weight: 700;
}

html,
body {
  scroll-behavior: smooth;
}

.body-fix {
  overflow-y: hidden;
  height: 100vh;
  position: fixed;
  width: 100%;
}

.heading-h1 {
  font-size: var(--h1-font-size);
  line-height: var(--h1-line-height);
}

.heading-h2 {
  font-size: var(--h2-font-size);
  line-height: var(--h2-line-height);
}

.heading-h3 {
  font-size: var(--h3-font-size);
  line-height: var(--h3-line-height);
}

.heading-h4 {
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
}

.heading-h5 {
  font-size: var(--h5-font-size);
  line-height: var(--h5-line-height);
}

.heading-h6 {
  font-size: var(--h6-font-size);
  line-height: var(--h6-line-height);
}

.font-28 {
  font-size: var(--font-28);
  line-height: var(--line-28-height);
}

.cost-container-lg {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 200px;
}

.cost-container-md {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 312px;
}

.cost-container-sm {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 425px;
}

.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-weight: 600;
  text-align: center;
  color: var(--white);
  font-family: var(--neue);
  display: inline;
  border-radius: 3px;
  transition: all 200ms ease-in;
  border: 1px solid var(--white);
  padding: 10.5px 29px;
  letter-spacing: 0.5px;
}

.theme-btn  span {
  height: 7px;
  width: 10px;
  background-image: url('../images/arrow-right-white.svg');
  background-position: left center;
  background-size: inherit;
  background-repeat: no-repeat;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 6px;
}

.theme-btn:hover  span {
  background-image: url('../images/arrow-right-blue.svg');
}

.theme-btn:hover {
  color: var(--dark-blue);
  transition: all 200ms ease-in;
  background: var(--white);
}

.theme-btn-out-blue {
  font-size: var(--btn-font-size);
  line-height: var(--btn-line-height);
  font-weight: 600;
  text-align: center;
  color: var(--dark-blue);
  font-family: var(--neue);
  display: inline;
  border-radius: 3px;
  transition: all 200ms ease-in;
  border: 1px solid var(--dark-blue);
  padding: 10.5px 29px;
  letter-spacing: 0.5px;
}

.theme-btn-out-blue  span {
  height: 7px;
  width: 10px;
  background-image: url('../images/arrow-right-blue.svg');
  background-position: left center;
  background-size: inherit;
  background-repeat: no-repeat;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 6px;
}

.theme-btn-out-blue:hover  span {
  background-image: url('../images/arrow-right-white.svg');
  color: var(--dark-blue);
}

.theme-btn-out-blue:hover {
  color: var(--white);
  transition: all 200ms ease-in;
  background: var(--dark-blue);
}

.theme-btn2 {
  font-size: var(--btn-font-size);
  line-height: var(--btn-line-height);
  border: none;
  border-radius: 3px;
  font-weight: 600;
  text-align: center;
  background: var(--RichBlue);
  font-family: var(--neue);
  color: var(--white);
  display: inline;
  transition: all 200ms ease-in;
  padding: 11.5px 25px;
  letter-spacing: 0.5px;
}

.theme-btn2  span {
  height: 7px;
  width: 10px;
  background-image: url('../images/arrow-right-white.svg');
  background-position: left center;
  background-size: inherit;
  background-repeat: no-repeat;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 5px;
}

.theme-btn2:hover {
  background: var(--dark-blue);
  color: var(--white);
  transition: all 200ms ease-in;
}

.theme-btn-outer {
  font-size: var(--btn-font-size);
line-height: var(--btn-line-height);
  border: none;
  font-weight: 600;
  text-align: center;
  background: transparent;
  color: var(--dark-blue);
  display: inline;
  transition: all 200ms ease-in;
  padding: 4px 9.5px;
  border-radius: 3px;
  border: 1px solid var(--dark-blue);
}

.theme-btn-outer  span {
  height: 7px;
  width: 10px;
  background-image: url('../images/arrow-right-blue.svg');
  background-position: left center;
  background-size: inherit;
  background-repeat: no-repeat;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
}

.theme-btn-outer:hover {
  background: var(--dark-blue);
  color: var(--white);
  transition: all 200ms ease-in;
}

.theme-btn-outer:hover span {
  background-image: url('../images/arrow-right-white.svg');
}


.theme-btn-outer-white {
  font-size: var(--btn-font-size);
line-height: var(--btn-line-height);
  border: none;
  font-weight: 600;
  text-align: center;
  background: transparent;
  color: var(--white);
  display: inline;
  transition: all 200ms ease-in;
  padding: 4px 9.5px;
  border-radius: 3px;
  border: 1px solid var(--white);
}

.theme-btn-outer-white  span {
  height: 7px;
  width: 10px;
  background-image: url('../images/arrow-right-white.svg');
  background-position: left center;
  background-size: inherit;
  background-repeat: no-repeat;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
}

.theme-btn-outer-white:hover {
  background: var(--white);
  color: var(--dark-blue);
  transition: all 200ms ease-in;
}

.theme-btn-outer-white:hover span {
  background-image: url('../images/arrow-right-blue.svg');
}


/* form controls */
.form-control::-webkit-input-placeholder {
  color: var(--white);
  opacity: 60%;
}

.form-control::-moz-placeholder {
  color: var(--white);
  opacity: 60%;
}

.form-control:-ms-input-placeholder {
  color: var(--white);
  opacity: 60%;
}

.form-control:-moz-placeholder {
  color: var(--white);
  opacity: 60%;
}

.form-control:focus,
.form-control:focus-visible {
  outline: none !important;
}

.cost-form .cost-form-group {
  margin-bottom: 38px;
}

.cost-form .cost-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(--dark-blue);
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
  background: transparent;
  outline: 0 !important;
  color: var(--dark-blue) !important;
}

input:focus,
.form-control:focus {
  box-shadow: none;
  color: var(--dark-blue);
  border-color: var(--white);
  outline: 0;
  background: var(--white);
}

.form-control {
  border: none;
  border-bottom: 1px solid var(--white);
  background-color: var(--white);
  border-radius: 5px;
  padding: 9px 17px 9px;
  width: 100%;
  font-weight: 500;
  height: auto;
  color: var(--dark-blue);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  min-height: auto;
  outline: 0;
}

.wpcf7 form .wpcf7-response-output {
    margin: 0em 0.5em 1em !important;
    padding: 0.2em 1em;
}

.form-control::placeholder {
  color: #003561;
  opacity: 0.5; 
}

.form-control::-ms-input-placeholder {
  color: #003561;
}

.cust-form .cust-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
  row-gap: 25px;
  margin-bottom: 56px;
}

.cust-form  .cust-form-row.col-s1 {
  grid-template-columns: 1fr;
}

.cust-form label {
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  font-family: var(--neue);
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--dark-blue);
}

.partner-banner-cta {
    font-size: 15px;
    line-height: 25px;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 5px 18px;
    border-radius: 5px;
    letter-spacing: 1px;
    cursor: auto;
}

.partner-banner-cta:hover {
  color: var(--white);
  border: 1px solid var(--white);
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--dark-blue); 
  border-radius: 2px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--dark-blue); 
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--RichBlue); 
  cursor: pointer;
}

.com-heading {
  position: relative;
  font-weight: 600;
}

.com-heading .title.heading-h2 span {
  font-family: var(--richmond);
    color: var(--pink);
    font-weight: 600;
    letter-spacing: 1px;
    font-style: italic;
  font-size: var(--h1-font-size);
  line-height: var(--h1-line-height);

}

.com-heading .title.heading-h4 span {
  font-family: var(--richmond);
    color: var(--pink);
    font-weight: 600;
    letter-spacing: 1px;
    font-style: italic;
  font-size: var(--h3-font-size);
  line-height: var(--h3-line-height);

}