:root{
    --primary-color: #2B6CA4;
    --secondary-color: #FE2323;
    --body-color: #000000;
    --footer-bg: #F1F8FF;
}
.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #000;
  margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(253, 181, 18, 0.7);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(253, 181, 18, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(253, 181, 18, 0);
    }
}
@keyframes bounce {
    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1)
    }
    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1)
    }
}

@keyframes grow {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.07);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 1
    }
    75%,
    100% {
        transform: scale(2);
        opacity: 0
    }
}

@keyframes shake {
    0%,
    8%,
    16%,
    24%,
    32%,
    40%,
    48%,
    56%,
    64% {
        transform: rotate(-10deg);
    }
    4%,
    12%,
    20%,
    28%,
    36%,
    44%,
    52%,
    60% {
        transform: rotate(10deg);
    }
    65%,
    100% {
        transform: rotate(0deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg)
    }
}
body {
	background-color: var(--footer-bg);
}
.site-header {
	background-color: var(--body-color);
	padding: 5px 0;
}
.text-only.text-center {
	padding: 50px 0;
	background-color: #ffffff;
}
.text-ncolor {
	color: var(--primary-color);
}
#step_4 .call-section > div {
	padding: 40px;
}
#step_4 .quiz-notice h3 {
	font-size: 25px;
}
#step_4 .questions h2 {
	color: var(--body-color);
}
#step_4 .questions h2 {
	font-size: 40px;
	padding-bottom: 15px;
}
#step_4 .first-text p {
	font-size: 20px;
}
.answer-button button {
	background-color: var(--primary-color);
	padding: 20px;
	margin-bottom: 20px;
	display: block;
	width: 100%;
}
.answer-button button {
	background-color: var(--primary-color);
	border: none;
	color: #ffff;
	font-size: 25px;
	font-weight: 600;
}
.call-button {
	background-color: var(--primary-color);
	margin-bottom: 30px;
}
.call-button a {
	color: #ffffff;
	background-color: var(--primary-color);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 11px 0;
}
.call-button a:hover {
    text-decoration: none;
}
.button-icon {
	width: 40px;
	margin-right: 20px;
	background-image: url("../images/call.png");
	background-size: contain;
	background-position: top center;
	display: block;
	height: 50px;
	background-repeat: no-repeat;
	animation: shake 1.5s ease-in-out 1;
	animation-iteration-count: infinite;
}
.call-text {
	font-size: 25px;
}
.answer-button a {
	background-color: var(--primary-color);
	border: none;
	color: #ffff;
	font-size: 25px;
	font-weight: 600;
}
.progress-color{
    color: var(--primary-color);
}
.site-logo a {
	display: block;
}
.first-text p {
	font-size: 24px;
}
.answer-button {
	padding: 20px 0;
}
.progress {
	overflow: inherit;
	position: relative;
	width: 600px;
}
.questions h2 {
	font-size: 50px;
	padding-bottom: 30px;
	font-weight: 600;
}
#step_4 .call-section.text-only.text-center {
	padding-top: 0;
}
.progress-section {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.progress-bar::after {
	content: '';
	position: absolute;
	height: 30px;
	width: 30px;
	background-color: var(--primary-color);
	right: -4px;
	border-radius: 100px;
}
.progress-bar {
	background-color: var(--primary-color);
	position: relative;
	overflow: inherit;
}
.blue{
    color: var(--primary-color);
}
.site-footer {
	background-color: var(--footer-bg);
	padding: 50px 0 34px 0;
}
.footer-para {
	font-size: 10px;
	padding-top: 30px;
}
.footer-links p a {
	color: var(--body-color);
	font-size: 14px;
}
.site-footer a{
    color: var(--body-color);
}
.footer-img {
	padding-bottom: 10px;
}
.call-section > div {
	background-color: #ffffff;
    padding: 50px;
    border-top: 5px solid var(--primary-color);
}
.free-call {
	font-size: 20px;
	font-weight: 400;
	display: block;
	line-height: 18px;
	width: auto;
	text-align: center;
	text-transform: uppercase;
	margin-right: 15px;
}
.site-logo img {
	width: 275px;
}
.call-button::before {
	content: '';
	position: absolute;
	right: 60px;
	bottom: 103%;
	width: 150px;
	height: 120px;
	background-image: url(../images/curved-arrow.png);
	background-size: contain;
	background-repeat: no-repeat;
	transform: rotate(-1deg);
}
.call-button {
  position: relative;
}

 @media only screen and (max-width: 767px) {
          .site-logo img {
	 width: 230px;
}
.call-button::before {
	right: -44px;
	bottom: 109%;
	width: 100px;
	height: 96px;
	transform: rotate(29deg);
}
     .text-only.text-center {
	padding: 20px 0;
}
    #step_4 .questions h2 {
	font-size: 26px;
	padding-bottom: 0px;
        margin: 0;
}
    #step_4 .questions h3 {
	font-size: 20px;
	padding-bottom: 0;
}
     #step_4 .first-text p {
	font-size: 14px;
}
    #step_4 .call-section > div {
	padding-top: 20px;
}
     #step_4 .quiz-notice h3 {
	font-size: 20px;
}
     .call-section.text-only.text-center {
	padding: 0;
}
     .first-text p {
	font-size: 14px;
}
     .questions h2 {
	font-size: 30px;
	padding-bottom: 20px;
	padding-top: 10px;
}
     .text-only p {
	font-size: 14px;
}
     .answer-button button {
	font-size: 15px;
}
     .quiz-notice h3 {
	font-size: 18px;
}
    .answer-button {
	padding: 20px 0 10px 0;
}
     .text-only {
	padding: 50px 0;
}
     .site-footer {
	padding: 50px 0;
}
     .footer-para {
	padding-top: 30px;
}
     .call-section > div {
	padding: 30px 10px;
}
     .call-section{
	padding: 30px 10px;
}
     .first-text p br {
	display: none;
}
     .call-text {
	font-size: 18px;
}
     .call-section .questions h2 {
	font-size: 22px;
}
     .site-header {
	padding: 15px 0;
}
.free-call {
	font-size: 16px;
}
}