:root {
  --input-padding-x: .75rem;
  --input-padding-y: .75rem;
}

html, body {
  font-family: 'Source Sans Pro', sans-serif;
}

.full-image {
  background-image: url('../images/nexsys-main-bg.png');
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
}

.full-image h1 {
  border: 2px solid #f35752;
  padding: 25px 100px;
  background: rgb(0 0 0 / 60%);
  font-weight: 600;
}

.grey-bg {
  background: #F8F8F8;
}

.circular-icon {
  text-align: center;
  padding: 30px 30px 0px 10px;
  background-color: #fff;
}

.blue-bg {
  background: #f8f8f8;
  width: 80px;
  height: 80px;
  padding: 17px;
  border-radius: 50%;
  border: 1px solid #f35752;
}

.blue-bg img {
  width: 100%;
}

.blue-smallbg {
  background: #DBEEFF;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  position: relative;
  padding: 5px;
}

.blue-smallbg i {
  width: 20px;
  height: 20px;
  color: #f35752;
}

.card-body {
  display: flex;
  flex-direction: column;
}

.card-body .card-title,
.card-body .card-text {
  min-height: 65px;
}

.card-body .card-title,
.contact-form h3 {
  font-weight: 600;
}

.card-footer {
  background: transparent;
  border: none;
}

.card-footer a {
  color: #f35752;
  text-decoration: none;
  font-weight: bold;
}

.card-footer a i {
  font-size: 20px;
  position: relative;
  top: 1px;
  color: #f35752;
}

/* css for forms */

.enquiry-form .form-control {
  height: auto;
}

.form-label-group {
  position: relative;
  margin-bottom: 1rem;
}

.form-label-group>input,
.form-label-group>label {
  padding: var(--input-padding-y) var(--input-padding-x);
}

.form-label-group>label {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  margin-bottom: 0;
  /* Override default `<label>` margin */
  line-height: 1.5;
  color: #495057;
  border: 1px solid transparent;
  border-radius: .25rem;
  transition: all .1s ease-in-out;
}

.form-label-group input::-webkit-input-placeholder {
  color: transparent;
}

.form-label-group input:-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::-moz-placeholder {
  color: transparent;
}

.form-label-group input::placeholder {
  color: transparent;
}

.form-label-group input:not(:placeholder-shown) {
  padding-top: calc(var(--input-padding-y) + var(--input-padding-y) * (2 / 3));
  padding-bottom: calc(var(--input-padding-y) / 3);
}

.form-label-group input:not(:placeholder-shown)~label {
  padding-top: calc(var(--input-padding-y) / 3);
  padding-bottom: calc(var(--input-padding-y) / 3);
  font-size: 12px;
  color: #777;
}

.form-label-group textarea:not(:placeholder-shown) {
  padding-top: calc(var(--input-padding-y) + var(--input-padding-y) * (2 / 3));
  padding-bottom: calc(var(--input-padding-y) / 3);
}

.form-label-group textarea:not(:placeholder-shown)~label {
  padding-top: calc(var(--input-padding-y) / 3);
  padding-bottom: calc(var(--input-padding-y) / 3);
  font-size: 12px;
  color: #777;
}

.site-button {
  background: #f35752;
  border: 2px solid #f35752;
  padding: 6px 28px;
  font-size: 18px;
  color: #ffffff;
  text-transform: uppercase;
}

.site-button:hover {
  background-color: transparent;
  color: #f35752;
}

.btn-check:focus+.site-button, .site-button:focus {
  box-shadow: none;
}

.info-row {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: left;
}

.info-row span {
  border-radius: 50%;
  background: transparent;
  width: 32px;
  height: 32px;
  border: 1px solid #f35752;
  position: relative;
}

.info-row span i {
  color: #f35752;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-left: 0.5px;
}

.info-row p {
  padding: 4px 0 0 15px;
  font-size: 16px;
  font-weight: 600;
}

.info-row p a {
  color: #000000;
  text-decoration: none;
}

.info-row p a:hover {
  color: #f35752;
}

footer {
  background: #3d3d3d;
}

/* .list-unstyled li a {
  color: #DBEEFF;
} */

.copyright {
  /* border-top: 1px solid #DBEEFF; */
  color: #e7e7e7;
}

.success-msg,
.failure-msg {
  text-align: center;
}

.success-msg h3,
.failure-msg h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.5rem;
  text-transform: uppercase;
}

.success-msg h3 {
  color: #52f367;
}

.failure-msg h3,
.form-label-group .error {
  color: #f35752;
}

.success-msg h5,
.failure-msg h5 {
  font-size: 1.125rem;
}


@media (max-width: 991px) {
  .navbar .container {
    width: 100%;
    max-width: 100%;
  }

  .navbar-light .navbar-nav {
    margin-top: 15px;
  }

  .navbar-light .navbar-nav .nav-item {
    margin: 5px 0px 0px 0px;
    border-top: solid 1px #d7d7d7;
  }

  .contact-us {
    margin-top: 40px;
  }
}