@import './../fonts/font.css';

body {
  font-family: 'Lato', sans-serif;
  color: #141414;
  letter-spacing: .5px;
}

p {
  font-size: 18px;
  line-height: 28px;
}

p a {
  font-weight: 600;
}

a {
  color: #1c8ebf;
  text-decoration: none;
}

a:hover {
  color: #000;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: 'Inter', sans-serif;*/
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  border: none;
  outline: noen;
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #1c8ebf;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #000;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/**
 * Header
 **/

.header {
  transition: all 0.5s;
  z-index: 997;
  position: sticky;
  display: flex;
  align-items: stretch;
  background-color: #ffffff;
  border-bottom: 1px solid #d5d5d5;
}

.navbar-light .navbar-nav .menu-item,
.navbar-light .navbar-nav .menu-item .nav-link {
  display: flex;
  align-items: center;
  height: 100%;
}

.navbar-light .navbar-nav .nav-link {
  color: #000;
  position: relative;
  text-decoration: none;
}

.navbar-collapse {
  justify-content: right;
  align-items: stretch;
}

.logo {
  display: flex;
  align-items: center;
}

.navbar-light .navbar-toggler {
  padding: 6px 8px;
  border: 1px solid #00000094;
  color: #000;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Common styles for both mobile and desktop */
.header li.menu-item-has-children {
  position: relative;
}

li.menu-item-has-children .nav-link svg {
  margin-left: 5px;
}

.header ul ul.sub-menu {
  width: 100%;
  display: none;
  flex-direction: column;
  background: #101010;
  padding-left: 0;
  box-shadow: 0px 2px 13px 0px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.header ul ul>li.menu-item {
  padding: 8px;
}

.header ul ul li.menu-item:not(:last-of-type) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header ul ul>li.menu-item>a {
  width: 100%;
  color: #ffffff !important;
  font-size: 12px;
  text-align: left;
  display: block;
  text-decoration: none;
}

.header .navbar-nav>li>ul.sub-menu>li>a {
  padding: 8px 16px;
}

.header .navbar-nav>li>ul ul {
  max-width: 95%;
  margin-left: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.header .navbar-nav li ul path {
  stroke: #ffffff;
}

/* Mobile styles - Show sub-menu on click */
@media (max-width: 994px) {
  .navbar-light .navbar-nav li.menu-item-has-children {
    display: block;
  }

  .header ul ul.sub-menu.show {
    display: block;
  }

  .navbar-collapse {
    order: 3;
  }
}

/* Desktop styles - Show sub-menu on parent hover */
@media (min-width: 995px) {
  .header {
    min-height: 70px;
  }

  .navbar {
    gap: 1rem;
  }

  .navbar-nav {
    gap: 1rem;
  }

  .header ul ul.sub-menu {
    width: 200px;
  }

  .header ul ul li:hover,
  .header ul ul li.current-menu-item {
    background-color: #1e1e1e;
  }

  /* .navbar-light .navbar-nav .nav-link:hover::after {
    transform-origin: left;
    transform: scaleX(1);
  } */

  /* Current Item */
  /* .navbar-light .navbar-nav>li.current-menu-item>.nav-link::after {
    background-color: var(--pc);
    transform-origin: left;
    transform: scaleX(1);
  } */

  .navbar-light .navbar-nav>li.current-menu-item>.nav-link {
    color: #333;
    opacity: 0.85;
  }

  .header ul ul.sub-menu {
    display: none;
    position: absolute;
  }

  /* Desktop styles - Show sub-menu on parent hover */
  .header ul li:hover>ul {
    display: block;
  }

  /* Level 1 */
  .header .navbar-nav>li>ul.sub-menu {
    top: 100%;
  }

  /* Inner sub-menu ( level 2 & 3 */
  .header .navbar-nav>li>ul.sub-menu ul.sub-menu {
    top: 0;
    left: 100%;
  }

  .header ul ul.sub-menu>a {
    padding: 8px 16px;
  }

  .header .navbar-nav>li>ul ul {
    margin-left: 0;
    border: 0;
    max-width: 100%;
  }
}

/* Search */

.openBtn {
  background: #f1f1f1;
  border: none;
  padding: 6px 13px;
  font-size: 18px;
  cursor: pointer;

}

.openBtn:hover {
  background: #1c8ebf;
  color: #fff;
}

.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
}

.overlay-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
    /* margin-top: 30px; */
    /* margin: auto; */
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  cursor: pointer;
  color: white;
}

.overlay .closebtn:hover {
  color: #ccc;
}

.overlay input[type=text] {
  padding: 15px;
  font-size: 17px;
  border: none;
  float: left;
  width: 80%;
  background: white;
}

.overlay input[type=text]:hover {
  background: #f1f1f1;
}

.overlay button {
  float: left;
  width: 20%;
  padding: 15px;
  background: #1c8ebf;
  font-size: 17px;
  border: none;
  cursor: pointer;
  color: #fff;
}

.overlay button:hover {
  background: #1c8ebf;
}

.cat-sec a {
  background-color: #1c8ebf;
  color: #fff;
  padding: 6px 15px;
}

.cat-sec {
  margin: 0px 0px 5px 0px;
  position: absolute;
  z-index: 99;
  margin-top: -43px;
}

.single-card {
  border: 1px solid #ccccccb5;
  border-radius: 10px;
  box-shadow: 3px 4px 5px -3px #cccccc96;
  margin-bottom: 25px;
}

.single-card:hover {
  box-shadow: 5px 8px 5px -1px #ccc;
}

.single-card:hover .content-box p a {
  color: #0c78a7;
}

.single-card img {
  /*     border-radius: 20px;
    padding: 10px; */
}

.content-box {
  padding: 0px 15px 15px 15px;
}

.content-box p {
  line-height: 28px;
}

.content-box p a {
  color: #000;
  font-size: 20px;
  font-weight: 600;
}

.author-sec {
  display: flex;
  align-items: center;
  /*   font-size: 15px; */
}

.entry-date {
  margin-bottom: 5px;
  font-weight: 400;
  padding-top: 20px;
}

.author-sec .post-author-avatar {
  margin-right: 10px;
}

a.author-a {
  color: #00000094;
  font-weight: 500;
}

/* .post-author-avatar i {
  background-color: #8f8f8f;
  color: #fff;
  padding: 5px;
} */
.sep {
  background-color: #c5c5c5b0;
  height: 1px;
  margin-bottom: 15px;
}

.card-box-b {
  position: relative;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding-bottom: 71%;
  height: 0;
}

.card-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.card-shadow {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.card-shadow:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to bottom, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 14%) 27%, rgb(0 0 0 / 90%) 90%);
}

.cate-date {
  bottom: 125px;
  position: relative;
}

.card-header-b {
  padding: 1rem;
  color: #ffffff;
  position: absolute;
  bottom: -100px;
  z-index: 2;
}

.card-header-b .category-b {
  font-size: 16px;
  background-color: #1c8ebf;
  padding: 6px 20px;
  color: #ffffff;
  letter-spacing: 0.03em;
  border-radius: 45px;
  text-decoration: none;
  border: 1px solid #cccccc63;
}

span.date-b i {
  background-color: #E2D784;
  color: #000;
  padding: 8px;
  border-radius: 50%;
  margin-right: 5px;
}

.card-header-b .title-2 {
  margin-bottom: 0;
  padding: 0.6rem 0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .5px;
  line-height: 36px;
  text-transform: capitalize;
}

.card-header-b .title-2 a {
  color: #ffffff;
  text-decoration: none;
  line-height: 30px;
}

/*.card-date {
    margin-top: 15px;
    margin-bottom: 20px;
}*/
.card-header-b .date-b {
  color: #fff;
  font-size: 1rem;
}

.post-author-avatar img {
  height: 50px;
  border-radius: 50%;
}

a.author-top-a {
  color: #fff;
}

.post-date-a {
  margin-left: 15px;
}

.martop100 {
  margin-top: 80px;
}

.martop50 {
  margin-top: 50px;
}

.martop15 {
  margin-bottom: 42px;
}

.martop10 {
  margin-top: 10px;
}

.top-side h5 {
  font-weight: 600;
  font-size: 18px;
  margin-top: 10px;
  line-height: 25px;
  margin-bottom: 10px;
}

.top-side h5 a {
  color: #000;
}

.top-side h5 a:hover {
  color: #1c8ebf;
}

.top-side .category-b {
  font-size: 16px;
  background-color: #1c8ebf;
  padding: 6px 20px;
  color: #ffffff;
  letter-spacing: 0.03em;
  border-radius: 45px;
  text-decoration: none;
  border: 1px solid #cccccc63;
}

.side-content {
  margin-top: 10px;
}

.top-side img {
  border-radius: 15px;
}

.date-sep {
  width: 25px;
  height: 2px;
  background-color: #1c8ebf;
  margin-top: 5px;
}

.single-post .post-bar {
  padding: 0;
  list-style: none;
}

.post-bar .category-b {
  font-size: 16px;
  background-color: #1c8ebf;
  padding: 6px 20px;
  color: #ffffff;
  letter-spacing: 0.03em;
  border-radius: 45px;
  text-decoration: none;
  border: 1px solid #cccccc63;
}

.single-post .post-bar li {
  display: inline-block;
  font-size: 16px;
  color: #000;
  margin-right: 20px;
  font-weight: 500;
  text-transform: capitalize;
}

#breadcrumbs {
  margin-bottom: 15px;
  border-radius: 4px;
  color: #000;
}

#breadcrumbs a {
  color: #1c8ebf;
  font-size: 16px;
}

.all-page h1 {
  font-size: 42px;
  font-weight: 600;
}

.all-page h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 25px;
}

.all-page h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 25px;
}

.all-page ul li {
  line-height: 32px;
  list-style-type: square;
  font-size: 18px;
}

.all-page ol li {
  line-height: 28px;
  font-size: 18px;
}

.all-page ol ul li {
  line-height: 28px;
  font-size: 18px;
}

.social-share .bi {
  font-size: 16px;
  width: 35px;
  line-height: 35px;
  height: 35px;
  text-align: center;
  padding: 5px;
  text-decoration: none;
  margin: 2px 3px;
}

.social-share .bi-facebook {
  background: #3B5998;
  color: white;
}

.social-share .bi-pinterest {
  background: #f10800;
  color: white;
}

.social-share .bi-twitter {
  background: #55ACEE;
  color: white;
}

.social-share .bi-linkedin {
  background: #0077b5;
  color: white;
}

.aside-tags li {
  display: inline-block;
}

.aside-tags li a {
  display: inline-block;
  color: #000;
  padding: 5px 15px;
  background-color: #e9e9e9;
  margin-bottom: 6px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}

.all-page ul li a {
  font-weight: 600;
  color: #0094db;
}

.aside-tags li a:hover,
.aside-tags li a:focus {
  background-color: #1c8ebf;
  color: #fff;
}

@media only screen and (max-width: 600px) {

  .navbar-collapse {
    padding-top: 12px;
  }

  .big-b {
    margin-bottom: 20px;
  }

  .card-header-b .title-2 {
    font-size: 18px;
    line-height: 28px;
  }

  .card-shadow:before {
    background: linear-gradient(to bottom, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 62%) 27%, rgb(0 0 0 / 90%) 90%);
  }

  .all-page h1 {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
  }

  .all-page h2 {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
  }

  .all-page h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
  }

  .wp-block-search__input {
    padding: 5px;
    flex-grow: 1;
    min-width: 0em;
    height: 45px;
  }

  .overlay button {
    width: 30%;
    padding: 0;
  }


  .overlay-content {
    top: 20%;
    width: 85%;
  }

}

/* footer */
section.section-footer p {
  font-size: 16px;
}

.section-footer {
  margin-top: 60px;
  background-color: #000;
  background: url(../images/footer-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 30px;
  /*border-top: 1px solid #d1d1d1;*/
}

.copyright-sec p {
  margin-bottom: 0;
  color: #fff;
  font-size: 16px !important;
}

.copyright-sec a {
  color: #000;
}

.copyright-sec {
  background-color: #1c8ebf;
  padding: 5px;
}

.newsletter {
  text-align: center;
  border: 1px solid #bfbfbf;
  padding: 15px;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: #ffff;
  font-weight: 400;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.form-control {
  border: 1px solid #a3a3a3;
}

.input-group>.form-control,
.input-group>.form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

.input-group-append .btn,
.input-group-append .btn:active {
  border-color: #1c8ebf;
  background: #1c8ebf !important;
  width: 100%;
}

.mt10 {
  margin-top: 10px;
}

.w-body-a li {
  /* line-height: 30px; */
  margin-top: 10px;
}

.w-body-a a {
  color: #000;
}

.w-body-a a:hover {
  color: #1c8ebf;
}

.w-body-a li i {
  padding-right: 10px;
  color: #1c8ebf;
}

.contact-info a {
  color: #000;
}

.contact-info a:hover {
  color: #1c8ebf;
}

.w-header-a h3 {
  font-size: 20px;
  color: #000;
  font-weight: 600;
}

.contact-info li {
  list-style: none;
  line-height: 30px;
  margin-top: 15px;
}

.widget-a ul {
  padding-left: 0 !important;
  /* padding-inline-start: 0px;*/
}

.widget-a ul ul {
  list-style: none;
}

.contact-info li span i {
  background-color: #1c8ebf;
  padding: 8px;
  border: 1px solid #ccc;
  margin-right: 10px;
  color: #fff;
}

.foot-sep {
  width: 25px;
  height: 2px;
  background-color: #1c8ebf;
  margin-top: 5px;
}

.w-header-a {
  margin-bottom: 10px;
}

/* image placeholder */

/* .card-box-b {
   background: url(../images/big-i.jpg);
   background-repeat: no-repeat;
   background-size: cover;
   height: 450px;
   background-position: bottom;
}
.single-card-i {
   background: url(../images/big-i.jpg);
   background-repeat: no-repeat;
   background-size: cover;
   height: 320px;
   background-position: bottom;
} */

.top-side-i {
  padding-bottom: 55%;
  height: 0;
  background: #ccc;
  border-radius: 15px;
}


#highlights .head-th {
  font-size: 22px;
  font-weight: 600;
}

#summary .head-th {
  font-size: 22px;
  font-weight: 600;
}

#tableofcontent ul li {
  margin-bottom: 5px;
}

#highlights ul li {
  margin-bottom: 5px;
}

#summary ul li {
  margin-bottom: 5px;
}

#tableofcontent ol li {
  margin-bottom: 5px;
}

#highlights ol li {
  margin-bottom: 5px;
}

#summary ol li {
  margin-bottom: 5px;
}

.all-page .number :before {
  counter-increment: term;
  content: counter(term) ". ";
  margin-right: 10px;
}

.all-page .number a:before {
  display: none;
}

.all-page {
  counter-reset: term definition;
}

.number h2,
h3,
h4,
h5,
h6 {
  /* 	display:flex; */
  align-items: center;
}

.number-remove {
  counter-reset: term definition;
}

/* End Tables of content, highlights, Student*/

/*--------------------------------------------------------------
# Personal calculator
--------------------------------------------------------------*/
.personal-calc .sub-container {
  display: flex;
  width: 100%;
  gap: 50px;
  height: max-content;
}

.personal-calc .view {
  width: 60%;
}

.personal-calc .details input {
  width: 100%;
}

.personal-calc .detail {
  display: flex;
  justify-content: space-between;
}

/*----- Styling the sliders ----*/
.personal-calc input[type="range"] {
  -webkit-appearance: none;
  margin: 10px 0;
  width: 100%;
}

.personal-calc input[type="range"]:focus {
  outline: none;
}

.personal-calc input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: #47baeb;
  border-radius: 10px;
}

.personal-calc input[type="range"]::-webkit-slider-thumb {
  box-shadow: 2px 2px 5px #b3b3b3, -1px -1px 3px grey;
  border: 5px solid #ffffff;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #47baeb;
  cursor: pointer;
  margin-top: -6px;
  -webkit-appearance: none;
}

.personal-calc input[type="range"]:focus::-webkit-slider-runnable-track {
  background: #b3b3b3;
}

.personal-calc input[type="range"]::-moz-range-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: #47baeb;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
  border-radius: 10px;
}

.personal-calc input[type="range"]::-moz-range-thumb {
  box-shadow: 2px 2px 5px #b3b3b3, -1px -1px 3px grey;
  border: 5px solid #ffffff;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #47baeb;
  cursor: pointer;
  margin-top: -6px;
}

.personal-calc input[type="range"]::-ms-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: #47baeb;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
  border-radius: 10px;
}

.personal-calc input[type="range"]::-ms-fill-lower {
  background: #47baeb;
  border-radius: 5px;
}

.personal-calc input[type="range"]::-ms-fill-upper {
  background: #47baeb;
  border-radius: 5px;
}

.personal-calc input[type="range"]::-ms-thumb {
  box-shadow: 2px 2px 5px #b3b3b3, -1px -1px 3px grey;
  border: 5px solid #ffffff;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #47baeb;
  cursor: pointer;
  margin-top: -6px;
}

.personal-calc input[type="range"]:focus::-ms-fill-lower {
  background: #47baeb;
}

.personal-calc input[type="range"]:focus::-ms-fill-upper {
  background: #47baeb;
}

.personal-calc .field-input {
  display: flex;
  align-items: center;
  background: #47baeb36;
  width: fit-content;
  height: 30px;
  color: #47baeb;
  border-radius: 2px;
  padding: 0px 5px;
}

.personal-calc .field-input input,
.personal-calc .field-input input:focus {
  border: none;
  height: 30px;
  width: 82px;
  color: inherit;
  background: transparent;
  text-align: right;
  flex-grow: 1;
  outline: 0px;
  opacity: 1;
  caret-color: #47baeb;
  -webkit-text-fill-color: #47baeb;
  padding: 0px;
  box-shadow: none;
}

/*-------------------------------------*/
.personal-calc #price {
  color: #130f31;
  font-size: 25px;
}

.personal-calc .loan-details {
  width: 90%;
  display: flex;
  justify-content: space-between;
}

.personal-calc #price-container {
  color: #47baeb;
  margin-top: 50px;
}

.personal-calc #price-container::before {
  content: "Monthly Payable:";
  font-size: 12px;
  display: block;
}



/*--------------------------------------------------------------
# Student calculator
--------------------------------------------------------------*/

.student-calc .card-body {
  padding: 30px 25px;
}

.student-calc .cal-ans {
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
}

.student-calc .left-box,
.student-calc .right-box {
  background: #e1e1e14d;
  padding: 16px;
  text-align: center;
  border-radius: 4px;
  text-align: left;
  color: #000;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-left: 30px;
}

.student-calc .left-box::before {
  content: "•";
  color: #47baeb;
  margin-right: 10px;
  position: absolute;
  left: 12px;
}

.student-calc .right-box::before {
  content: "•";
  color: #002566;
  margin-right: 10px;
  position: absolute;
  left: 12px;
}

.student-calc .range-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.student-calc .range-wrapper input {
  width: 128px;
  position: relative;
  border: 1px solid #ccc;
  text-align: right;
  border-radius: 4px;
  padding: 4px 2px;
  padding-right: 34px;
}

.student-calc .range-wrapper label {
  font-weight: 600;
}

.student-calc .dollar {
  position: relative;
}

.student-calc .dollar:before {
  content: "$";
  left: 10px;
  top: 6px;
  position: absolute;
  padding-right: 13px;
  z-index: 10;
  color: #969696;
  font-size: 14px;
}

.student-calc span.dollar input {
  text-align: left;
  padding-left: 25px;
}

.student-calc .percent {
  position: relative;
}

.student-calc .percent:before {
  content: "%";
  right: 0px;
  top: 6px;
  position: absolute;
  padding-right: 13px;
  z-index: 10;
  color: #969696;
  font-size: 14px;
}

.student-calc .yrs {
  position: relative;
}

.student-calc .yrs::before {
  content: "Yrs";
  right: 0px;
  top: 6px;
  position: absolute;
  padding-right: 8px;
  z-index: 10;
  color: #969696;
  font-size: 14px;
}

.student-calc .eductaion-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 45px;
}

.student-calc .eductaion-icon img {
  background: #47baeb29;
  padding: 19px;
  border-radius: 50%;
  width: 82px;
  overflow: initial;
  box-shadow: 0px 0px 0px 5px #47baeb57;
}

.student-calc .stu-loan {
  background: #f2f2f2;
  padding: 13px;
  border-radius: 4px;
}

.student-calc .loan-data {
  margin-bottom: 20px;
}

.student-calc .loan-data span::before {
  color: #00a200;
  content: "•";
  margin-right: 10px;
}

.student-calc span.add-loan {
  font-size: 16px;
}

.student-calc span.add-loan a {
  vertical-align: baseline;
  display: flex;
  align-items: center;
}

.student-calc .left-box.monthly {
  background: #a9e5ff;
  /* border: 1px solid #8f8f8fcc; */
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.card-h {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  background: #47baeb;
  width: fit-content;
  color: white;
  padding: 2px 12px;
  border-radius: 8px;
  box-shadow: 0px 0px 4px 1px #dfdfdf;
}

/*--------------------------------------------------------------
# Currency Convertor
--------------------------------------------------------------*/
.currency-converter div.dropdown {
  position: relative;
  /* width: 268px; */
}

.currency-converter div.dropdown:after {
  content: "";
  position: absolute;
  margin: 0;
  width: 16px;
  height: 17px;
  background-image: url(http://botkits.ru/images/icons/down.svg);
  top: 15px;
  right: 10px;
  -webkit-transition: .3s;
  transition: .3s;
}

.currency-converter div.dropdown.open:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}


.currency-converter div.dropdown>div.caption {
  background: #F8F9FB;
  /* border-radius: 12px; */
  cursor: pointer;
  padding: 14px 0;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.currency-converter div.dropdown>div.list {
  position: absolute;
  background-color: #fff;
  width: 100%;
  border-radius: 5px;
  -webkit-box-shadow: 0px 12px 24px rgba(21, 18, 51, 0.13);
  box-shadow: 0px 12px 24px rgba(21, 18, 51, 0.13);
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
  transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
  -webkit-transform: scale(0.85);
  transform: scale(0.85);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  /* 	top: 38px; */
  left: 0;
  z-index: -1;
  visibility: hidden;
  padding: 10px 0;
  overflow-y: auto;
  height: 200px;
}

.currency-converter div.dropdown.open>div.list {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  z-index: 1;
  visibility: visible;
}

.currency-converter div.dropdown>div.list>div.item {
  padding: 10px 15px;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.3px;
  display: flex;
  justify-content: space-between;
}

.currency-converter div.dropdown>div.list>div.item.selected {
  background: rgba(36, 60, 187, 0.2);
  pointer-events: none;
}

.currency-converter div.dropdown>div.list>div.item:hover {
  background: #F8F9FB;
}

.currency-converter div.dropdown>div.list>div.item span,
.currency-converter div.dropdown>div.caption span {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: #243CBB;
}

.currency-converter div.dropdown.open>div.list::-webkit-scrollbar {
  display: none;
}

.currency-converter .reverse-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  cursor: pointer;
}

.currency-converter .input {
  position: relative;
  font-size: 25px;
  transition: background-color 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms;
  line-height: 22px;
  background-color: #f1f2f569;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom: 1px solid #d5d5d5;
}

.currency-converter .input:hover {
  background-color: rgba(0, 0, 0, 0.13);
}

.currency-converter .input input {
  font: inherit;
  color: currentColor;
  width: 100%;
  border: 0;
  height: 1.1876em;
  margin: 0;
  display: block;
  padding: 10px 20px;
  min-width: 0;
  background: none;
  box-sizing: content-box;
  animation-name: mui-auto-fill-cancel;
  letter-spacing: inherit;
  animation-duration: 10ms;
  -webkit-tap-highlight-color: transparent;
}

.currency-converter .input input:focus {
  outline: 0;
}

.currency-converter .result-main {
  margin: 40px 0 0;
  display: flex;
  justify-content: space-between;
}

.currency-converter .result-main p {
  padding: 15px 60px;
  background: #f9fafb;
  border-radius: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: center;
  max-width: center;
  font-size: 15px;
  color: #002970;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 0;
  border-bottom: 2px solid #e9e9e9;
}

.currency-converter .result-main span {
  margin: 0 0 0 10px;
  vertical-align: middle;
  font-size: 26px;
  font-weight: 600;
  line-height: 32px;
}

.currency-converter .result-main #convert {
  background: #47baeb;
  border-radius: 30px;
  text-decoration: none;
  padding: 16px 52px 16px 32px;
  margin: auto 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: inline-block;
  font-size: 15px;
  color: #fff;
  line-height: 18px;
  position: relative;
  border: 4px solid #afe7ff;
}

.currency-converter .result-main #convert:hover {
  background: #474747;
  border: 4px solid #c3c3c3;
}

.currency-converter .result-main #convert:after,
.currency-converter .result-main #convert:before {
  content: "";
  background: #fff;
  width: 10px;
  height: 2px;
  position: absolute;
  right: 32px;
}

.currency-converter .result-main #convert:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 21px;
}

.currency-converter .result-main #convert:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 27px;
}

.currency-converter .caption-para {
  -webkit-column-gap: 5px;
  -moz-column-gap: 5px;
  column-gap: 5px;
  display: flex;
  align-items: flex-start;
  margin-top: 25px;
}

.currency-converter .caption-para p {
  margin: 0;
  text-align: left;
  width: 465px;
  max-width: 100%;
  font-size: 12px;
  color: #4f4f4f;
  font-weight: 500;
  line-height: 18px;
}

.currency-converter .last-days .card-head {
  text-align: center;
  font-size: 17px;
  color: #fff;
  font-weight: 700;
  line-height: 32px;
  background: #47baeb;
  padding: 9px 10px;
  margin-bottom: 14px;
}

.currency-converter .last-days .day {
  padding: 17px 0px;
  border-bottom: 1px solid #e0e0e0;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  background: #f9fafb;
  padding: 13px;
}

.currency-converter .last-days .head {
  width: 200px;
  font-size: 15px;
  color: #002970;
  font-weight: 600;
  line-height: 18px;
}

.currency-converter .last-days .cell {
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  width: 200px;
}

@media (max-width:782px) {
  .currency-converter .result-main {
    display: block !important;
  }

  .currency-converter .result-main p {
    margin-bottom: 30px !important;
  }
}

/*--------------------------------------------------------------
# Credit Card Calculator
--------------------------------------------------------------*/
.credit-cd-Payt-cal .card-body {
  padding: 35px 30px;
}

.credit-cd-Payt-cal .card-b-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.credit-cd-Payt-cal .credit-card-result {
  display: flex;
  border: 1px solid #dfdfdf;
  padding: 20px;
  margin-bottom: 30px;
}

.credit-cd-Payt-cal .credit-card-result h3 {
  font-size: 18px;
  font-weight: 600;
}

.credit-cd-Payt-cal .totalInvest-values {
  margin-right: 20px;
  border-right: 1px solid #dfdfdf;
  padding-right: 20px;
  width: 100%;
}

.credit-cd-Payt-cal .credit-card-result .totalInvest-values:last-child {
  border-right: none;
  padding-right: 0px;
  margin-right: 0px;
}

.credit-cd-Payt-cal .totalInvest-values p {
  margin-bottom: 0px;
  color: #47baeb;
  font-weight: 600;
}

.credit-cd-Payt-cal .form-control {
  border: 1px solid #ced4da;
  background: #f4f4f4;
  margin-bottom: 10px;
  padding: 12px;
}

.credit-cd-Payt-cal .detail {
  display: flex;
  justify-content: space-between;
}

.credit-cd-Payt-cal #cred-button {
  background: #47baeb;
  border-radius: 30px;
  text-decoration: none;
  padding: 16px 52px 16px 32px;
  margin: auto 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: inline-block;
  font-size: 15px;
  color: #fff;
  line-height: 18px;
  position: relative;
  border: 4px solid #afe7ff;
}

.credit-cd-Payt-cal #cred-button:after,
.credit-cd-Payt-cal #cred-button:before {
  content: "";
  background: #fff;
  width: 10px;
  height: 2px;
  position: absolute;
  right: 32px;
  transform: rotate(45deg);
  top: 21px;
}

.credit-cd-Payt-cal #cred-button:after {
  transform: rotate(-45deg);
  top: 27px;
}

.credit-cd-Payt-cal #cred-button {
  margin-top: 16px;
}

.credit-cd-Payt-cal #cred-button:hover {
  background: #474747;
  border: 4px solid #c3c3c3;
}

.credit-cd-Payt-cal .cal-field {
  position: relative;
}

.credit-cd-Payt-cal .cal-field .form-control {
  padding-left: 25px;
}

.credit-cd-Payt-cal .cal-field-dollar {
  position: absolute;
  left: 10px;
  top: 13px;
}

.credit-cd-Payt-cal .cal-field-percent {
  position: absolute;
  right: 14px;
  top: 13px;
}

@media only screen and (max-width: 556px) {
  .credit-cd-Payt-cal .totalInvest-values {
    margin-right: 0px;
    border-right: none;
    padding-right: 0px;
    border-bottom: 1px solid #dfdfdf;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .credit-cd-Payt-cal .card-b-head {
    display: block;
  }

  .card-body {
    padding: 26px 16px;
  }

  .credit-cd-Payt-cal .credit-card-result .totalInvest-values:last-child {
    border-bottom: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
  }

  .credit-cd-Payt-cal .card-body {
    padding: 20px 16px;
  }
}

/*--------------------------------------------------------------
# Get Startet Button -- Not in use
--------------------------------------------------------------*/
.get-started-btn {
  margin-left: 30px;
  background: #1c8ebf;
  color: #fff !important;
  border-radius: 4px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
}

.get-started-btn:hover {
  background: #111111;
  color: #fff;
}

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
    display: none;
  }
}

/* contact page */
.contact-detail-box .bg-box {
    padding: 20px;
    background:#65a5c614;
	margin-bottom:20px;
}

.contact-detail-box .bg-box > strong {
    display: block;
    margin-bottom:10px !important;
}
.contact-detail-box .bg-box a{
    font-weight:600;
}

.contact-detail-box ul{
    padding-left:0 !important
}
.contact-detail-box ul li{
    margin-bottom:0 !important;
}
.row-gap{
    row-gap: 30px;
}
input.wpcf7-form-control.wpcf7-date,
input.wpcf7-form-control.wpcf7-number,
input.wpcf7-form-control.wpcf7-quiz,
input.wpcf7-form-control.wpcf7-text,
select.wpcf7-form-control.wpcf7-select,
textarea.wpcf7-form-control.wpcf7-textarea {
    display: block;
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid #000;
    border-radius: 4px;
    outline: 0;
    resize: none;
    font-size: 16px;
    line-height: 17px;
    background-color: #fff;
    color: #818181;
    font-family: Raleway;
    font-weight: 400;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
}

input.wpcf7-form-control.wpcf7-date,
input.wpcf7-form-control.wpcf7-number,
input.wpcf7-form-control.wpcf7-text,
select.wpcf7-form-control.wpcf7-select,
textarea.wpcf7-form-control.wpcf7-textarea,
.wpcf7-form label {
    width: 100%;
}


.wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea {
    height: 110px;
}

