@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*, *:before, *:after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  margin: 0;
  padding: 0;
}


body {
  font-family: "Roboto", sans-serif;
  color: rgb(61, 61, 61);
  font-size: 1em;
  line-height: 1.2em;
}

h1 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.1em;
}

h2 {
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.1em;
}

h3 {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.3em;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.1em;
}

h5 {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.1em;
}

h6 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.1em
}


.heading-1 {
  font-size: 3rem;
}

.heading-2 {
  font-size: 2.25rem;
}

.heading-3 {
  font-size: 1.875rem;
}

.heading-4 {
  font-size: 1.5rem;
}

.heading-5 {
  font-size: 1.3rem;
}

.heading-6 {
  font-size: 1.125rem;
}


p {
  font-size: 1.2rem;
  line-height: 1.3rem;
  font-weight: 400;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: #16609f;
  font-weight: 700;
  text-decoration: none;
  display: inline-block
}

ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 3em
}

ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 3em;
  font-size: 1rem;
  line-height: 1.3rem
}

li {
  margin-bottom: .125rem;
  font-size: 1rem;
  line-height: 1.8rem
}

img {
  max-width: 100%;
  display: inline-block
}

strong {
  font-weight: 600
}

sup {
  vertical-align: super;
  font-size: .6em;
  font-weight: 600
}

blockquote {
  color: #0c389f;
  border-left: 5px solid #064dfa;
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding: 1em 1em 1em 1.5em;
  font-size: 1.3em;
  line-height: 1.5em
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-center { text-align: center!important; }

.w-100 { width: 100%!important; }
.d-block { display: block!important; }
.d-inline-block { display: inline-block!important; }

.c-primary { color: rgb(61, 61, 61);!important; }
.c-secondary { color: #000!important; }
.c-white { color: #FFFFFF!important; }

.fw-400 { font-weight: 400!important; }
.fw-500 { font-weight: 500!important; }
.fw-600 { font-weight: 600!important; }
.fw-700 { font-weight: 700!important; }
.fw-800 { font-weight: 800!important; }

.for-desktop-display { display: block; }
.for-desktop-display-flex { display: flex; }
.for-mobile-display { display: none; }
.for-mobile-display-flex { display: none; }

.btn {
  display: inline-block;
  font-size: 1.225rem;
  line-height: 1;
  padding: 1.4rem 1.650rem;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}

.btn-primary {
  position: relative;
  color: #ffffff;
  font-size: 1.275rem;
  line-height: 1;
  font-weight: 600;
  padding: 1.4rem 3rem 1.4rem 1.650rem;
  border-radius: 6px;
  background: #005EA3;
}

.btn-primary:hover {
  background: #1481d1;
}

.btn-secondary {
  color: #000;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  padding: 7px 40px;
  border-radius: 40px;
  background: #5ACC9B;
  text-decoration: none;
  border: 1px solid #5ACC9B;
  touch-action: manipulation;
  transition: 0.3s ease-in-out;
}

.btn-secondary:hover {
  color: #143AA2!important;
  background: #F6F9FC;
  border: 1px solid #143AA2!important;
}

.richtext-module-wrap p,
.richtext-module-wrap  li,
.richtext-module-wrap a {
  font-size: 1.4rem;
  line-height: 1.5rem;
}

.heading-content p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}


.d-flex {
  display: flex;
}

.btns-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}


@media (max-width: 767px) {


  .for-desktop-display { display: none!important; }
  .for-mobile-display { display: block!important; }
  .for-desktop-display-flex { display: none!important }
  .for-mobile-display-flex { display: flex!important }
  
  .heading-1 {
    font-size: 2.25rem;
  }

  .richtext-module-wrap p,
  .richtext-module-wrap  li,
  .richtext-module-wrap a {
    font-size: 1rem;
  }
  
  .btns-wrapper {
    flex-direction: row-reverse;
  }

  .btn {
    font-size: 14px;
    line-height: 20px;
    
  }
  
  .btn-primary {
    background: #005ea3 !important;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    padding: 15px 35px 15px 15px;
  }

  .btn-primary:before {
    width: 12px;
    height: 12px;
    right: 16px;
  }

  .btn-secondary {
    padding: 15px 25px;
  }

}