/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

.tax-title {
  color: #2f0c54;
}
.tax-mini-title {
  color: #955ece;
}

/*--------------------------------------------------------------
# Mini Header
--------------------------------------------------------------*/
.tax-mini-header {
  padding: 0;
  /* background-image: linear-gradient(0, #11258b 0%, #2f8acb 53%, #15188d 100%); */
  min-height: 30px;
}
.tax-mini-header .navbar ul {
  justify-content: end;
}
.mobile-mini-nav-toggle {
  display: none;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(40, 58, 90, 0.9);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 100px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}
.navbar.header .dropdown a {
  text-transform: uppercase;
  color: #000;
  text-align: center;
  padding: 10px!important;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}


.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #2f0c54;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #955ece;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  /* background-image: linear-gradient(90deg, #11258b 0%, #2f8acb 53%, #15188d 100%); */
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
  .tax-calculator-wrp {
    width: 90%;
  }


  /* mini header  */
  /* mini header  */
  .tax-mini-header {
    padding: 10px;
  }
  .mobile-mini-nav-toggle {
    display: block;
    color: #fff;
    font-size: 28px;
    line-height: 28px;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 2px;
  }
  .tax-mini-navbar-list-item a {
    padding: 5px;
    font-size: 10px;
  }
  .tax-mini-header .navbar.tax-mini-navbar .tax-mini-navbar-list.tax-mini-navbar-open {
    display: block;
  }
  .tax-mini-navbar.tax-mini-navbar-open .tax-mini-navbar-list {
    display: block;
    margin-top: 10px;
  }
  .tax-mini-navbar.tax-mini-navbar-open .tax-mini-navbar-list .tax-mini-navbar-list-item ul {
    position: absolute;
  }
  .tax-mini-navbar.tax-mini-navbar-open .tax-mini-navbar-list .tax-mini-navbar-list-item ul li.dropdown ul {
    left: 50%;
    /* width: 80%; */
  }
  .tax-mini-navbar.tax-mini-navbar-open .mobile-mini-nav-toggle {}
  
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgb(72 34 111);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #47b2e4;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #955ece;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

#hero h2 {
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  font-size: 60px;
  transition: 0.3s;
  color: #fff;
}


#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
.tax-gradient-bg {
 background-image: linear-gradient(160deg, #EDA384 0%, #F40F7E 100%);
}
#hero .hero-img-title {}
#hero .hero-img-title h3 {
  color: #fff;
  margin-bottom: unset;
  padding: 5px 25px;
  font-size: 35px;
}
#hero .hero-img-title h3 i {
  margin: 0 10px;
}
#hero .hero-img-title h3
#hero .hero-img {
  position: relative;
}
#hero .hero-img:hover .btn-watch-video {
  background-color: #0674b9;
} 
#hero .btn-watch-video {
  position: absolute;
  width: 120px;
  height: 120px;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-image: linear-gradient(0, #11258b 0%, #2f8acb 53%, #15188d 100%); */
  border-radius: 50%;
}

@media (max-width: 991px) {
  #hero {
    /* height: 100vh; */
    text-align: center;
    padding-top: unset;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }

  /* header */
  #header .logo img {
    max-height: 60px;
  }
  .navbar-mobile ul {
    width: 90% !important;
    margin: auto;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}


/* .section-title p {
  border-bottom: none;
  color: #0674b9;
  font-size: 22px;
  margin: 0 0 8px 0;
  text-align: center;
} */

/*--------------------------------------------------------------
# tax-card
--------------------------------------------------------------*/
.tax-card .row {
  padding-top: 40px;
}

.tax-card .box {
  padding: 40px 25px;
  height: 100%;
  border-radius: 5px;
  /* background-image: linear-gradient(0, #11258b 0%, #2f8acb 53%, #15188d 100%); */
  color: #fff;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
.tax-card .box:hover {
  /* background-image: url("../images/background_lgbttn_1.png"); */
  transform: scaleY(1.1);
  transition: .5s;
  box-shadow: 0 0 10px #040107;
  background-image: linear-gradient(0, #3B185F 0%, #3B185F 53%, #3B185F 100%);
  border-top-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.tax-card .box:hover .colorBar {
  background-color: #fff;
}
.tax-card .box:hover .box-para {
  color: #fff;
}
.tax-card .box:hover a {
  color: #fff;
}
.tax-card h3 {
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  position: relative;
  z-index: 5;
  /* min-height: 110px; */
}
.tax-card .colorBar {
  background-color: #fff;
  height: 4px;
  margin: 15px auto;
  width: 50%;
  position: relative;
  z-index: 5;
  border-radius: 20px;
  box-shadow: 0 0 10px;
}
.tax-card .box-para {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 0;
  position: relative;
  /* text-align: center; */
  z-index: 5;
  padding-bottom: 10px;

}
.tax-card a {
  font-size: 13px;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  text-transform: uppercase;
  z-index: 5;
  color: #fff;
}
.tax-card a span:before {
  content: "\f0a9";
}
.tax-card .featured .buy-btn:hover {
  background: #23a3df;
}

@media (max-width: 992px) {
  .tax-card .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .tax-card .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .tax-card .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}


/*--------------------------------------------------------------
# tax-calculator
--------------------------------------------------------------*/
.tax-calculator-wrp {
  box-shadow: 0 0 10px #040107;
  padding: 10px;
  border-radius: 20px;
}
.tax-calculator-wrp .tic-header {
  /* background-image: linear-gradient(0, #11258b 0%, #2f8acb 53%, #15188d 100%); */
  padding: 24px 0;
  text-align: center;
}
.tax-calculator-wrp .tic-header h2 {
  color: #fff;
}
.tax-calculator-wrp .tic-create-wrapper {
  display: inline-block;
  margin: 10px auto 0px auto;
  text-align: left;
}
.tax-calculator-wrp .tic-create-wrapper .fieldset {
  float: left;
  height: 100px;
  margin: 0 15px;
  padding: 10px;
  -webkit-transition: background-color 300ms ease-out;
  -moz-transition: background-color 300ms ease-out;
  -o-transition: background-color 300ms ease-out;
  -ms-transition: background-color 300ms ease-out;
  transition: background-color 300ms ease-out;
}
#tic-income > div {
  position: relative;
}
#tic-create label {
  display: block;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  font-size: 12px;
  color: #2f0c54;
}
#tic-create .fieldset input[type="text"]#calc-input-income {
  padding-left: 18px;
}
#tic-create .fieldset input[type="text"] {
  background: #fff;
  border: none;
  font-weight: bold;
  font-size: 13px;
  box-shadow: inset 0 0 8px rgb(64 28 102);
  color: #401c65;
  padding: 5px;
  position: relative;
}
#tic-create .fieldset input[type="checkbox"] {
  margin-left: 0px;
  float: left;
  margin-top: 0;
}
#tic-marital .styled-select {
  /* width: 175px; */
}
.styled-select {
  background: #fff;
  box-shadow: inset 0 0 8px rgb(64 28 102);
  height: 32px;
  overflow: hidden;
  position: relative;
  width: 240px;
}
.styled-select i, .styled-select span {
  font-size: 1.25em;
  position: absolute;
  right: 6px;
  top: 6px;
  z-index: 10;
  pointer-events: none;
  /* color: #492370; */
}
#tic-create {
  color: #492370;;
  padding-bottom: 15px;
  text-align: center;
  width: 100%;
}
.styled-select select {
  background: transparent;
  width: 100%;
  padding: 5px;
  font-weight: bold;
  font-size: 13px;
  color: #401c65;
  line-height: 130%;
  border: 1px solid transparent;
  border-radius: 0;
  height: 32px;
  margin-top: 0;
  -webkit-appearance: none;
}
.taxable-option {
  padding-top: 8px;
}
span.tic_required {
  font-size: 90%;
  text-transform: uppercase;
  color: #bb0000;
  font-style: italic;
  padding-top: 8px;
  display: block;
}




#tic-summary {
  background: #fff;
  padding: 15px;
  display: table;
  text-align: center;
  overflow: hidden;
}
#tic-summary div h3 {
  border-bottom: none;
  color: #2f0c54;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.5em;
  height: auto;
  position: relative;
}
.resultsWrapper {
  display: inline-block;
  margin: 0 auto;
  padding: 30px 0;
}
.resultItem {
  float: left;
  text-align: center;
  padding-top: 8px;
}
.resultItem .title {
  color: #525252;
  height: 45px;
  text-transform: uppercase;
}
.csstransitions .resultItem .value {
  display: block;
  filter: alpha(opacity=0);
  opacity: 0;
  -moz-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  -o-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
}
.resultItem .value span {
  font-size: 49px;
}
.resultItem.alt .value {
  color: #9FBE33;
}
.resultModifier {
  color: #C9C9C9;
  float: left;
  font-weight: normal;
  font-size: 40px;
  padding-top: 55px;
  text-align: center;
  width: 65px;
}
.marginalRateWrapper {
  border-top: 3px solid #3f1b64;
  padding: 30px 0;
}
.marginalRateWrapper .resultItem {
  float: none;
}
.resultItem .title {
  color: #955ece;
  height: 45px;
  text-transform: uppercase;
}
.marginalRateWrapper .resultItem .value {
  color: #FF4C3F;
} 
.marginalRateWrapper .resultItem .value span {
  font-size: 70px;
  font-weight: bold;
}
#equiv_calc_button_row {
  text-align: center;
}

#tic-summary-wrapper {
  margin-top: 50px;
}
#tic-summary.teyc div.calccol {
  float: none;
  display: inline-table;
}
#tic-summary div.calccol {
  padding: 0px!important;
  margin-top: 5px!important;
  width: 62%!important;
}
#tic-summary div.calccol {
  float: left;
  width: 23%;
  padding: 0 1%;
  text-align: center;
}
/* #tic-summary div h3 {
  border-bottom: none;
  color: #577997;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.5em;
  height: auto;
  position: relative;
} */
#tic-summary div.calccol h3 span {
  margin-bottom: 5px;
}
#tic-summary div h3 span {
/*  position: absolute;*/
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  bottom: 0;
}
#tic-summary div.equiv_summary_toggle ul li.tic-info {
  margin: 10px;
}
#tic-summary #tic-summary-equivs h4 {
  /* background-image: linear-gradient(0, #11258b 0%, #2f8acb 53%, #15188d 100%); */
  background-image: linear-gradient(0, #3B185F 0%, #a067dc 53%, #3B185F 100%);
}
#tic-summary h4 {
  border-bottom: 1px solid #CCC;
  color: #fff;
  font-size: 12px;
  margin: 0 0 28px 0;
  padding: 8px 0;
}
#tic-summary ul li span {
  color: #313140;
  font-size: 23px;
  font-weight: bold;
}
#tic-summary div.equiv_summary_toggle #tic-summary-fixed-income h4 {
  /* background-image: linear-gradient(0, #11258b 0%, #2f8acb 53%, #15188d 100%); */
}
.tic-info {
  position: relative;
}
#tic-summary ul {
  font-family: inherit;
  padding: 0;
  margin: 0;
  list-style: disc outside;
}
#tic-summary ul li {
  background: none;
  border: 1px solid #CCC;
  height: 105px;
  padding-left: 0;
  padding-top: 0;
  list-style: none;
  margin: 0 0 13px 0;
  line-height: 140%;
}
div#tic-summary-equivs li.tic-info {
  background: #ffffff;
}
.ticInfoBox {
  position: absolute;
  left: 0;
  z-index: 700;
  opacity: 0;
  transition: .5s;
}
#tic-summary div.equiv_summary_toggle ul li.tic-info:hover .ticInfoBox {
  opacity: 1;
}
.ticInfoBox-popup-ft {
    height: 10px;
    background: url("../images/teyc-popup.png");
    background-repeat: no-repeat;
    background-position: bottom;
}
.ticInfoBox-popup {
  position: absolute;
  width: 150px;
  right: -6px;
  bottom: 5px;
  font-weight: normal;
  font-style: normal;
  font-size: 11px;
  color: #35526b;
}
.ticInfoBox-popup-bd {
  padding: 5px;
  background: #ffffff;
  border: 1px solid #9ba8b2;
  border-bottom: none;
  text-align: left;
}





.tax-calculator .bttn {
  background-color: #2f0c54;
  border: 1px solid #2f0c54;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  margin-top: 10px;
  padding: 12px 12px;
  text-transform: uppercase;
}
.tax-calculator .bttn:hover {
  text-decoration: underline;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer .disclaimerFont {
  font-style: italic;
}
#footer {
  font-size: 14px;
  /* background-image: linear-gradient(0, #11258b 0%, #2f8acb 53%, #15188d 100%); */
  color: #fff;
}

#footer .footer-top {
  padding: 45px 0 30px 0;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: underline;
}
#footer .footer-top .social-links-wrp {
  /* border-bottom: solid 1px #37b9e3;
  padding-bottom: 20px; */
}
#footer .footer-top .social-links {
  display: flex;
  justify-content: end;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  box-shadow: 0 0 10px #fff;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}
#footer .footer-bottom a {
  color: #fff;
}
#footer .copyright {
  float: left;
}
#footer .credits a {
  color: #fff;
  font-weight: bold;
}


@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }
  #footer .footer-top .social-links {
    justify-content: center;
    margin-top: 10px;
  }

  /* ---------------- */
  .tax-calculator-wrp .tic-create-wrapper .fieldset {
    height: auto;
    width: 100%;
    margin: unset;
  }
  #tic-summary-wrapper {
    margin-top: 100px;
  }
  #tic-summary h4 {
    margin-bottom: 18px;
  }

}


@media (max-width: 768px) {
  #header .logo {
    width: 100%;
    text-align: center;
  }
  #hero .btn-watch-video {
    position: unset;
  }
  .tax-calculator-wrp .tic-header {
    padding: 24px 20px;
  }
  #tic-summary div.calccol {
    width: 100% !important;
  }

  .styled-select {
    width: 100%;
  }
  #tic-create .fieldset input[type="text"] {
    width: 95%;
  }

  #tic-summary {
    padding: 15px 0;
  }
  .tax-calculator-wrp .tic-create-wrapper {
    display: block;
  }
  #tic-summary div h3 span {
    position: unset;
  }
  #tic-summary-wrapper {
    margin-top: unset;
  }
  .resultModifier {
    padding-top: unset;
  }
  .resultModifier,
  .resultItem {
    width: 100% !important;
  }
}