@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --q-primary: #11A2DC;
  --text-color: #444444;
  --q-cinth-footer-bg-colour: #032d41;
}

@media (max-width: 767px) {
  .hidden-sm {
    display: none !important;
  }

  .col-xs-12 {
    height: auto;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
}

@media (min-width: 1700px) {
  .container {
    margin: 0 auto;
    max-width: 1700px;
  }
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

html, 
body {
    height: 100%;
}

* {
  outline: none !important;
  box-sizing: border-box;
}

.align-center {
  align-items: center;
}

.justify-center, .flex-center {
  justify-content: center;
}

.align-top {
  vertical-align: top !important;
}

.row, .column, .flex {
  display: flex;
  flex-wrap: wrap;
}

body {
  overflow-x: hidden;
  font-family: Poppins, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  background-color: #fff;
}

.text-h6 {
  margin-bottom: 15px;
  color: var(--q-primary);
  font-size: 22px;
  font-weight: 600;
}

.text-h3 {
  color: #3b3b3b;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
}

.navbar .navbar-nav .nav-item .nav-link {
  display: block;
  padding: 0 16px;
  color: black;
  font-size: 16px;
  line-height: 1.715em;
  font-weight: 500;
}

.form-block {
  padding-top: 70px;
  padding-right: 15px;
  padding-left: 15px;
  width: 100%;
}

.form-block .right {
  position: relative;
}

.form-block .right:before {
  position: fixed;
  top: -50vw;
  left: 60vw;
  width: 100vw;
  height: 200vw;
  content: "";
  z-index: -1;
  background: linear-gradient(135deg, rgba(19, 162, 221, 0.27) 0%, rgba(19, 162, 221, 0) 68%, rgba(19, 162, 221, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4513a2dd", endColorstr="#0013a2dd", GradientType=1);
}

.form-block hr {
  display: none;
}

.form-block .form-container {
  margin-top: 70px;
  margin-bottom: 70px;
}

form input.form-control {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  border-radius: 28px;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.24);
  transition: border-color 0.36s cubic-bezier(0.4, 0, 0.2, 1);
}

form .form-label {
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: 0.00937em;
}

form input {
  box-shadow: none !important;
}

form .actions {
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: 0 -10px;
}

.btn {
  min-height: 2.572em;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: 10px;
  margin-left: 10px;
  color: #fff;
  background: var(--q-primary);
  border-radius: 28px;
  border: none;
  font-size: 18px;
  line-height: 2;
}

.form-block .right img {
  position: relative;
  left: 5vw;
  display: block;
  height: auto;
  width: 100%;
}


footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background-color: var(--q-cinth-footer-bg-colour);
}

  footer * {
    color: #fff;
  }
  