@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

input[type="checkbox"]:before,
input[type="checkbox"]:checked:before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 11px;
}
input[type="checkbox"]:checked:before {
  content: '\2713';
}
input[type="checkbox"] {
  -webkit-appearance: none;
  height: 14px;
  width: 14px;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-left: 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border: 1px solid #FFFFFF;
  border-radius: 3px;
}
input[type=number] {
  -moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
::-webkit-scrollbar {
  width: 5px;
  height: 3px;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: #FFFFFF;
}
::-webkit-scrollbar-thumb {
  background: #024638;
}
body {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  font-family: 'Poppins';
}
p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #070202;
  width: 100%;
  font-weight: 500;
}
p strong,
p b {
  font-weight: 700;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  margin: 0;
}
h2 {
  font-weight: 600;
  font-style: normal;
}
ul {
  width: 100%;
}
ul,
li {
  padding: 0;
  margin: 0;
  color: #070202;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
button {
  border: 0;
  cursor: pointer;
}
.container {
  width: 100%;
}
section {
  display: flex;
  padding: 3rem 1.5rem;
}
.quickbooks .buttons {
  display: flex;
  margin-top: 1.5rem;
}
.quickbooks .buttons .btn-green,
.quickbooks .buttons .btn-white {
  display: flex;
  font-weight: 500;
  padding: 9px 16px;
  align-items: center;
  justify-content: center;
  outline: 0;
  font-size: 14px;
  min-width: 160px;
  border-radius: 30px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.quickbooks .buttons .btn-green::before,
.quickbooks .buttons .btn-white::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 0;
  left: 50%;
  top: 50%;
  box-shadow: 0 0 10px #FFFFFF;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: 1s ease;
  -webkit-transition: 1s;
  z-index: -1;
}
.quickbooks .buttons .btn-green:hover::before,
.quickbooks .buttons .btn-white:hover::before {
  height: 580%;
}
.quickbooks .buttons .btn-green img,
.quickbooks .buttons .btn-white img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.quickbooks .buttons .btn-green {
  background-color: #024638;
  color: #FFFFFF;
}
.quickbooks .buttons .btn-green::before {
  background-image: linear-gradient(140deg, #05C0AD 0%, #40B825 99%);
}
.quickbooks .buttons .btn-white {
  background-color: #FFFFFF;
  color: #070202;
}
.quickbooks .buttons .btn-white::before {
  background-image: linear-gradient(140deg, #E0E0E0, #F5F5F5);
}
@keyframes blink {
  0% {
    opacity: 0.6;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0.6;
    transform: scale(0.8);
  }
}
.quickbooks .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  width: 100%;
}
.quickbooks .heading p {
  margin-top: 1.5rem;
}
.quickbooks .heading h2 {
  width: 100%;
  font-size: 22px;
  position: relative;
}
.quickbooks .heading h2::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/quickbooks/line.svg);
  background-size: 100% 100%;
  height: 8px;
  width: 100px;
  left: 0px;
  bottom: -15px;
}
.quickbooks .center-heading {
  justify-content: center;
  align-items: center;
}
.quickbooks .center-heading h2,
.quickbooks .center-heading p {
  text-align: center;
}
.quickbooks .center-heading h2::before {
  right: 0px;
  margin: auto;
}
.quickbooks .white-heading h2,
.quickbooks .white-heading p {
  color: #FFFFFF;
}
.quickbooks .white-heading h2::before {
  background-image: url(/_public/images/quickbooks/line-white.svg);
}
.quickbooks .banner {
  flex-direction: column;
  background-image: linear-gradient(140deg, #05C0AD 0%, #40B825 99%);
  padding-top: 2rem;
}
.quickbooks .banner .logo-container,
.quickbooks .banner .tka-logo,
.quickbooks .banner .menu,
.quickbooks .banner .menu-toggle {
  display: flex;
}
.quickbooks .banner .logo-container {
  border-bottom: 1px solid #FFFFFF;
}
.quickbooks .banner .logo-container .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
}
.quickbooks .banner .container {
  height: 100%;
}
.quickbooks .banner .tka-logo {
  max-width: 210px;
}
.quickbooks .banner .tka-logo img {
  width: 100%;
  height: 100%;
}
.quickbooks .banner .menu {
  margin-left: auto;
  width: 24px;
  height: 23px;
}
.quickbooks .banner .menu img {
  width: 100%;
  height: 100%;
}
.quickbooks .banner .menu-links {
  width: 0;
  transition: all 0.5s;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 15;
  background-color: #F5F5F5;
}
.quickbooks .banner .menu-toggle {
  font-weight: 500;
}
.quickbooks .banner .menu-toggle img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.quickbooks .banner ul .links-li {
  padding: 8px 0;
  border-bottom: 1px dotted #000000;
}
.quickbooks .banner ul .links-li:first-child {
  padding-top: 0;
}
.quickbooks .banner ul .links-li:nth-last-child(2) {
  border-bottom: none;
  padding-bottom: 0;
}
.quickbooks .banner ul .links-li:last-child {
  display: none;
}
.quickbooks .banner .menu.active + .menu-links {
  padding: 1rem;
  width: 80%;
}
.quickbooks .banner .menu.active + .menu-links .menu-toggle {
  justify-content: flex-end;
  align-items: center;
}
.quickbooks .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: 1s all;
  height: auto;
  background-color: #40B825;
  box-shadow: 0 3px 6px #FFFFFF;
  border-bottom: none;
}
.quickbooks .banner .sticky .container {
  padding: 1rem 1.5rem;
}
.quickbooks .banner .sticky-down {
  top: -100px;
}
.quickbooks .banner .banner-container,
.quickbooks .banner .banner-content,
.quickbooks .banner .flow-content,
.quickbooks .banner .flow-item {
  display: flex;
  flex-direction: column;
}
.quickbooks .banner .banner-container {
  padding-top: 1.5rem;
}
.quickbooks .banner .banner-content .ms-logo {
  width: 125px;
  height: 54px;
}
.quickbooks .banner .banner-content h1 {
  line-height: 1.3;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #FFFFFF;
  font-size: 30px;
}
.quickbooks .banner .banner-content h1 img {
  width: 44px;
  height: 44px;
  margin-right: 0.6rem;
  transform: translateY(10px);
}
.quickbooks .banner .banner-content h3 {
  font-size: 18px;
  margin: 1rem 0;
}
.quickbooks .banner .banner-content h3,
.quickbooks .banner .banner-content p {
  color: #FFFFFF;
}
.quickbooks .banner .banner-content .smoothscroll {
  display: none;
}
.quickbooks .banner .banner-info {
  display: flex;
  margin-top: 2rem;
  height: 100%;
  background-color: #FFFFFF;
  border-radius: 25px;
  padding: 1rem;
  border-top: 6px solid #05C0AD;
}
.quickbooks .banner .banner-info img {
  width: 100%;
  height: 100%;
}
.quickbooks .banner .flow-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.quickbooks .banner .flow-content {
  margin-top: 2rem;
}
.quickbooks .banner .flow-content .heading {
  margin-bottom: 0;
}
.quickbooks .banner .flow-content .heading h2::before {
  content: none;
}
.quickbooks .banner .flow-content .flow-item {
  margin-top: 1rem;
  color: #FFFFFF;
  align-items: center;
  width: 45%;
}
.quickbooks .banner .flow-content .flow-item:last-child::before {
  content: none;
}
.quickbooks .banner .flow-content .flow-item img {
  height: 80px;
  width: 80px;
}
.quickbooks .banner .flow-content .flow-item h3 {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 15px;
  font-weight: 500;
}
.quickbooks .overview {
  padding-bottom: 0;
}
.quickbooks .overview .overview-container,
.quickbooks .overview .overview-content,
.quickbooks .overview .course-content,
.quickbooks .overview .course-info {
  display: flex;
  flex-direction: column;
}
.quickbooks .overview .overview-content {
  align-items: center;
}
.quickbooks .overview .overview-content p {
  text-align: center;
}
.quickbooks .overview .overview-content p:nth-child(3) {
  margin-top: 0.5rem;
}
.quickbooks .overview .course-info {
  margin-top: 2rem;
}
.quickbooks .overview .course-content {
  padding: 1.5rem;
  align-items: center;
  box-shadow: 3px 3px 25px rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  background-color: #FFFFFF;
}
.quickbooks .overview .course-content .book {
  height: 68px;
  width: 68px;
}
.quickbooks .overview .course-content h3,
.quickbooks .overview .course-content p {
  text-align: center;
}
.quickbooks .overview .course-content h3 {
  font-size: 16px;
  margin: 1.4rem 0 1.2rem;
}
.quickbooks .overview .course-content p {
  color: #A5A1A1;
  line-height: 1.5;
}
.quickbooks .overview .course-content p:nth-child(4) {
  margin-top: 0.3rem;
}
.quickbooks .course .course-container,
.quickbooks .course .course-list,
.quickbooks .course .info {
  display: flex;
  flex-direction: column;
}
.quickbooks .course .heading {
  margin-bottom: 0;
}
.quickbooks .course .heading p {
  margin: 0 0 0.2rem 0;
}
.quickbooks .course .heading p strong {
  color: #024638;
}
.quickbooks .course .course-item {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding: 1.2rem 1rem;
  background-color: #F5F5F5;
  background-image: linear-gradient(140deg, #05C0AD 0%, #40B825 99%);
  background-size: 100% 0 ;
  border: 1px solid #A5A1A1;
  background-repeat: no-repeat;
  border-radius: 8px;
  transition: 1s all;
}
.quickbooks .course .course-item img {
  transition: 1.5s all;
  height: 100%;
  width: 100%;
}
.quickbooks .course .course-item img:last-child {
  height: 0;
  width: 0;
}
.quickbooks .course .course-item .image,
.quickbooks .course .course-item .btn-green {
  transition: 1s all;
}
.quickbooks .course .course-item .image {
  display: none;
}
.quickbooks .course .course-item .info {
  width: 100%;
}
.quickbooks .course .course-item .info h3 {
  font-size: 15px;
  font-weight: 500;
}
.quickbooks .course .course-item .info p {
  color: #A5A1A1;
  font-size: 12px;
  line-height: 1.4;
}
.quickbooks .course .course-item .info p:nth-child(2) {
  margin: 0.4rem 0 0.2rem;
}
.quickbooks .course .course-item .info h3,
.quickbooks .course .course-item .info p {
  transition: 1s all;
}
.quickbooks .course .course-item .buttons {
  margin-top: 1rem;
}
.quickbooks .course .course-item .buttons .btn-green {
  min-width: 135px;
  font-size: 13px;
}
.quickbooks .course .course-item .buttons .btn-green::before {
  content: none;
}
.quickbooks .course .course-item .buttons .btn-green span {
  display: flex;
  height: 15px;
  width: 15px;
  margin-right: 8px;
}
.quickbooks .course .course-item .buttons .btn-green span img {
  margin-right: 0;
}
.quickbooks .course .course-item:hover {
  background-color: transparent;
  background-size: 100% 100%;
  border: 1px solid transparent;
}
.quickbooks .course .course-item:hover img:first-child {
  height: 0;
  width: 0;
}
.quickbooks .course .course-item:hover img:last-child {
  height: 100%;
  width: 100%;
}
.quickbooks .course .course-item:hover .info h3,
.quickbooks .course .course-item:hover .info p {
  color: #FFFFFF;
}
.quickbooks .course .course-item:hover .buttons .btn-green {
  background-color: #FFFFFF;
  color: #070202;
}
.quickbooks .feature {
  background-image: url(/_public/images/quickbooks/feature-bg.png);
  background-size: cover;
  background-position: center;
}
.quickbooks .feature .feature-container,
.quickbooks .feature .feature-content {
  display: flex;
  flex-direction: column;
}
.quickbooks .feature .feature-content p,
.quickbooks .feature .feature-content li {
  color: #FFFFFF;
}
.quickbooks .feature .feature-content ul li {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.quickbooks .feature .feature-content ul li::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #FFFFFF;
  border-radius: 20px;
  left: 0;
  top: 5px;
  border: 2px solid #024638;
}
.quickbooks .feature .feature-info {
  display: flex;
  background-color: #FFFFFF;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 2rem;
  height: 100%;
}
.quickbooks .feature .feature-info img {
  width: 100%;
  height: 100%;
}
.quickbooks .method .method-container,
.quickbooks .method .method-list,
.quickbooks .method .method-item,
.quickbooks .method .info,
.quickbooks .method .icon {
  display: flex;
  flex-direction: column;
}
.quickbooks .method .heading {
  margin-bottom: 0;
}
.quickbooks .method .method-item {
  margin-top: 2rem;
}
.quickbooks .method .method-item .image {
  display: flex;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  background-image: url(/_public/images/quickbooks/classroom-bg.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  width: 100%;
  height: 170px;
  border-radius: 10px 10px 0 0;
  position: relative;
}
.quickbooks .method .method-item .image::before {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-image: linear-gradient(140deg, #05C0AD 0%, #40B825 99%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: 0.8s all;
  border-radius: 10px 10px 0 0;
  opacity: 0.7;
}
.quickbooks .method .method-item:nth-child(2) .image {
  background-image: url(/_public/images/quickbooks/led-bg.png);
}
.quickbooks .method .method-item:nth-child(3) .image {
  background-image: url(/_public/images/quickbooks/paced-bg.png);
}
.quickbooks .method .method-item:last-child .image {
  background-image: url(/_public/images/quickbooks/onsite-bg.png);
}
.quickbooks .method .method-item .method-info {
  display: flex;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.16);
  border-radius: 0px 0px 10px 10px;
}
.quickbooks .method .method-item .info {
  padding: 1rem 0.6rem;
  width: calc(100% - 50px);
}
.quickbooks .method .method-item .info h3 {
  font-size: 15px;
}
.quickbooks .method .method-item .info p {
  font-size: 13px;
  padding-top: 0.6rem;
  margin-top: 0.6rem;
  line-height: 1.5;
  border-top: 1px solid #E0E0E0;
}
.quickbooks .method .method-item .icon {
  width: 60px;
  border-left: 1px solid #E0E0E0;
}
.quickbooks .method .method-item .icon span,
.quickbooks .method .method-item .icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
}
.quickbooks .method .method-item .icon span {
  height: calc(100% - 40px);
  background-color: #F5F5F5;
}
.quickbooks .method .method-item .icon span img {
  width: 35px;
  height: 35px;
}
.quickbooks .method .method-item .icon a {
  height: 40px;
  border-bottom-right-radius: 10px;
  border-top: 1px solid #E0E0E0;
}
.quickbooks .method .method-item .icon a img {
  width: 16px;
  height: 16px;
}
.quickbooks .method .method-item:hover .image::before {
  width: 100%;
  height: 100%;
}
.quickbooks .fact {
  background-color: #F5F5F5;
  background-image: linear-gradient(140deg, #05C0AD 0%, #40B825 99%);
  background-repeat: no-repeat;
  background-size: 100% 8px;
  background-position: bottom;
}
.quickbooks .fact .heading {
  margin-bottom: 0;
}
.quickbooks .fact .fact-container {
  display: flex;
  flex-direction: column;
}
.quickbooks .fact .fact-list,
.quickbooks .fact .fact-item {
  display: flex;
  flex-wrap: wrap;
}
.quickbooks .fact .fact-list {
  justify-content: space-around;
  counter-reset: counter;
}
.quickbooks .fact .fact-item {
  justify-content: center;
  width: 36%;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}
.quickbooks .fact .fact-item::before {
  content: counter(counter, decimal-leading-zero);
  display: flex;
  justify-content: center;
  position: absolute;
  counter-increment: counter;
  top: -50px;
  left: 0;
  right: 0;
  font-size: 55px;
  color: #E0E0E0;
  font-weight: 600;
  opacity: 0.2;
  z-index: -1;
}
.quickbooks .fact .fact-item h3,
.quickbooks .fact .fact-item span {
  font-size: 30px;
  font-weight: 600;
}
.quickbooks .fact .fact-item p {
  line-height: 1.5;
  position: relative;
  margin-top: 1rem;
  text-align: center;
}
.quickbooks .fact .fact-item p::before {
  content: '';
  position: absolute;
  background-image: linear-gradient(0deg, #05C0AD, #40B825);
  background-size: 100% 100%;
  width: 60px;
  height: 3px;
  left: 0;
  right: 0;
  margin: auto;
  top: -10px;
}
.quickbooks .benefit {
  padding-bottom: 0;
}
.quickbooks .benefit .benefit-container,
.quickbooks .benefit .benefit-content,
.quickbooks .benefit .benefit-info {
  display: flex;
  flex-direction: column;
}
.quickbooks .benefit .benefit-content ul li {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.quickbooks .benefit .benefit-content ul li::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #024638;
  border-radius: 20px;
  left: 0;
  top: 3px;
  border: 2px solid #05C0AD;
}
.quickbooks .benefit .benefit-info {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.16);
  padding: 1rem;
  margin-top: 2rem;
  height: 100%;
  border-radius: 15px;
}
.quickbooks .benefit .benefit-info img {
  width: 100%;
  height: 100%;
}
.quickbooks .choose .choose-container,
.quickbooks .choose .choose-list,
.quickbooks .choose .choose-item {
  display: flex;
  flex-direction: column;
}
.quickbooks .choose .heading {
  margin-bottom: 0;
}
.quickbooks .choose .choose-item {
  margin-top: 2rem;
  padding: 1.8rem 1.3rem;
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  width: 96%;
  position: relative;
  border-radius: 12px;
  background-image: url(/_public/images/quickbooks/choose-bg.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 110px 110px;
}
.quickbooks .choose .choose-item::before {
  position: absolute;
  content: '';
  background-image: linear-gradient(140deg, #05C0AD 0%, #40B825 99%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  height: calc(100% + 10px);
  width: calc(100% + 10px);
  top: 0;
  left: 0;
  border-radius: 12px;
  z-index: -1;
}
.quickbooks .choose .choose-item img {
  width: 60px;
  height: 60px;
}
.quickbooks .choose .choose-item h3 {
  font-size: 15px;
  margin: 1.5rem 0 1rem;
}
.quickbooks .choose .choose-item p {
  font-size: 13px;
  line-height: 1.5;
}
.quickbooks .difference {
  background-image: linear-gradient(140deg, #05C0AD 0%, #40B825 99%);
}
.quickbooks .difference .difference-container,
.quickbooks .difference .difference-list,
.quickbooks .difference .item,
.quickbooks .difference ul {
  display: flex;
  flex-direction: column;
}
.quickbooks .difference .heading {
  margin-bottom: 0;
}
.quickbooks .difference .item {
  margin-top: 2rem;
}
.quickbooks .difference .item h3 {
  color: #FFFFFF;
  background-color: #024638;
  font-size: 16px;
  padding: 0.5rem;
  border-radius: 10px;
  text-align: center;
  transform: translateY(5px);
  position: relative;
}
.quickbooks .difference .item h3::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 22px solid #024638;
  left: 0px;
  bottom: -21px;
  right: 0px;
  margin: auto;
}
.quickbooks .difference .item ul {
  border: 1px solid #FFFFFF;
  border-top: none;
  border-radius: 0px 0px 10px 10px;
  padding: 1.5rem 1rem;
}
.quickbooks .difference .item ul li {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  border-top: 1px solid #FFFFFF;
  margin-top: 0.6rem;
  padding-top: 0.8rem;
  font-weight: 600;
  font-size: 15px;
}
.quickbooks .difference .item ul li:first-child {
  border-top: none;
  margin-top: 0;
}
.quickbooks .difference .item ul li img {
  min-width: 30px;
  height: 30px;
  margin-right: 1.2rem;
}
.quickbooks .review .review-container,
.quickbooks .review .review-list,
.quickbooks .review .content,
.quickbooks .review .info,
.quickbooks .review .review-item {
  display: flex;
  flex-direction: column;
}
.quickbooks .review .review-item {
  border: 2px solid #024638;
  padding: 1rem;
  width: 95%;
  margin-right: auto;
}
.quickbooks .review .review-item .info span img {
  width: 100%;
  height: 100%;
}
.quickbooks .review .review-item .info .user {
  display: flex;
  width: 90px;
  height: 90px;
  background-image: linear-gradient(#FFFFFF, #FFFFFF), linear-gradient(0deg, #40B825, #05C0AD);
  border: 8px solid transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: 100px;
  padding: 0.8rem;
}
.quickbooks .review .review-item .info h3 {
  font-size: 17px;
  margin: 0.8rem 0 0.2rem;
  color: #024638;
}
.quickbooks .review .review-item .info h4 {
  font-size: 13px;
  font-weight: 500;
}
.quickbooks .review .review-item .info .stars {
  display: flex;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.16);
  width: 115px;
  height: 25px;
  padding: 0.3rem 0.2rem;
  margin: 0.8rem 0 1.5rem;
}
.quickbooks .review .review-item .content p {
  font-size: 13px;
}
.quickbooks .review .owl-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  width: 100px;
}
.quickbooks .review .owl-nav .owl-prev,
.quickbooks .review .owl-nav .owl-next {
  display: flex;
  background-image: url(/_public/images/quickbooks/nav-arrow.svg);
  background-size: 100% 100%;
  height: 37px;
  width: 37px;
  opacity: 0.7;
}
.quickbooks .review .owl-nav .owl-next {
  transform: rotate(180deg);
}
.quickbooks .review .owl-nav .btn-active {
  opacity: 1;
}
.quickbooks .footer {
  padding-top: 0;
}
.quickbooks .footer .footer-container,
.quickbooks .footer .footer-content,
.quickbooks .footer .faq-list,
.quickbooks .footer .faq-content,
.quickbooks .footer .faq-item,
.quickbooks .footer .footer-list {
  display: flex;
  flex-direction: column;
}
.quickbooks .footer .faq-item {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  padding: 1rem;
  border: 1px solid transparent;
  transition: 1s all;
  margin-top: 1.2rem;
  border-radius: 2px;
}
.quickbooks .footer .faq-item .ques {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.quickbooks .footer .faq-item .ques h3 {
  font-size: 14px;
  width: calc(100% - 25px);
}
.quickbooks .footer .faq-item .ques span {
  display: flex;
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
}
.quickbooks .footer .faq-item .ques span img {
  width: 100%;
  height: 100%;
  transition: 1s all;
}
.quickbooks .footer .faq-item .ques span img:last-child {
  width: 0;
}
.quickbooks .footer .faq-item .ans {
  display: none;
  margin-top: 0.8rem;
}
.quickbooks .footer .faq-item .ans li,
.quickbooks .footer .faq-item .ans p {
  font-size: 13px;
}
.quickbooks .footer .faq-item .ans ul {
  padding-left: 1rem;
}
.quickbooks .footer .faq-item .ans ul li {
  margin-top: 0.5rem;
  list-style: disc;
}
.quickbooks .footer .faq-item.active {
  border: 1px solid #A5A1A1;
  border-radius: 6px;
}
.quickbooks .footer .faq-item.active .ques span img:first-child {
  width: 0;
}
.quickbooks .footer .faq-item.active .ques span img:last-child {
  width: 100%;
}
.quickbooks .footer .form {
  margin-top: 2rem;
  margin-bottom: 0;
  padding: 1.5rem 1rem;
  border-radius: 20px;
  background-image: linear-gradient(140deg, #05C0AD 0%, #40B825 99%);
}
.quickbooks .footer .form .input-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
  padding: 0.6rem 0.8rem;
  border-radius: 4px;
  background-color: #F5F5F5;
  border: 1px solid transparent;
}
.quickbooks .footer .form .input-container span {
  display: flex;
  width: 15px;
  height: 15px;
}
.quickbooks .footer .form .input-container span img {
  width: 100%;
  height: 100%;
}
.quickbooks .footer .form .input-container span img:last-child {
  display: none;
}
.quickbooks .footer .form .input-container input,
.quickbooks .footer .form .input-container textarea {
  width: 85%;
  border: none;
  outline: none;
  padding: 0;
  background-color: transparent;
}
.quickbooks .footer .form .input-container textarea {
  height: 50px;
  resize: none;
  overflow: auto;
}
.quickbooks .footer .form .input-container ::-webkit-input-placeholder {
  /* Edge */
  color: #707070;
}
.quickbooks .footer .form .input-container :-ms-input-placeholder {
  /* Edge */
  color: #707070;
}
.quickbooks .footer .form .input-container ::placeholder {
  color: #707070;
}
.quickbooks .footer .form .input-container:nth-child(6) {
  align-items: flex-start;
}
.quickbooks .footer .form .input-error {
  border: 1px solid #ff0000;
}
.quickbooks .footer .form .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.quickbooks .footer .form .input-error :-ms-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.quickbooks .footer .form .input-error ::placeholder {
  color: #ff0000;
}
.quickbooks .footer .form .input-error span img:first-child {
  display: none;
}
.quickbooks .footer .form .input-error span img:last-child {
  display: flex;
}
.quickbooks .footer .form .form-consent {
  display: flex;
  margin-bottom: 0.5rem;
}
.quickbooks .footer .form .form-consent p {
  font-size: 11px;
  color: #FFFFFF;
}
.quickbooks .footer .form .form-consent a {
  font-weight: 600;
  color: #024638;
}
.quickbooks .footer .form .form-consent label {
  display: flex;
  align-self: center;
  cursor: pointer;
  margin-left: 0.3rem;
  line-height: 1.6;
  font-size: 11px;
  width: 90%;
  font-weight: 500;
  color: #FFFFFF;
}
.quickbooks .footer .form .form-consent:nth-last-child(2) {
  margin-bottom: 0;
}
.quickbooks .footer .form .consent-error,
.quickbooks .footer .form .consent-error-other {
  margin-bottom: 0.5rem;
}
.quickbooks .footer .form .consent-error p,
.quickbooks .footer .form .consent-error-other p {
  color: #ff0000;
  line-height: 1.4;
  font-size: 11px;
}
.quickbooks .footer .form .buttons {
  justify-content: center;
}
.quickbooks .footer .form .buttons .btn-green {
  min-width: 135px;
}
.quickbooks .footer .form .buttons .btn-green img {
  width: 16px;
  height: 16px;
}
.quickbooks .footer .footer-content {
  background-color: #070202;
  padding: 1.5rem 1rem;
  margin-top: 2rem;
  border-radius: 10px;
}
.quickbooks .footer .footer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.quickbooks .footer .footer-item:last-child {
  margin-top: 1rem;
}
.quickbooks .footer .footer-item span {
  display: flex;
  width: 28px;
  height: 28px;
}
.quickbooks .footer .footer-item span img {
  width: 100%;
  height: 100%;
}
.quickbooks .footer .footer-item .info {
  width: calc(100% - 40px);
}
.quickbooks .footer .footer-item .info h3,
.quickbooks .footer .footer-item .info a {
  color: #FFFFFF;
}
.quickbooks .footer .footer-item .info h3 {
  font-size: 15px;
}
.quickbooks .footer .footer-item .info a {
  font-size: 12px;
  font-weight: 500;
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .quickbooks .banner .banner-content h1 {
    color: #FFFFFF;
  }
}
@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }
  .quickbooks .banner .menu.active + .menu-links {
    width: 50%;
  }
  .quickbooks .banner .sticky .container {
    padding: 1rem 2rem;
  }
  .quickbooks .banner .banner-container {
    padding-top: 3rem;
  }
  .quickbooks .banner .banner-content h1 {
    font-size: 35px;
  }
  .quickbooks .banner .banner-info {
    display: none;
  }
  .quickbooks .banner .flow-content h2,
  .quickbooks .banner .flow-content p {
    text-align: left;
  }
  .quickbooks .banner .flow-content .flow-list {
    justify-content: space-between;
  }
  .quickbooks .banner .flow-content .flow-item {
    width: 30%;
    margin-top: 2rem;
  }
  .quickbooks .banner .flow-content .flow-item h3 {
    font-size: 18px;
  }
  .quickbooks .overview .heading h2::before {
    right: auto;
  }
  .quickbooks .overview .overview-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .quickbooks .overview .overview-content {
    width: 48%;
    align-items: flex-start;
  }
  .quickbooks .overview .overview-content h2,
  .quickbooks .overview .overview-content p {
    text-align: left;
  }
  .quickbooks .overview .course-info {
    border: 2px solid #40B825;
    border-radius: 8px;
    width: 42%;
    position: sticky;
    top: 60px;
    margin-top: 0;
    transform: translate(-28px, 0px);
  }
  .quickbooks .overview .course-content {
    padding: 2.5rem 1rem;
    transform: translate(28px, 25px);
  }
  .quickbooks .course .course-list {
    flex-flow: wrap;
    justify-content: center;
  }
  .quickbooks .course .course-item {
    width: 47%;
    margin-right: 2rem;
  }
  .quickbooks .course .course-item:hover .image {
    box-shadow: 0 0 4px #FFFFFF;
    background-image: linear-gradient(140deg, #05C0AD 0%, #40B825 99%);
  }
  .quickbooks .course .course-item .image {
    display: flex;
    width: 75px;
    padding: 1rem;
    background-color: #FFFFFF;
    border-radius: 12px;
  }
  .quickbooks .course .course-item .info {
    width: calc(100% - 98px);
  }
  .quickbooks .course .course-item .info h3 {
    min-height: 46px;
  }
  .quickbooks .course .course-item:nth-child(2n) {
    margin-right: 0;
  }
  .quickbooks .feature .feature-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .quickbooks .feature .feature-content {
    width: 50%;
  }
  .quickbooks .feature .feature-info {
    width: 45%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .quickbooks .method .heading h2,
  .quickbooks .method .heading p {
    text-align: center;
  }
  .quickbooks .method .heading h2::before {
    right: 0;
    margin: auto;
  }
  .quickbooks .method .method-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .quickbooks .method .method-item {
    width: 46%;
  }
  .quickbooks .method .method-item .info p {
    min-height: 88px;
  }
  .quickbooks .fact .heading {
    display: none;
  }
  .quickbooks .fact .fact-list {
    flex-direction: row;
    justify-content: space-between;
  }
  .quickbooks .fact .fact-item {
    width: 24%;
    margin-top: 1rem;
  }
  .quickbooks .benefit .benefit-container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .quickbooks .benefit .benefit-content {
    width: 48%;
  }
  .quickbooks .benefit .benefit-info {
    margin-top: 0;
    width: 45%;
    position: sticky;
    top: 0;
  }
  .quickbooks .choose .heading h2,
  .quickbooks .choose .heading p {
    text-align: center;
  }
  .quickbooks .choose .heading h2::before {
    right: 0;
    margin: auto;
  }
  .quickbooks .choose .choose-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .quickbooks .choose .choose-item {
    width: 45%;
  }
  .quickbooks .difference .difference-list {
    flex-direction: row;
    justify-content: space-between;
  }
  .quickbooks .difference .item {
    width: 47%;
  }
  .quickbooks .difference .item ul li {
    min-height: 74px;
  }
  .quickbooks .review .review-item .content p {
    min-height: 250px;
  }
  .quickbooks .footer .footer-container {
    flex-flow: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  .quickbooks .footer .faq-content {
    width: 50%;
  }
  .quickbooks .footer .form {
    width: 45%;
    margin-top: 0;
  }
  .quickbooks .footer .footer-content {
    width: 100%;
  }
  .quickbooks .footer .footer-list {
    flex-direction: row;
    justify-content: space-between;
  }
  .quickbooks .footer .footer-item {
    width: 30%;
  }
  .quickbooks .footer .footer-item:last-child {
    margin-top: 0;
    width: 60%;
  }
  .quickbooks .footer .footer-item span {
    width: 60px;
    height: 60px;
    background-image: linear-gradient(#FFFFFF, #FFFFFF), linear-gradient(0deg, #40B825, #05C0AD);
    border: 4px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 0.8rem;
    border-radius: 50px;
  }
  .quickbooks .footer .footer-item .info {
    width: calc(100% - 75px);
  }
}
@media (min-width : 1024px) {
  p,
  li {
    line-height: 1.8;
  }
  .quickbooks .heading h2 {
    font-size: 28px;
  }
  .quickbooks .buttons .btn-green,
  .quickbooks .buttons .btn-white {
    font-size: 16px;
  }
  .quickbooks .banner {
    background-image: url(/_public/images/quickbooks/banner-bg.png);
    background-size: 100% 100%;
    position: relative;
    padding-bottom: 10rem;
  }
  .quickbooks .banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(/_public/images/quickbooks/arrow-bg.png);
    background-size: 100% 100%;
    height: 502px;
    width: 340px;
  }
  .quickbooks .banner .menu-links {
    display: flex;
    width: auto;
    background-color: transparent;
    align-items: center;
    box-shadow: none;
    position: relative;
  }
  .quickbooks .banner .logo-container {
    border-bottom: none;
    padding-bottom: 0;
  }
  .quickbooks .banner .tka-logo {
    max-width: 235px;
  }
  .quickbooks .banner .menu,
  .quickbooks .banner .menu-toggle {
    display: none;
  }
  .quickbooks .banner ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .quickbooks .banner ul .links-li {
    border-bottom: none;
    margin-right: 1rem;
    font-size: 15px;
    cursor: pointer;
    color: #FFFFFF;
    transition: 1s all;
    padding: 0;
    position: relative;
  }
  .quickbooks .banner ul .links-li::before {
    content: '';
    position: absolute;
    background: #024638;
    border-radius: 50px;
    width: 0px;
    height: 2px;
    left: 0;
    right: 0px;
    margin: auto;
    bottom: 1px;
    transition: 1s all;
  }
  .quickbooks .banner ul .links-li:hover::before {
    width: 100%;
  }
  .quickbooks .banner ul .links-li:nth-child(4) {
    display: none;
  }
  .quickbooks .banner ul .links-li:last-child {
    display: flex;
    margin: 0;
  }
  .quickbooks .banner ul .links-li:last-child::before {
    content: none;
  }
  .quickbooks .banner ul .links-li:last-child .btn-white,
  .quickbooks .banner ul .links-li:last-child .btn-green {
    height: 45px;
    min-width: 164px;
  }
  .quickbooks .banner ul .links-li:last-child .btn-white {
    margin-right: 1rem;
  }
  .quickbooks .banner .sticky ul .links-li::before {
    bottom: -8px;
  }
  .quickbooks .banner .banner-container {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .quickbooks .banner .banner-content {
    width: 50%;
  }
  .quickbooks .banner .banner-content h1 {
    font-size: 50px;
  }
  .quickbooks .banner .banner-content h1 img {
    width: 55px;
    height: 55px;
  }
  .quickbooks .banner .banner-content .smoothscroll {
    display: flex;
    position: absolute;
    bottom: 17%;
    left: 6%;
    width: 100px;
    height: 100px;
    border: 3px solid #070202;
    border-radius: 100px;
    padding: 1.2rem;
  }
  .quickbooks .banner .banner-content .smoothscroll img {
    height: 100%;
    width: 100%;
    transform: rotate(90deg);
  }
  .quickbooks .banner .banner-info {
    display: flex;
    margin-top: 0;
    width: 45%;
    padding: 2rem;
  }
  .quickbooks .banner .flow-content {
    width: 78%;
    margin-left: auto;
  }
  .quickbooks .banner .flow-content .heading {
    flex-direction: row;
    justify-content: space-between;
  }
  .quickbooks .banner .flow-content .heading h2 {
    width: 25%;
  }
  .quickbooks .banner .flow-content .heading p {
    width: 70%;
    margin-top: 0;
  }
  .quickbooks .banner .flow-content .flow-item {
    position: relative;
  }
  .quickbooks .banner .flow-content .flow-item::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -87px;
    height: 35px;
    width: 140px;
    background-image: url(/_public/images/quickbooks/curve-line.png);
    background-size: 100% 100%;
  }
  .quickbooks .banner .flow-content .flow-item img {
    height: 100px;
    width: 100px;
  }
  .quickbooks .overview {
    position: relative;
    z-index: 1;
  }
  .quickbooks .overview::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 0;
    height: 600px;
    width: 600px;
    background-image: url(/_public/images/quickbooks/circle.png);
    background-size: 100% 100%;
    animation: blink 5s linear infinite;
    z-index: -1;
  }
  .quickbooks .overview .overview-container {
    align-items: center;
  }
  .quickbooks .overview .overview-content {
    width: 55%;
  }
  .quickbooks .overview .course-info {
    width: 35%;
    position: static;
  }
  .quickbooks .overview .course-content {
    padding: 2.8rem 2.5rem 3.2rem;
    background-image: url(/_public/images/quickbooks/overview-bg.png);
    background-size: contain;
    background-position: center;
  }
  .quickbooks .overview .course-content h3 {
    font-size: 20px;
  }
  .quickbooks .course .course-item {
    width: 42%;
  }
  .quickbooks .course .course-item .info h3 {
    font-size: 17px;
    min-height: 50px;
  }
  .quickbooks .feature .feature-content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .quickbooks .feature .feature-content ul li {
    width: 48%;
  }
  .quickbooks .method .method-list {
    width: 86%;
    margin: auto;
  }
  .quickbooks .fact {
    padding-top: 4rem;
  }
  .quickbooks .fact .fact-list {
    width: 90%;
    margin: auto;
  }
  .quickbooks .fact .fact-item::before {
    font-size: 85px;
    top: -72px;
  }
  .quickbooks .fact .fact-item h3,
  .quickbooks .fact .fact-item span {
    font-size: 40px;
  }
  .quickbooks .fact .fact-item p {
    font-size: 15px;
  }
  .quickbooks .choose .heading {
    width: 85%;
    margin: auto;
  }
  .quickbooks .choose .choose-list {
    justify-content: space-between;
    width: 90%;
    margin: auto;
  }
  .quickbooks .choose .choose-item {
    width: 48%;
  }
  .quickbooks .difference {
    background-image: url(/_public/images/quickbooks/difference-bg.png);
    background-size: 100% 100%;
  }
  .quickbooks .difference .difference-container {
    width: 93%;
    margin: auto;
  }
  .quickbooks .difference .item h3 {
    font-size: 22px;
  }
  .quickbooks .difference .item ul {
    counter-reset: counter;
    padding: 2rem 1.5rem;
  }
  .quickbooks .difference .item ul li {
    position: relative;
    padding: 1.2rem 3.5rem 0 0;
  }
  .quickbooks .difference .item ul li::before {
    content: counter(counter, decimal-leading-zero);
    position: absolute;
    counter-increment: counter;
    font-size: 48px;
    color: #FFFFFF;
    opacity: 8%;
    right: 0px;
    bottom: -26px;
    font-weight: 500;
    width: 54px;
  }
  .quickbooks .difference .item ul li img {
    min-width: 40px;
    height: 40px;
  }
  .quickbooks .review {
    background-image: url(/_public/images/quickbooks/review-bg.png);
    background-size: 100% 100%;
  }
  .quickbooks .review .heading,
  .quickbooks .review .content {
    margin-left: auto;
  }
  .quickbooks .review .heading {
    width: 60%;
  }
  .quickbooks .review .review-item {
    padding: 0;
    border: none;
    flex-direction: row;
  }
  .quickbooks .review .review-item .info {
    width: 35%;
    align-items: center;
    border-right: 1px dashed #707070;
  }
  .quickbooks .review .review-item .info .user {
    width: 110px;
    height: 110px;
    padding: 1.2rem;
    border: 10px solid transparent;
  }
  .quickbooks .review .review-item .info h3,
  .quickbooks .review .review-item .info h4 {
    text-align: center;
  }
  .quickbooks .review .review-item .info h3 {
    font-size: 19px;
  }
  .quickbooks .review .review-item .content {
    width: 58%;
  }
  .quickbooks .review .review-item .content p {
    min-height: auto;
  }
  .quickbooks .review .owl-nav {
    position: absolute;
    left: 377px;
    bottom: 0;
    margin-top: 0;
  }
  .quickbooks .footer {
    background-image: linear-gradient(0deg, #070202 320px, #FFFFFF 320px);
  }
  .quickbooks .footer .footer-container {
    position: relative;
  }
  .quickbooks .footer .form {
    position: absolute;
    right: 0;
    padding: 2rem 2.5rem 3rem;
  }
  .quickbooks .footer .faq-content .heading {
    padding-left: 0.6rem;
  }
  .quickbooks .footer .faq-list {
    counter-reset: counter;
    overflow-y: scroll;
    padding: 0.6rem 1rem 0.6rem 0.6rem;
    max-height: 445px;
  }
  .quickbooks .footer .faq-item .ques::before {
    content: counter(counter, decimal-leading-zero);
    display: flex;
    justify-content: center;
    counter-increment: counter;
    font-size: 16px;
    color: #40B825;
    font-weight: 600;
    line-height: 1.5;
  }
  .quickbooks .footer .faq-item .ques h3 {
    width: calc(100% - 62px);
    font-size: 15px;
  }
  .quickbooks .footer .footer-content {
    margin-top: 5rem;
    flex-flow: wrap;
    justify-content: space-between;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    align-items: flex-end;
  }
  .quickbooks .footer .footer-content .heading {
    width: 46%;
  }
  .quickbooks .footer .footer-content .footer-list {
    width: 63%;
  }
  .quickbooks .footer .footer-content .buttons {
    width: 32%;
    justify-content: flex-end;
    margin-top: 0;
  }
  .quickbooks .footer .footer-item .info h3 {
    font-size: 16px;
  }
  .quickbooks .footer .footer-item .info a {
    font-size: 15px;
  }
}
@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  section {
    padding: 4rem 0rem;
  }
  .quickbooks .heading h2 {
    font-size: 32px;
  }
  .quickbooks .banner {
    padding-bottom: 15rem;
  }
  .quickbooks .banner::before {
    bottom: 74px;
    height: 580px;
    width: 390px;
  }
  .quickbooks .banner ul .links-li {
    margin-right: 1.5rem;
  }
  .quickbooks .banner ul .links-li:nth-child(4) {
    display: flex;
  }
  .quickbooks .banner ul .btn-white {
    margin-right: 1.5rem;
  }
  .quickbooks .banner .sticky .container {
    padding: 1rem 0;
  }
  .quickbooks .banner .banner-container {
    padding-top: 6rem!important;
  }
  .quickbooks .banner .banner-content h1 {
    font-size: 75px;
  }
  .quickbooks .banner .banner-content h1 img {
    width: 80px;
    height: 80px;
    transform: translateY(14px);
  }
  .quickbooks .banner .banner-content .smoothscroll {
    bottom: 23%;
  }
  .quickbooks .banner .flow-content {
    margin-top: 7rem;
  }
  .quickbooks .banner .flow-content .flow-list {
    width: 80%;
    margin-left: auto;
  }
  .quickbooks .overview .course-info {
    width: 31%;
  }
  .quickbooks .course .course-item {
    width: 31%;
  }
  .quickbooks .course .course-item .image {
    width: 98px;
    padding: 1.5rem;
  }
  .quickbooks .course .course-item .info {
    width: calc(100% - 122px);
  }
  .quickbooks .course .course-item:nth-child(2n) {
    margin-right: 2rem;
  }
  .quickbooks .course .course-item:nth-child(3n),
  .quickbooks .course .course-item:last-child {
    margin-right: 0;
  }
  .quickbooks .feature .feature-info {
    position: static;
    align-self: center;
    padding: 1.8rem;
  }
  .quickbooks .method .heading {
    width: 86%;
    margin: auto;
  }
  .quickbooks .method .method-list {
    justify-content: space-between;
    width: 100%;
  }
  .quickbooks .method .method-item {
    width: 24%;
  }
  .quickbooks .method .method-item .info h3 {
    font-size: 16px;
    min-height: 46px;
  }
  .quickbooks .method .method-item .info p {
    min-height: 89px;
  }
  .quickbooks .fact {
    padding-bottom: 2.5rem;
  }
  .quickbooks .benefit .benefit-content {
    width: 50%;
  }
  .quickbooks .benefit .benefit-info {
    position: static;
    align-self: center;
    padding: 2.5rem;
  }
  .quickbooks .choose .choose-list {
    width: 100%;
  }
  .quickbooks .choose .choose-item {
    width: 21.5%;
  }
  .quickbooks .difference {
    padding: 3rem 0;
  }
  .quickbooks .difference .item ul li {
    min-height: auto;
  }
  .quickbooks .review .heading {
    width: 67%;
  }
  .quickbooks .review .review-container {
    width: 90%;
    margin: auto;
  }
  .quickbooks .review .review-item .info {
    width: 28%;
  }
  .quickbooks .review .review-item .content {
    width: 65%;
  }
  .quickbooks .review .owl-nav {
    left: 353px;
  }
  .quickbooks .footer {
    padding-bottom: 3rem;
    background-image: linear-gradient(0deg, #070202 284px, #FFFFFF 284px);
  }
  .quickbooks .footer .form {
    width: 42%;
  }
  .quickbooks .footer .footer-content .heading {
    width: 50%;
  }
}
@media (min-width : 1500px) {
  .quickbooks .overview::before {
    content: none;
  }
}
