/* ******************************************* 
                DEFAULT CSS
********************************************* */
:root {
  --thm-color: #0E59F2;
  --black-color: #1C1C25;
  --color-body: #7B7E86;
  --white-color: #ffffff;
  --border-color: #E3E8F4;
  --box-shedow: 0px 9px 75px rgba(8, 20, 44, 0.09);
  --body-font: 'Outfit', sans-serif;
  --heading-font: 'Outfit', sans-serif;
  --footer-bg-color: #071A3E;
  --copyright-bg: #0B2048;
}



body{
  color: var(--color-body);
  font-weight: 400;
  font-family: var(--body-font);
}
/* Button Style  */
.theme-button {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: var(--thm-color);
}

.theme-button i {
  position: relative;
  top: 1px;
  font-size: 90%;
  margin-left: 5px;
}

.theme-button:hover {
  color: var(--black-color);
}

.theme-btns,
input[type="submit"] {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  padding: 18px 40px;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: all .35s;
  border: none;
  background: var(--thm-color);
  color: var(--white-color);
  transition: .4s;
  border-radius: 30px;
}

.theme-btns:hover,
input[type="submit"]:hover {
  background: var(--black-color);
  color: var(--white-color);
}
/* 
/*------------------- 2.5. Mobile Menu -------------------*
*/

.hello_themepulpack-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #24231dc4;
  z-index: 999999;
  width: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
  opacity: 0;
  visibility: hidden;
}

.hello_themepulpack-menu-wrapper .mobile-logo {
  padding-bottom: 30px;
  padding-top: 40px;
  display: block;
  text-align: center;
  background: #eff1f5;
}

.hello_themepulpack-menu-wrapper .mobile-logo a {
  color: var(--white-color);
}

.hello_themepulpack-menu-wrapper .mobile-logo svg {
  max-width: 185px;
}

.hello_themepulpack-menu-wrapper .hello_themepulpack-menu-toggle {
  border: none;
  font-size: 22px;
  position: absolute;
  right: -16.5px;
  top: 25px;
  padding: 0;
  line-height: 1;
  width: 33px;
  height: 33px;
  line-height: 35px;
  font-size: 18px;
  z-index: 1;
  color: var(--black-color);
  background-color: var(--white-color);
  border-radius: 50%;
}

.hello_themepulpack-menu-wrapper .hello_themepulpack-menu-area {
  width: 100%;
  max-width: 310px;
  background-color: var(--white-color);
  border-right: 3px solid var(--thm-color);
  height: 100%;
  position: relative;
  left: -110%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  z-index: 1;
}

.hello_themepulpack-menu-wrapper.hello_themepulpack-body-visible {
  opacity: 1;
  visibility: visible;
}

.hello_themepulpack-menu-wrapper.hello_themepulpack-body-visible .hello_themepulpack-menu-area {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.hello_themepulpack-mobile-menu {
  overflow-y: scroll;
  max-height: calc(100vh - 200px);
  padding-bottom: 40px;
  margin-top: 33px;
  text-align: left;
}

.hello_themepulpack-mobile-menu ul {
  margin: 0;
  padding: 0 0;
}

.hello_themepulpack-mobile-menu ul li {
  border-bottom: 1px solid;
  list-style-type: none;
}

.hello_themepulpack-mobile-menu ul li li:first-child {
  border-top: 1px solid;
}

.hello_themepulpack-mobile-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 0;
  line-height: 1.4;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--black-color);
  padding-left: 18px;
}


.hello_themepulpack-mobile-menu ul li.hello_themepulpack-active>a {
  color: var(--thm-color);
}

.hello_themepulpack-mobile-menu ul li ul li {
  padding-left: 10px;
}

.hello_themepulpack-mobile-menu ul li ul li:last-child {
  border-bottom: none;
}

.hello_themepulpack-mobile-menu ul .hello_themepulpack-item-has-children>a {
  position: relative;
}

.hello_themepulpack-mobile-menu ul .hello_themepulpack-item-has-children>a .hello_themepulpack-mean-expand {
  position: absolute;
  right: 0;
  top: 50%;
  font-weight: 400;
  font-size: 12px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-top: -12.5px;
  display: inline-block;
  text-align: center;
  background-color: var(--thm-color);
  color: var(--white-color);
  border-radius: 50%;
}

.hello_themepulpack-mobile-menu ul .hello_themepulpack-item-has-children>a .hello_themepulpack-mean-expand:before {
  content: "\F64D";
  font-family: 'bootstrap-icons';

}

.hello_themepulpack-mobile-menu ul .hello_themepulpack-item-has-children>a:after {
  content: "\F659";
  font-family: 'bootstrap-icons';
  width: 22px;
  height: 22px;
  line-height: 22px;
  display: inline-block;
  text-align: center;
  font-size: 12px;
  border-radius: 50px;
  background-color: var(--border-color);
  float: right;
  margin-top: 1px;
}

.hello_themepulpack-mobile-menu ul .hello_themepulpack-item-has-children.hello_themepulpack-active>a .hello_themepulpack-mean-expand:before {
  content: "\F2EA";
  font-family: 'bootstrap-icons';
}

.hello_themepulpack-mobile-menu ul .hello_themepulpack-item-has-children.hello_themepulpack-active>a:after {
  content: "\F2EA";
  font-family: 'bootstrap-icons';
}

.hello_themepulpack-mobile-menu>ul {
  padding: 0 40px;
}

.hello_themepulpack-mobile-menu>ul>li:last-child {
  border-bottom: none;
}

.hello_themepulpack-menu-toggle {
  width: 50px;
  height: 50px;
  padding: 0;
  font-size: 20px;
  border: none;
  display: inline-block;
  border-radius: 5px;
  background: var(--bg-color);
  color: var(--thm-color);
}

.hello_themepulpack-menu-toggle:hover {
  background-color: var(--black-color);
  color: var(--white-color);
}

@media (max-width: 991px) {
  .hello_themepulpack-header .menu-area {
    padding: 10px 0;
  }
}

@media (max-width: 400px) {
  .hello_themepulpack-menu-wrapper .hello_themepulpack-menu-area {
    width: 100%;
    max-width: 270px;
  }

  .hello_themepulpack-mobile-menu>ul {
    padding: 0 20px;
  }
}



.main-menu a {
  display: block;
  position: relative;
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize;
}

.main-menu>ul>li {
  margin: 0 18px;
}

.main-menu>ul>li>a {
  padding: 30px 0;
}

.main-menu ul {
  margin: 0;
  padding: 0;
}

.main-menu ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
}

.main-menu ul li:last-child {
  margin-right: 0 !important;
}

.main-menu ul li:first-child {
  margin-left: 0 !important;
}

.main-menu ul li:hover>ul.sub-menu,
.main-menu ul li:hover ul.mega-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  z-index: 9;
}

.main-menu ul.sub-menu {
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  padding: 0;
  left: -27px;
  background: var(--white-color);
  visibility: hidden;
  min-width: 190px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  opacity: 0;
  z-index: -1;
  border: 0;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.main-menu ul.sub-menu a {
  font-size: 16px;
  line-height: 30px;
}

.main-menu ul.sub-menu a:hover {
  color: var(--thm-color);
}



.main-menu ul.sub-menu li {
  display: block;
  margin: 0 0;
  padding: 0px;
  border-bottom: 1px solid var(--border-color);
}

.main-menu ul li.menu-item-has-children>a:after {
  content: "\f078";
  position: relative;
  margin-left: 3px;
  top: 1px;
  display: inline-block;
  transition: 0.4s;
  transform: rotate(0deg);
  font-size: 12px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 800;
}

.main-menu ul ul li.menu-item-has-children>a:after {
  content: "\f078";
  transform: rotate(-89deg);
  top: 0;
  font-size: 70%;
  right: 0;
  float: right;
}

.main-menu ul.sub-menu li:last-child {
  border: none;
}

.main-menu ul.sub-menu li a {
  position: relative;
  padding-left: 0;
  text-transform: capitalize;
  padding: 15px 20px;
}

.main-menu ul.sub-menu li ul.sub-menu {
  left: 100%;
  right: auto;
  top: 0;
  margin: 0 0;
}

.main-menu ul.sub-menu li ul.sub-menu li ul {
  left: 100%;
  right: auto;
}

.menu-expand {
  font-weight: 500;
  text-transform: capitalize;
  color: var(--black-color);
}

.menu-expand:hover {
  color: var(--thm-color);
}

.menu-expand i {
  margin-right: 8px;
}
.header-logo {
  padding-top: 10px;
  padding-bottom: 10px;
}

.header-logo h2 {
  margin-bottom: 0;
}

/* Footer Wiget Area Style  */

.footer-widget-area {
  background-color: var(--footer-bg-color);
  padding-top: 100px;
  padding-bottom: 60px;
}

/* footer Social Area */
.hello_themepulpackcore-about-widget-social ul li {
  display: inline-block;
}

.footer-widget-area .hello_themepulpackcore-about-widget-social ul li a {
  height: 45px;
  width: 45px;
  background: #15284C;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  margin-right: 8px;
  margin-top: 15px;
  transition: .4s;
}

.footer-widget-area .hello_themepulpackcore-about-widget-social ul li a:hover {
  background: var(--white-color);
  color: var(--black-color);
}

.post-title a:hover {
  color: var(--thm-color);
}

/*  FOOTER COPYRIGHT AREA  */
.footer-copyright-wrapper {
  background-color: var(--copyright-bg);
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
  color: var(--white-color);
}

.footer-copyright-wrapper .site-info {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.footer-copyright-wrapper .site-info a {
  color: var(--white-color);
}

.footer-copyright-wrapper .site-info a:hover {
  color: var(--thm-color);
}
