.how-much-container {
    margin-top: 30px;
}
.how-much-container h2 {
    font-size: 30px;
    line-height: 36px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
}
.how-much-container h2 span {
    color: #2A5298;
    display: block;
}
.how-much-container p {
    font-size: 16px;
    line-height: 30px;
    text-align: center;
}
.calc-with-img img {
    width: 100%;
    height: 100%;
}
.calc-with-img {
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    -moz-transition: all 300ms ease-out;
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;    
}
.calc-title {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    margin: 20px 0px;
    width: 85%;
    position: relative;
}
.calc-with-img .calc-title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 13px;
    margin-top: 12px;
}
.calc-title a {
    color: rgb(33, 37, 41);
    text-decoration: none;
}
.calc-title a:hover {
    color: rgba(42, 82, 152, 1);
}
.calc-description {
    font-size: 14px;
    line-height: 24px;
}
.calc-with-img .calc-description {
    font-size: 14px;
    line-height: 24px;
}
.calc-box {
    border: 1px solid #DDDDDD;
    border-radius: 10px;
    padding-bottom: 88px;
    position: relative;
    margin-bottom: 15px;
    max-height: 230px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    -moz-transition: all 300ms ease-out;
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    -moz-transform: translate3d(0px, 200px, 0px);
    -webkit-transform: translate3d(0px, 200px, 0px);
    -o-transform: translate(0px, 200px);
    -ms-transform: translate(0px, 200px);
    transform: translate3d(0px, 200, 0px);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}
.calc-box.in-view {
    opacity: 1;
    -moz-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate3d(0px, 0px, 0px);
}
.calc-box:hover, .calc-with-img:hover {
    box-shadow: 0px 10px 25px rgba(0,0,0,0.16);
}
.calc-box:hover .calc-title {
    color: rgba(42, 82, 152, 1);
}
.calc-with-img .calc-box {
    border: none;
    margin-bottom: 0px;
    max-height: inherit;
}
.calc-box:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 90px;
    background: -moz-linear-gradient(to bottom, rgba(255,255,255,0.2) 0%,rgba(255,255,255,0.9) 20%, rgba(255,255,255,1) 35%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(to bottom, rgba(255,255,255,0.2) 0%,rgba(255,255,255,0.9) 20%, rgba(255,255,255,1) 35%, rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0.2) 0%,rgba(255,255,255,0.9) 20%, rgba(255,255,255,1) 35%, rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
    bottom: 0px;
    left: 0px;
    z-index: 10;
}
.calc-btn {
    background: url(/images/special-pages/calc_hub/calc_path.svg) no-repeat;
    background-size: contain;
    background-position: bottom right;
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 167px;
    height: 90px;
    z-index: 99;
}
.calc-box .calc-btn a {
    font-size: 14px;
    line-height: 21px;
    font-weight: bold;
    color: #253258;
    text-decoration: none;
    position: absolute;
    bottom: 12px;
    right: 20px;
}
.calc-box .calc-btn a:after {
    border-style: solid;
    border-width: 2px 2px 0 0;
    content: '';
    display: inline-block;
    height: 8px;
    left: 0.15em;
    position: relative;
    top: 6px;
    transform: rotate(-45deg);
    vertical-align: top;
    width: 8px;
    left: 4px;
    transform: rotate(45deg);
    border-color: rgba(37, 50, 88, 1);
}
span.toggle-arrow {
    position: absolute;
    transform: translate(-6px, 0);
    top: 8px;
    right: 10px;
    height: 15px;
    width: 15px;
    cursor: pointer;
}
span.toggle-arrow:before, span.toggle-arrow:after {
    content: "";
    position: absolute;
    background-color: #025596;
    width: 3px;
    height: 12px;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
}
span.toggle-arrow:before {
  transform: translate(-3.5px, 0) rotate(45deg);
}
span.toggle-arrow:after {
  transform: translate(3.5px, 0) rotate(-45deg);
}
.calc-title span.toggle-arrow {
    position: absolute;
    transform: translate(-6px, 0);
    top: 5px;
    right: -20%;
}
.calc-title span.toggle-arrow:before {
    transform: translate(3.5px, 0) rotate(45deg);
}
.calc-title span.toggle-arrow:after {
    transform: translate(-3.5px, 0) rotate(-45deg);
}
.calc-expanded span.toggle-arrow:before {
    transform: translate(-3.5px, 0) rotate(45deg);
}
.calc-expanded span.toggle-arrow:after {
    transform: translate(3.5px, 0) rotate(-45deg);
}
.form-hidden span.toggle-arrow:before {
  transform: translate(3.5px, 0) rotate(45deg);
}
.form-hidden span.toggle-arrow:after {
  transform: translate(-3.5px, 0) rotate(-45deg);
}
.calc-expanded {
    max-height: inherit;
    transition: all 0.3s ease-in-out;
}
.calc-expanded:after {
    content:none;
}
.learn-more-section {
    margin-top: 37.5px;
    padding: 0px;
}
.learn-more-section h2 {
    font-size: 30px;
    line-height: 36px;
    font-weight: bold;
    padding: 0px 16px;
}
.learn-more-section h2 span {
    color: #2A5298;
    display: block;
}
.learn-more-section .sub-text {
    margin-top: 15px;
    font-size: 14px;
    line-height: 24px;
    padding: 0px 16px;
}
.accordian-section {
    width: 100%;
    background: #fff;
    background: url(/images/special-pages/calc_hub/accord_section.png) no-repeat;
    background-size: 238%;
    padding-bottom: 100px;
    background-position: 72%;
    padding-top: 30px;
}
.no-select,.accord-headline {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}
.accord-headline {
    font-size: 16px;
    line-height: 30px;
    color: #333;
    margin-left: 10%;
    position: relative;
    width: 68%;
    font-weight: 600;
}
.accordian-section ul.main-accordian-list li.main-list-element .accordian-content {
    color: #333;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0px;
    position: relative;
    overflow: hidden;
    max-height: 800px;
    background: #F1F1F1;
    z-index: 2;
    padding: 20px 45px 0px 50px;
    box-shadow: 0px -1px 1px rgba(0, 0, 0, 0.16);
}
.accordian-section ul.internal-list {
    list-style-type: disc;
    list-style-position: inside;
    margin-bottom: 25px
}
.accordian-section ul.main-accordian-list {
    list-style: none;
    perspective: 900;
    padding: 0;
    width: 90%;
    overflow: hidden;
    background: #fff;
    margin: 0 auto;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.16);
    border-radius: 8px;
}
.flipIn {
    animation: flipdown 0.5s ease both;
    opacity: 1 !important
}
.accordian-section ul.main-accordian-list li.main-list-element {
    position: relative;
    padding: 0;
    opacity: 0;
    width: 100%;
}
.transition, .accordian-section .accordian-content, .accordian-section ul.main-accordian-list li.main-list-element i:before, .accordian-section ul.main-accordian-list li.main-list-element i:after {
    transition: all 0.2s linear;
}
.accordian-section .flipIn:nth-of-type(1) {
    animation-delay: 0s
}

.accordian-section .flipIn:nth-of-type(2) {
    animation-delay: 0.25s
}

.accordian-section .flipIn:nth-of-type(3) {
    animation-delay: 0.5s
}

.accordian-section .flipIn:nth-of-type(4) {
    animation-delay: 0.75s
}

.accordian-section .flipIn:nth-of-type(5) {
    animation-delay: 1s
}

.accordian-section .flipIn:nth-of-type(6) {
    animation-delay: 1.25s
}

.accordian-section .flipIn:nth-of-type(7) {
    animation-delay: 1.5s
}

.accordian-section .flipIn:nth-of-type(8) {
    animation-delay: 1.75s
}

.accordian-section ul.main-accordian-list li.main-list-element:first-of-type {
    border-top: 0px;
}

.accordian-section ul.main-accordian-list li.main-list-element input[type=checkbox] {
    position: absolute;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 100;
    opacity: 0;
    top: 0;
    max-height: 100px;
}
.calc-accord {
    padding: 18px 0px;
    z-index: 99;
    width: 90%;
    margin: 0 auto;
    border-top: 1px solid #dce7eb;
}
.accordian-section ul.main-accordian-list li.main-list-element input[type=checkbox]:checked~.accordian-content {
    margin-top: 0;
    max-height: 0;
    padding-top: 0px;
}
.accordian-section ul.main-accordian-list li.main-list-element input[type=checkbox]:checked~.calc-accord {
    padding: 18px 0px;
    box-shadow: none;
    border-top: 1px solid #dce7eb;
}
.accordian-section ul.main-accordian-list li.main-list-element:nth-of-type(1) input[type=checkbox]:checked~.calc-accord {
    border-top: none;
}
.accordian-section ul.main-accordian-list li.main-list-element input[type=checkbox]:checked~.calc-accord .accord-headline {
    font-weight: 500;
}
.accordian-section ul.main-accordian-list li.main-list-element input[type=checkbox]:checked~.calc-accord .accord-headline:before {
    content: '';
    position: absolute;
    height: 16px;
    width: 16px;
    background: #6CBDFE;
    border-radius: 50%;
    top: 7px;
    left: -34px;
    opacity: 1;
}
.accordian-section ul.main-accordian-list li.main-list-element input[type=checkbox]:checked~.calc-accord .accord-headline:after {
    content: none;
}
.accord-button {
    position: absolute;
    width: 25px;
    height: 25px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
}
.accord-button:before,.accord-button:after {
    content: "";
    position: absolute;
    background-color: #000000;
    transition: transform 0.25s ease-out
}
.accord-button:before {
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    margin-left: -6%;
}
.accord-button:after {
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    margin-top: -6%;
}
.accord-button:hover {
    cursor: pointer;
}
.opened:before {
    transform: rotate(90deg);
    background: #0A5FA3;
}
.opened:after {
    transform: rotate(180deg);
    background: #0A5FA3;
}
.accord-headline:before {
    content: '';
    position: absolute;
    height: 16px;
    width: 16px;
    background: #0070C9;
    border-radius: 50%;
    top: 7px;
    left: -34px;
    opacity: 1;
    transition: all 0.3s linear;
}
.accord-headline:after {
    content: '';
    height: 24px;
    width: 24px;
    position: absolute;
    border: 1px solid #0070C9;
    border-radius: 50%;
    top: 3px;
    left: -38px;
    transition: all 0.3s linear;
}
@keyframes flipdown {
    0% {
        opacity: 0;
        transform-origin: top center;
        transform: rotateX(-90deg)
    }

    5% {
        opacity: 1
    }

    80% {
        transform: rotateX(8deg)
    }

    83% {
        transform: rotateX(6deg)
    }

    92% {
        transform: rotateX(-3deg)
    }

    100% {
        transform-origin: top center;
        transform: rotateX(0deg)
    }
}

@media screen and (min-width: 768px) {
    .how-much-container {
        margin-top: 60px;
    }
    .how-much-container h2 {
        font-size: 40px;
        line-height: 55px;
    }
    .how-much-container h2 span {
        color: #2A5298;
        display: inline-block;
    }
    .how-much-container p {
        font-size: 20px;
        line-height: 30px;
        width: 75%;
        margin: 0 auto;
        margin-bottom: 40px;
    }
    .calc-with-img {
        margin-bottom: 30px;
    }
    .calc-title {
        font-size: 25px;
        line-height: 37px;
        margin-top: 25px;
        margin-bottom: 15px;
        width: 100%;
    }
    .calc-with-img .calc-title {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 20px;
        margin-top: 30px;
    }
    .calc-description {
        font-size: 14px;
        line-height: 25px;
    }
    .calc-with-img .calc-description {
        font-size: 16px;
        line-height: 30px;
    }
    .calc-box {
        padding-bottom: 85px;
        max-height: inherit;
    }
    .calc-box .calc-btn a {
        font-size: 16px;
        line-height: 24px;
        bottom: 8%;
        right: 10%;
    }
    .calc-box .calc-btn a:after {
        top: 7px
    }
    .calc-box:after {
        content: none;
    }
    .accordian-section {
        width: 75%;
        max-width: 994px;
    }
    .learn-more-parent {
        background: url(/images/special-pages/calc_hub/accord_section.png) no-repeat;
        background-size: 48%;
        background-position: 100% -120px;
    }
    .learn-more-section {
        margin-top: 60px;
    }
    .learn-more-section h2 {
        font-size: 40px;
        line-height: 55px;
        font-weight: bold;
    }
    .learn-more-section h2 span {
        color: #2A5298;
        display: inline-block;
    }
    .learn-more-section .sub-text {
        margin-top: 15px;
        font-size: 16px;
        line-height: 30px;
        width: 60%;
    }
    .accordian-section ul.main-accordian-list li.main-list-element .accordian-content {
        padding: 20px 70px 0px 70px;
    }
    .accord-headline {
        margin-left: 6%;
    }
    .calc-accord {
        width: 96%;
    }
}
@media screen and (min-width: 1024px) {
    .learn-more-parent {
        background-size: 43%;
        background-position: 105% -70px;
    }
    .accordian-section {
        background: none;
    }
    .learn-more-section h2, .learn-more-section .sub-text {
        padding-left: 0px;
    }
    .accordian-section ul.main-accordian-list {
        width: 100%;
    }
    .accord-headline {
        font-size: 18px;
    }
    .accordian-section ul.main-accordian-list li.main-list-element input[type=checkbox] {
        max-height: 80px;
    }
}
@media screen and (min-width: 1600px) {
    .how-much-container {
        margin-top: 79px;
    }
    .how-much-container h2 {
        font-size: 55px;
        line-height: 55px;
    }
    .how-much-container p {
        font-size: 24px;
        line-height: 30px;
        width: 75%;
        margin: 0 auto;
        margin-bottom: 80px;
    }
    .calc-title {
        font-size: 28px;
        line-height: 37px;
        margin-top: 33px;
        margin-bottom: 20px;
    }
    .calc-with-img .calc-title {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 30px;
        margin-top: 51px;
    }
    .calc-description {
        font-size: 16px;
        line-height: 30px;
    }
    .calc-with-img .calc-description {
        font-size: 18px;
        line-height: 36px;
    }
    .calc-box {
        background: none;
        padding-bottom: 125px;
    }
    .calc-btn {
        width: 282px;
        height: 145px;
    }
    .calc-box .calc-btn a {
        font-size: 16px;
        bottom: 25px;
        right: 45px;
    }
    .learn-more-parent {
        background-size: 47%;
        background-position: 100% -120px;
        padding-top: 190.5px;
    }
    .learn-more-section {
        margin-bottom: 72px;
    }
    .learn-more-section h2 {
        font-size: 48px;
        line-height: 55px;
        font-weight: bold;
    }
    .learn-more-section h2 span {
        color: #2A5298;
        display: inline-block;
    }
    .learn-more-section .sub-text {
        margin-top: 20px;
        font-size: 16px;
        line-height: 36px;
    }
}

@media screen and (max-width: 767px) {
    .container {
        width: 100%;
        max-width: 100%;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .calc-box .calc-btn a:after {
        top: 8px;
    }
    .accordian-section {
        background-size: 200% 220%;
        width: 100%;
    }
    .learn-more-parent {
        background: none;
    }
    .learn-more-section {
        padding: 0px;
    }
    .learn-more-section .sub-text {
        width: 100%;
    }
}