@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');
h1 {
  text-transform: initial;
}
.pageSlider {
    min-height: 460px;
    background-size: cover !important;
    border-radius: 10px;
}
.diagSlide img {
    width: 94px;
    margin-bottom: 35px;
}
.diagSlide {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.08) 100%), linear-gradient(0deg, rgba(0, 117, 190, 0.30) 0%, rgba(0, 117, 190, 0.30) 100%), url(../img/diagSlide.png), lightgray -2.608px -161.68px / 121.676% 174.237% no-repeat;
}
.pageSlider {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Montserrat';
    margin-bottom: 100px;
}
.sliderWrap {
    width: 694px;
    padding: 30px 0;
}
.pageSlider h2 {
    margin-bottom: 15px;
    color: #fff !important;
    text-align: center !important;
    line-height: normal !important;
    font-weight: 600 !important;
}
.pageSlider p {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 40px;
}
a.greenButton,
a.blueButton {
    position: relative;
    font-size: 20px;
    line-height: normal;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    background: #6ACB64;
    padding: 18px 55px;
    border-radius: 10px;
}
a.blueButton {
    background-color: #0075BE;
    text-transform: initial;
    font-size: 14px;
}
a.greenButton::after,
a.blueButton::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    border-radius: 10px;
    opacity: 0;
    z-index: 0;
    transition: 200ms;
}
a.greenButton:hover::after,
a.blueButton:hover::after {
    opacity: .1;
}
a.greenButton:hover,
a.blueButton:hover {
    color: #fff;
}

.diagInfo h3 {
    font-family: 'Montserrat';
    margin-bottom: 63px;
    position: relative;
    text-align: center !important;
}
.diagInfo h3::after,
.imgBlockContWrap h4::after {
    content: '';
    position: absolute;
    width: 170px;
    height: 3px;
    bottom: -31px;
    left: 50%;
    transform: translateX(-50%);
    background: #0075BE;
}
.diagInfo {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Montserrat';
    font-size: 18px;
    margin-bottom: 100px;
}
.diagInfo p {
    font-weight: 500;
    margin-bottom: 40px;
    position: relative;
    line-height: normal;
    color: #868686;
    text-align: center;
}
.columnItems {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;
}
.columnItems > div {
    width: 33.33%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    font-size: 16px;
    padding: 20px;
}
.columnItems img {
    margin-bottom: 40px;
    width: 72px;
}
.columnItems p::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #D7D5D5;
    top: -20px;
    left: 0;
}
.imgSection {
    background: #F4F4F4;
    border-radius: 10px;
    display: flex;
    align-items: center;
}
.imgBlock {
    padding: 0;
    position: relative;
    min-height: 420px;
    width: 50%;
}
.imgBlock img {
    border-radius: 10px 0 0 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    height: 100%;
    object-fit: cover;
}
.imgBlockContent {
    display: flex;
    justify-content: center;
}
.imgBlockContWrap h4 {
    text-transform: initial;
    position: relative;
    margin-bottom: 50px;
}
.imgBlockContWrap h4::after {
  bottom: -24px;
}
.imgBlockContWrap ul {
    font-size: 16px;
    font-family: 'Montserrat';
    line-height: normal;
    font-weight: 600;
    color: #4F4F4F;
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding-left: 0;
}
.imgBlockContWrap ul li {
    position: relative;
    padding-left: 45px;
}
.imgBlockContWrap ul li::before {
    content: '';
    background: url(../img/check.svg);
    position: absolute;
    top: -6px;
    left: 0;
    width: 30px;
    height: 30px;
}

.custom-select::after {
    content: '';
    background: url(../img/arrow-down.svg) no-repeat;
    position: absolute;
    right: 15px;
    top: 17px;
    width: 18px;
    height: 18px;
}
.custom-select {
    position: relative;
    width: 100%;
    cursor: pointer;
    font-family: 'Montserrat';
    font-size: 14px;
    color: #000;
    margin-bottom: 40px;
}

.selected-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 15px 8px 15px;
  border: 1px solid #D7D5D5;
  background-color: #FBFBFB;
  min-height: 40px;
  border-radius: 5px;
}

.selected-option span {
  flex: 1;
}

.icon {
  margin-left: 10px;
}

.options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: none;
  max-height: 120px;
  overflow-y: auto;
  border: 1px solid #D7D5D5;
  border-top: none;
  border-radius: 5px;
  background-color: #FBFBFB;
}

.option {
  padding: 10px;
  cursor: pointer;
}

.option:hover {
  background-color: #f0f0f0;
}

.custom-select.active .options {
  display: block;
}















@media (max-width: 992px) {
  .sliderWrap {
    width: initial;
    padding: 30px;
  }
}

@media (min-width: 767px) {
  .diagInfo h3 {
    font-size: 36px !important;
    font-weight: 500 !important;
    line-height: normal !important;
  }
  .imgBlockContWrap h4 {
    font-size: 24px !important;
    line-height: normal !important;
  }
  .pageSlider h2 {
    font-size: 36px !important;
  }
}

@media (max-width: 767px) {
  .diagSlide img {
    width: 66px;
  }
  .pageSlider h2 {
    font-size: 22px !important;
  }
  .pageSlider p {
    font-size: 14px;
  }
  a.greenButton, a.blueButton {
    font-size: 16px;
    padding: 16px 35px;
  }
  .sliderWrap {
    padding: 40px 30px;
  }
  .columnItems > div {
    width: 100%;
  }
  .columnItems {
    flex-direction: column;
    gap: 0;
  }
  .imgSection {
    flex-direction: column;
  }
  .imgBlock img {
    border-radius: 10px 10px 0 0;
    width: 100%;
  }
  .imgBlock {
    width: 100%;
    margin-bottom: 35px;
    min-height: 250px;
  }
  .imgBlockContent {
    padding-bottom: 50px;
  }
  .completeHeading {
    font-size: 24px !important;
  }


}

@media (max-width: 576px) {
  .pageSlider {
    margin: 0px -15px 50px
  }
  .pageSlider {
    border-radius: 0;
  }
  .imgBlock img {
    border-radius: 0;
  }
  .imgSection {
    margin: 0 -30px;
  }
  .imgSection {
    border-radius: 0;
  }
  #diagnosticForm {
    margin: 0 -15px;
  }
  .diagnostic-card {
    padding: 30px 15px 0 !important;
  }
}
























#diagnosticForm {
    display: flex;
    justify-content: center;
}
#diagnosticForm h1 {
    color: #0075be;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 50px;
}
.fs-title {
    font-size: 16px;
    color: #040404;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: left;
}
.diagnostic-card {
    z-index: 0;
    position: relative;
    border: 1px solid #D7D5D5;
    border-radius: 10px;
    padding: 50px 50px 30px 50px;
    width: 570px;
}

#msform {
    text-align: center;
    position: relative;
    margin-top: 20px;
}
#progressbar .active::before {
    border-color: #0075be;
    color: #fff;
}
#progressbar li:before {
    width: 42px;
    height: 42px;
    line-height: 34px;
    display: block;
    font-size: 16px;
    color: #D7D5D5;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
    border: 3px solid #D7D5D5;
    font-weight: bold;
    transition: 500ms;
}
.form-diagnostic-card label {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    line-height: normal;
    font-family: 'Montserrat';
}

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative;
}

.form-diagnostic-card {
    text-align: left;
}

#msform fieldset:not(:first-of-type) {
    display: none;
}

#msform input, #msform textarea {
    padding: 8px 15px 8px 15px;
    border: 1px solid #D7D5D5;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #000;
    background-color: #FBFBFB;
    font-size: 14px;
    border-radius: 5px;
}

#msform input:focus,
#msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline-width: 0;
}

#msform .action-button {
    width: auto;
    background: #0075be;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 10px;
    cursor: pointer;
    padding: 15px 35px;
    margin: 10px 0px 10px 5px;
    float: right;
}

#msform .action-button-previous {
    width: auto;
    background: #FBFBFF;
    font-weight: bold;
    color: #868686;
    border: 1px solid #D7D5D5;
    border-radius: 10px;
    cursor: pointer;
    padding: 15px 35px;
    margin: 10px 5px 10px 0px;
    float: left;
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
    background-color: #f5f5f5;
}


.purple-text {
    color: #0075be;
    font-weight: normal;
}

.steps {
    font-size: 25px;
    color: gray;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right;
}

.fieldlabels {
    color: gray;
    text-align: left;
    width: 100%;
}

#progressbar {
    margin-bottom: 60px;
    overflow: hidden;
    color: lightgrey;
    padding-left: 0;
    display: flex;
    justify-content: space-between;
}

#progressbar .active {
    color: #0075be;
}

#progressbar li {
    list-style-type: none;
    font-size: 14px;
    width: 50px;
    float: left;
    position: relative;
    font-weight: 500;
    font-family: 'Montserrat';
    transition: 500ms;
}

#progressbar #stepOne:before {
    content: "1";
}

#progressbar #stepTwo:before {
    content: "2";
}

#progressbar #stepThree:before {
    content: "3";
}

#progressbar #stepFour:before {
    content: "4";
}

#progressbar li.active:before,
#progressbar li.active:after {
    background: #0075be;
}

.progress {
    height: 20px;
}

.progress-bar {
    background-color: #0075be;
}

.fit-image {
    width: 100%;
    object-fit: cover;
}

.formInlineRadio {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 10px;
}
.formRadio {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}
.form-diagnostic-card input[type='radio'] + label {
    border: 1px solid #D7D5D5;
    border-radius: 5px;
    padding: 11px 15px 11px 35px;
    background: #FBFBFB;
    cursor: pointer;
}

.form-diagnostic-card input[type='radio'] + label:before {
    top: 9px;
    left: 15px;
}

.form-diagnostic-card input[type='radio'] + label:after {
    top: 12px;
    left: 18px;
}
.formRadio {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
}
.formInlineRadio > div {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.requestComplete {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    max-width: 900px;
    margin: auto;
    display: none;
    padding: 50px 0 !important;
}
.requestComplete img {
    width: 58px;
    height: 58px;
    margin-bottom: 30px;
}
.completeHeading {
    font-family: Montserrat;
    font-size: 48px;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    color: #040404;
    margin-bottom: 20px;
}
p.completeDesc {
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    color: #040404;
    text-align: center;
}

#progressbar::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 21px;
    height: 3px;
    background: #cdcdcd;
    width: calc(100% - 42px);
    z-index: -2;
}
#progressbar::after {
    content: '';
    position: absolute;
    height: 3px;
    background: #0075be;
    width: 0%;
    top: 22px;
    left: 21px;
    z-index: -1;
    transition: 1s cubic-bezier(0, 0, 0.2, 1);
}
#progressbar.step2::after {
    width: calc(33% - 11px);
}
#progressbar.step3::after {
    width: calc(66% - 22px);
}
#progressbar.step4::after {
    width: calc(100% - 42px);
}


/*BLOG PAGE*/
.article-description {
    max-width: 770px;
    margin: auto;
}
.article-image img {
    width: 770px;
    height: auto;
    margin-bottom: 30px;
}
article.article-info .article-image img {
    max-width: 100% !important;
}
article.article-info .article-sub-title {
    display: none;
}
article.article-info {
    max-width: 770px;
    margin: auto;
}
.article-title h1 {
    font-size: 30px !important;
    font-weight: 600 !important;
    line-height: normal !important;
    text-align: left !important;
}
.article-description p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 30px;
    padding: 0 !important;
}
.article-description h2 {
    font-size: 24px !important;
    line-height: normal !important;
    font-weight: 600 !important;
    margin-bottom: 30px;
    margin-top: 50px;
}
.article-description h3 {
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: normal !important;
    margin-bottom: 30px;
}
article.article-info ul li {
    list-style: disc;
    margin-top: 0 !important;
    line-height: 22px;
    padding: 0 !important;
}
article.article-info ul li::before {
    display: none;
}
.article-description ul,
.article-description ol {
    padding-left: 25px;
    font-size: 14px;
    line-height: normal;
    font-weight: 400;
    margin-bottom: 30px;
    font-family: 'Roboto', sans-serif;
    margin-top: 30px 0 !important;
}
.article-description ol li {
    margin: 0 !important;
    padding: 0 0 0 17px !important;
    line-height: 22px;
}
.article-description ol {
    padding-left: 10px !important;
}
.article-description ol li:before {
    font-weight: inherit !important;
    font-size: 14px !important;
    color: inherit !important;
}
.article-description ol > li:before, ol > li > li:before {
    content: counters(item, '.') '. ';
    counter-increment: item;
    margin-right: 3px;
}
.article-description blockquote {
    padding: 0 0 0 20px;
    margin: 0 0 30px;
    font-size: 16px !important;
    line-height: normal !important;
    font-style: italic;
    border-left: 3px solid #0075BE;
    font-weight: 400;
}
.article-description button {
    padding: 20px 30px;
    background: linear-gradient(to bottom right, #005A91, #0773BC);
    font-size: 22px;
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
}
.action-bar {
    text-align: center;
    margin-top: 90px;
    margin-bottom: 55px;
}
.article-description button:hover {
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}