@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
   font-family: "Poppins", sans-serif;
}
.space-py-100{
	padding-top: 100px;
	padding-bottom: 100px;
}

.card{
    border-radius: 17px;
    border: none;
    margin-bottom: 1.6em;
    box-shadow: 0px 9px 20px rgba(5, 23, 34, 0.07);
    overflow: hidden;
}
.card-body{
  padding: 24px;
}
/************
  Common
*************/

/************
  06 HEADER 
*************/
ul{
	list-style: none;
	margin: 0px;
	padding: 0;
}
a{
	text-decoration: none;
	color: #000000;
}
h1,h2,h3,h4,h5,h6,p{
  margin-bottom: 0;
}
.btn{
  border: none;
  padding: 7px 20px;
}
.btn-sm{
  padding: 5px 15px;
}
.btn-primary {
    color: #fff !important;
    background-color: #4b6cb7 !important;
    transition: all 0.3s ease;
}
.btn-danger{
  background-color: #f04444 !important;
}
.btn_outline_primary{
  color: #4b6cb7;
  border: 1px solid #4b6cb7;
}
.btn_outline_primary:hover{
  color: #ffffff;
  background-color: #4b6cb7;
}
.text_primary{
  color: #4b6cb7;
}

.page-link.active{
  background-color: #4b6cb7 !important;
}
.breadcrumb_sec{
  
}

.title{
  text-transform: uppercase;
  width: fit-content;
  padding-bottom: 10px;
  position: relative;
}
.title:before{
  content: "";
  position: absolute;
  bottom: 0;
  width: 50%;
  border-bottom: 2px solid #f04444;
}s
.top-header {
  z-index: 9;
}
.codex-brand {
  color: #000000;
  font-family: "Righteous", sans-serif;
}
.codex-brand img {
  width: 100%;
  max-width: 60px;
}

.mobile-brand {
  position: relative;
  padding: 10px 20px;
}
.mobile-brand .close-menu {
  position: absolute;
  top: 29%;
  right: -13px;
  color: #fff;
  background: #4b6cb7;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
}
.top_header{
    background-color: #141f36;
    z-index: 1;
    position: relative;
    padding: 10px 0;
}
.top_header .topheader_menu{
  display: flex;
  justify-content: flex-end;
}
.top_header .topheader_menu li{
  padding-left: 14px;
  line-height: 1;
}
.top_header .topheader_menu li:nth-child(n+2){
  border-left: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  padding-left: 14px;
  margin-left: 10px;
}
.top_header .topheader_menu li a{
  color: #ffffff;
}
.top_header .topheader_menu li .btn_subscribe{
  background-color: #ffffff;
  color: #000000;
  font-size: 14px;
  padding: 3px 10px;
  border-radius: 4px;
}
.top_header .topheader_select{
    margin-left: auto;
    display: block;
    margin-top: 10px;
    width: fit-content;
    padding: 4px 12px;
    border-radius: 2px;
    padding-right: 46px;
    font-size: 15px;
}
header {
  padding: 1.563em 0;
  background-color:  #fff;
  position: relative;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  z-index: 2;
}
header .menu_list a {
  color: #000000;
  font-weight: 500;
}
header .menu_list a i {
  font-size: 16px;
}
header .menu_list a i::before {
  font-weight: 600 !important;
}
header .menu_list > li {
  position: relative;
}
header .menu_list > li > a {
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
  font-size: 16px;
}
header .menu_list > li > a i {
  margin-left: 10px;
}
header .menu-action {
  margin-left: 20px;
  display: none;
  position: relative;
  width: 28px;
  height: 30px;
}
header .menu-action span {
  margin: 0 auto;
  position: relative;
  top: 12px;
  transition-duration: 0s;
  transition-delay: 0.2s;
  transition: background-color 0.3s;
  width: 28px;
  height: 4px;
  background-color: #000000;
  display: block;
  opacity: 1;
}
header .menu-action span::before, header .menu-action span::after {
  position: absolute;
  content: "";
  width: 28px;
  height: 4px;
  background-color: #000000;
  display: block;
  opacity: 1;
  transition-property: margin, transform;
  transition-duration: 0.2s;
  transition-delay: 0.2s, 0;
}
header .menu-action span::before {
  margin-top: -8px;
}
header .menu-action span::after {
  margin-top: 8px;
}
header .menu-action.toggle-active span {
  background-color: transparent;
  transition: 0.3s background-color;
}
header .menu-action.toggle-active span::after, header .menu-action.toggle-active span::before {
  margin-top: 0;
  transition-delay: 0, 0.2s;
}
header .menu-action.toggle-active span::before {
  transform: rotate(45deg);
}
header .menu-action.toggle-active span::after {
  transform: rotate(-45deg);
}
header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
  animation: fadeInDown 0.5s ease;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
header .cart_icon {
  position: relative;
}
header .cart_icon .cart_value {
  position: absolute;
  top: -18px;
  right: -5px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4b6cb7;
  color: #fff;
  font-size: 9px;
  font-weight: 500;
  border-radius: 50%;
  z-index: 1;
}
/*Search Bar Satrt */
.search-bar {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  width: 100%;
  height: 100vh;
  padding: 20px;
  transition: all 0.5s ease;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 1111;
}
.search-bar .input-group {
  width: 100%;
  max-width: 800px;
  background-color: #fff;
  border-radius: 5px;
}
.search-bar .input-group .input-group-text {
  padding: 0;
  border: none !important;
}
.search-bar .input-group .input-group-text .btn {
  height: 100%;
  font-weight: 500;
  text-transform: capitalize;
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
  display: flex;
  align-items: center;
  border: none !important;
}
.search-bar .input-group .input-group-text .btn:focus,
.search-bar .input-group .input-group-text .btn:hover {
  border: none !important;
  color: #fff;
  background-color: #4b6cb7 !important;
}
.search-bar .input-group .form-control {
  padding-left: 20px;
  height: 60px;
  border: none !important;
}
.search-bar .clsoe-search {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4b6cb7;
  border-radius: 5px;
}
.search-bar .clsoe-search i {
  color: #fff;
}
.search-bar.open {
  opacity: 1;
  visibility: visible;
}
header .nav_profile .icon_wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}
header .nav_profile .icon_wrap img {
    width: 100%;
    height: 100%;
}
header .nav_profile .dropdown-menu {
    right: 0 !important;
    left: unset !important;
}


/***********
 07 FOOTER
************/
footer {
  position: relative;
  background-color: #0A152F;
}
footer .footer-grid .codex-brand img {
  width: 100%;
  max-width: 200px;
}
footer .footer-grid h4::after, footer .footer-grid h4::before {
  position: absolute;
  content: "";
  height: 2px;
  z-index: -1;
  background-color: #4b6cb7;
  bottom: 0;
}
footer .footer-grid h4::before {
  width: 50px;
  left: 0;
}
footer .footer-grid h4::after {
  width: 25px;
  left: 60px;
}
footer .input-group .btn:hover {
  background-color: #EE3A43;
  border-color: #EE3A43;
}
footer .footer-social a {
  height: 35px;
  width: 35px;
  border: 1px solid #fff;
  transition: all 0.5s ease;
}
footer .footer-social a i {
  color: #fff;
  transition: all 0.5s ease;
}
footer .footer-social a:hover {
  background: #fff;
}
footer .footer-social a:hover i {
  color: #4b6cb7;
}
footer .footer-list li {
  transition: all 0.5s ease;
}
footer .footer-list li a {
  color: #fff;
  transition: all 0.5s ease;
}
footer .footer-list li a i {
  margin-right: 8px;
  font-weight: 800;
}
footer .footer-list li:hover {
  transform: translateX(10px);
}
footer .footer-contact li a i {
  width: 32px;
  height: 32px;
  background-color: #4b6cb7;
  border-radius: 50%;
  transition: all 0.5s ease;
}
footer .footer-contact li:hover a i {
  background-color: #fff;
  color: #4b6cb7;
}

.subfooter {
  background-color: #0A152F;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}