! CSS Used from: https://colorlib.com/etc/cf/ContactFrom_v18/vendor/bootstrap/css/bootstrap.min.css
@media print {
  *,
  ::after,
  ::before {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
}

*,
::after,
::before {
  box-sizing: inherit;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

b {
  font-weight: bolder;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

a,
button,
input,
label,
select,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

button,
input,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button {
  -webkit-appearance: button;
}

button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

/*! CSS Used from: https://colorlib.com/etc/cf/ContactFrom_v18/fonts/font-awesome-4.7.0/css/font-awesome.min.css */
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-twitter:before {
  content: "\f099";
}

.fa-facebook-f:before {
  content: "\f09a";
}

.fa-youtube-play:before {
  content: "\f16a";
}

.m-r-5 {
  margin-right: 5px;
}

.flex-c-m {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*! CSS Used from: https://colorlib.com/etc/cf/ContactFrom_v18/css/main.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  font-family: Poppins-Regular;
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0;
  transition: all 0.4s;
}

a:focus {
  outline: none !important;
}

a:hover {
  text-decoration: none;
}

input,
textarea {
  outline: none;
  border: none;
}

textarea:focus,
input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #adadad;
}

/* Fixed checkbox issue */
label {
  display: initial;
  margin: 0;
}

/* Explanation:
   The original code used "display: block;" which caused issues with checkboxes.
   Using "display: initial;" restores default rendering behavior. */

button {
  outline: none !important;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

/* --- Social BG Colors --- */
.bg1 {
  background: #3b5998;
}

.bg2 {
  background: #1da1f2;
}

.bg3 {
  background: #cd201f;
}

/* --- Form Styles --- */
.contact100-form {
  width: 100%;
  display: block;
  padding: 0 55px 55px;
}

.contact100-form-title {
  width: 100%;
  display: block;
  font-family: Poppins-Regular;
  font-size: 30px;
  color: #333;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 48px;
}

.wrap-input100 {
  min-height: 70px;
  width: 100%;
  position: relative;
  border: 1px solid #bababa;
  border-radius: 10px;
  margin-bottom: 20px;
}

.label-input100 {
  font-family: Montserrat-SemiBold;
  font-size: 11px;
  color: #666;
  line-height: 2.2;
  text-transform: uppercase;
  padding: 3px 0 2px 24px;
  display: flex !important;
}

.input100 {
  display: block;
  width: 100%;
  background: transparent;
  font-family: Montserrat-Regular;
  font-size: 18px;
  color: #404b46;
  line-height: 1.2;
  padding: 0 26px;
}

input.input100 {
  height: 48px;
  border-radius: 10px;
}

textarea.input100 {
  min-height: 130px;
  padding-top: 14px;
  padding-bottom: 15px;
}

/* --- Input Focus Border --- */
.focus-input100 {
  position: absolute;
  display: block;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  top: -1px;
  left: -1px;
  pointer-events: none;
  border: 1px solid #6675df;
  border-radius: 10px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s;
  transform: scaleX(1.1) scaleY(1.3);
}

.input100:focus + .focus-input100 {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

/* --- Submit Button --- */
.container-contact100-form-btn {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 10px;
}

.contact100-form-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  background: #6675df;
  font-family: Montserrat-Bold;
  font-size: 12px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s;
}

.contact100-form-btn:hover {
  background: #404b46;
}

/* --- Error Text --- */
.validate-input .error {
  padding: 0 !important;
  margin-top: 0 !important;
  font-size: 11px;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .contact100-form {
    /* width: 50%; */
    padding: 110px 30px 55px;
  }
}

@media (max-width: 768px) {
  .contact100-form {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .contact100-form {
    padding: 110px 15px 55px;
  }
}

/* --- Social Icons --- */
.contact100-form-social {
  padding-top: 100px;
}

.contact100-form-social-item {
  width: 36px;
  height: 36px;
  font-size: 18px;
  color: #fff;
  border-radius: 50%;
}

.contact100-form-social-item:hover {
  background: #404b46;
  color: #fff;
}

/* --- Select2 Custom Styles --- */
.select2-container {
  border-top: solid 0em #bbb;
  border-radius: 10px;
  display: block;
  max-width: 100% !important;
  width: auto !important;
}

.select2-container .select2-selection--single {
  border-radius: 10px;
  display: flex;
  align-items: center;
  background-color: #fff;
  border: none;
  height: 47px;
  outline: none;
  position: relative;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  font-family: Montserrat-Regular;
  font-size: 12px;
  color: #404b46;
  line-height: 1.2;
  background-color: #fff;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 20px;
  height: 100%;
  top: 45%;
  transform: translateY(-50%);
  right: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-top-color: #404b46;
}

/*! CSS Used fontfaces */
@font-face {
  font-family: Poppins-Regular;
  src: url(../fonts/poppins/Poppins-Regular.ttf);
}

@font-face {
  font-family: Poppins-Medium;
  src: url(../fonts/poppins/Poppins-Medium.ttf);
}

@font-face {
  font-family: Poppins-Bold;
  src: url(../fonts/poppins/Poppins-Bold.ttf);
}

@font-face {
  font-family: Poppins-SemiBold;
  src: url(../fonts/poppins/Poppins-SemiBold.ttf);
}

@font-face {
  font-family: Montserrat-Bold;
  src: url(../fonts/montserrat/Montserrat-Bold.ttf);
}

@font-face {
  font-family: Montserrat-SemiBold;
  src: url(../fonts/montserrat/Montserrat-SemiBold.ttf);
}

@font-face {
  font-family: Montserrat-Regular;
  src: url(../fonts/montserrat/Montserrat-Regular.ttf);
}

/* --- Progress Tracker --- */
.progress-tracker {
  display: flex;
  margin: 60px auto;
  padding: 0;
  list-style: none;
}

.progress-step {
  flex: 1 1 0%;
  margin: 0;
  padding: 0;
  min-width: 24px;
  display: inline-grid;
}

.progress-step:last-child {
  flex-grow: 0;
}

.progress-step:last-child .progress-marker::after {
  display: none;
}

.progress-marker {
  display: block;
  position: relative;
  z-index: 0;
}

.progress-marker::before {
  content: attr(data-text);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 20;
  width: 24px;
  height: 24px;
  padding-bottom: 2px;
  border-radius: 50%;
  transition: background-color 0.3s, border-color 0.3s;
}

.progress-marker::after {
  content: '';
  display: block;
  position: absolute;
  z-index: -10;
  top: 10px;
  right: -12px;
  width: 100%;
  height: 4px;
  transition: background-color 0.3s, background-position 0.3s;
}

.progress-text {
  display: block;
  padding: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.progress-title {
  margin-top: 0;
}

.progress-step .progress-marker {
  color: #fff;
}

.progress-step .progress-marker::before {
  background-color: #b6b6b6;
}

.progress-step .progress-marker::after {
  background-color: #b6b6b6;
}

.progress-step .progress-text {
  color: #333;
}

.progress-step.is-active .progress-marker::before {
  background-color: #9c9b9b;
}

.progress-step.is-on .progress-marker::before {
  background-color: #fcb814;
}

.progress-step:hover .progress-marker::before {
  background-color: #9c9b9b;
}

.progress-tracker--text .progress-step:last-child,
.progress-tracker--center .progress-step:last-child {
  flex-grow: 1;
}

.progress-tracker--center {
  text-align: center;
}

.progress-tracker--center .progress-marker::before {
  margin-left: auto;
  margin-right: auto;
}

.progress-tracker--center .progress-marker::after {
  right: -50%;
}

/* ------ Custom Style ------- */
.td-prograss_bar {
  padding-top: 0;
}
