/** Basic Styling, such as colours, fonts and whatnot **/
@font-face {
  font-family: "Barlow-Regular";
  src: url(/fonts/Barlow-Regular.ttf?e7eb634d040a6f3840336c988c10b188);
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Barlow-Medium";
  src: url(/fonts/Barlow-Medium.ttf?75ccf963e09a8cc171934af313a343a2);
}
@font-face {
  font-family: "Barlow-SemiBold";
  src: url(/fonts/Barlow-SemiBold.ttf?8247eaeb0799c0acafc60af7a73f6021);
  font-weight: 600;
}
@font-face {
  font-family: "Barlow-ExtraBold";
  src: url(/fonts/Barlow-ExtraBold.ttf?777e300ed64d3d47cc85d85e645e1847);
  font-weight: 600;
}
@font-face {
  font-family: "PublicSans-Bold";
  src: url(/fonts/PublicSans-Bold.ttf?3e9a7b1100bf8a1fdd300b0a965daa7c);
  font-weight: 800;
}
.icon-phone {
  background: url("/images/icons/phone.svg") no-repeat center center;
  background-size: contain;
  display: inline-block;
}

.icon-email {
  background: url("/images/icons/email.svg") no-repeat center center;
  background-size: contain;
  display: inline-block;
}

.chevron-right-blue {
  background: url("/images/icons/chevron-right-blue.svg") no-repeat center center;
  background-size: contain;
  display: inline-block;
}

.chevron-right-white {
  background: url("/images/icons/chevron-right-white.svg") no-repeat center center;
  background-size: contain;
  display: inline-block;
}

.icon-emoji {
  background: url("/images/icons/emoji-without-eyes.svg") no-repeat center center;
  background-size: contain;
  display: inline-block;
}

.icon-add-pic {
  background: url("/images/icons/add-picture.svg") no-repeat center center;
  background-size: contain;
  display: inline-block;
}

.icon-paperclip {
  background: url("/images/icons/paperclip.svg") no-repeat center center;
  background-size: contain;
  display: inline-block;
}

.icon-microphone {
  background: url("/images/icons/microphone.svg") no-repeat center center;
  background-size: contain;
  display: inline-block;
}

.icon-web {
  background: url("/images/icons/web.svg") no-repeat center center;
  background-size: contain;
  display: inline-block;
}

.icon-sm {
  width: 18px;
  height: 18px;
}

.icon-md {
  width: 32px;
  height: 32px;
}

.icon-lg {
  width: 48px;
  height: 48px;
}

:root {
  --background: #F4F6F8;
  --primary: #002954;
  --primary-2: #335476;
  --secondary: #00D5DD;
  --secondary-2: #CAFDF5;
  --tertiary: #637381;
  --blue: #006C9C;
  --light-tertiary: #919EAB;
}

.txt-white {
  color: #fff !important;
}

.txt-primary {
  color: #212B36;
}

.txt-secondary {
  color: var(--secondary);
}

.txt-tertiary {
  color: var(--tertiary);
}

.txt-lgt-tertiary {
  color: var(--light-tertiary);
}

.txt-blue {
  color: var(--blue) !important;
}

.txt-sm {
  font-size: 12px;
}

.txt-md {
  font-size: 16px;
}

.txt-lg {
  font-size: 24px;
}

.gradient-text {
  background: -webkit-linear-gradient(#64E0F6, #006C9C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-2 {
  background: -webkit-linear-gradient(#1ABCFE, #61F3F3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.txt-secondary-hover:hover {
  color: var(--secondary);
}

h1 {
  font-size: 64px;
  line-height: 63px;
}

h2 {
  font-size: 64px;
  line-height: 63px;
}

h5 {
  font-size: 20px;
  line-height: 30px;
}

p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

li {
  line-height: 24px;
}

.fw-medium {
  font-family: "Barlow-Medium", sans-serif;
  font-weight: 500;
}

.fw-bold {
  font-family: "Barlow-SemiBold", sans-serif;
  font-weight: 600;
}

.fw-extra-bold {
  font-family: "Barlow-ExtraBold", sans-serif;
  font-weight: 700;
}

@media (max-width: 600px) {
  h1 {
    font-size: 42px;
    line-height: 46px;
  }
  h2 {
    font-size: 40px;
    line-height: 42px;
  }
}
@media (min-width: 1025px) {
  h2.section-header {
    font-size: 48px;
    line-height: 64px;
  }
}
.cur-pointer {
  cursor: pointer;
}

.bdr-24 {
  border-radius: 24px;
}

.bdt-24 {
  border-radius: 24px 24px 0 0;
}

.z-1000 {
  z-index: 1000;
}

.min-h-100 {
  min-height: 100%;
}

.bdr-none {
  border: none;
}

.bdr-tertiary {
  border-color: var(--tertiary);
  border: 1px solid !important;
}

.crv-md {
  border: none;
  border-radius: 16px;
}

.btn-radius {
  border: none;
  border-radius: 8px;
}

.spacer-top-120 {
  padding-top: 120px;
}

.spacer-bottom-120 {
  padding-bottom: 120px;
}

.spacer-top-80 {
  padding-top: 80px;
}

.spacer-bottom-80 {
  padding-bottom: 80px;
}

.spacer-top-40 {
  padding-top: 40px;
}

.spacer-bottom-40 {
  padding-bottom: 40px;
}

.contact-input {
  border: none;
  border-radius: 8px;
  padding: 0 10px;
}

.contact-input:focus {
  border: none;
}

.sml-input {
  height: 50px;
  padding: 0 8px;
}

.lg-input {
  height: 200px;
  resize: none;
  padding: 8px 8px;
}

.contact-input-sm {
  height: 54px;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px var(--light-tertiary);
  box-shadow: var(--background) 20%;
}

.contact-input-md {
  height: 98px;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px var(--light-tertiary);
  box-shadow: var(--background) 20%;
}

.bg-clear {
  background: transparent !important;
}

.bg-primary {
  background-color: var(--primary) !important;
  color: #fff;
}

.bg-secondary {
  background-color: var(--secondary) !important;
  color: #fff;
}

.bg-secondary-2-hover:hover {
  background-color: var(--secondary-2) !important;
  color: #fff;
}

.bg-tertiary {
  background-color: var(--tertiary);
}

.bg-tertiary-hover:hover {
  background-color: var(--tertiary);
}

.bg-paper {
  background-color: #F4F6F8;
}

.bg-red-hover:hover {
  background-color: var(--bs-red);
}

.primary-gradient {
  background: -webkit-linear-gradient(#1ABCFE, #00D5DD);
}

.box-shadow {
  box-shadow: -40px 40px 80px 0 rgba(145, 158, 171, 0.16);
}

.hsua-btn {
  height: 48px;
  border: none;
  font-size: 15px;
  border-radius: 8px;
  font-family: "PublicSans-Bold", sans-serif !important;
  font-weight: 600;
  line-height: 24px !important;
}

.hsua-btn.btn-md {
  width: 190px !important;
}

.btn-primary {
  background-color: var(--primary) !important;
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--primary-2) !important;
}

.btn-secondary {
  background-color: var(--secondary) !important;
  color: #fff !important;
  font-size: 15px !important;
  line-height: 26px !important;
}

.btn-secondary:hover {
  background-color: #00EEF7 !important;
}

.btn-tertiary {
  color: #fff;
  background-color: #006C9C;
}

.disabled-btn {
  background-color: #d3d3d3;
  opacity: 70%;
}

.icn-lg {
  width: 120px;
}

.icn-md {
  font-size: 25px;
}
