* {
  -webkit-tap-highlight-color: transparent;
  padding: 0px;
  margin: 0px;
}

.linear-gradient {
  background: rgb(239, 242, 244);
  background: linear-gradient(0deg, rgb(239, 242, 244) 0%, rgb(244, 247, 249) 100%);
}

body {
  font-size: 16px;
  color: #000000;
  font-family: "Jost", sans-serif;
}

.wh-text {
  color: #ffffff;
}

.primary-text {
  color: #FEC929;
}

.secondary-text {
  color: #00008B;
}

.primary-bg {
  background: #FEC929;
}
.primary-bg h2, .primary-bg h3, .primary-bg p {
  color: #000000;
}

.primary-light {
  background: rgba(32, 26, 85, 0.2);
}

.secondary-bg {
  background: #00008B;
}

.secondary-light {
  background: rgba(0, 104, 183, 0.4);
}

.gray-bg {
  background: #F5F5F5;
}

.light-bg {
  background: #e8fff4;
}

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

.lg-title {
  font-size: 65px;
}

h1 {
  font-size: 55px;
  line-height: 1.2;
  font-weight: 700;
}

h2 {
  font-size: 45px;
  font-weight: 600;
  line-height: 1.1;
}

h3 {
  font-size: 35px;
  font-weight: 600;
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 18px;
}

.semi-description {
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}

a {
  transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  text-decoration: none;
}

.bg-img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

img {
  max-width: 100%;
}

.radius10 {
  border-radius: 10px;
}

.radius20 {
  border-radius: 20px;
}

.radius30 {
  border-radius: 30px;
}

video.video {
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

a {
  color: #FEC929;
}

a,
a:hover {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

.img-responsive {
  width: 100%;
}

button:focus {
  outline: none !important;
}

.btn {
  padding: 6px 15px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  border-width: 2px;
  color: #FEC929;
  text-transform: capitalize;
  border-radius: 8px;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
.btn i {
  vertical-align: middle;
}
.btn::after {
  content: "";
  position: absolute;
  left: -50%;
  bottom: -50%;
  width: 100%;
  height: 100%;
  background: #ffffff;
  opacity: 0.1;
  z-index: -1;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  transform: scale(0);
}
.btn:hover::after, .btn:focus::after {
  transform: scale(3);
}

.btn-group-lg > .btn, .btn-lg {
  font-size: 1.25rem;
}

.btn-primary {
  background: #FEC929;
  border-color: #FEC929;
  color: #000;
  font-size: 20px;
  font-family: "Jost", sans-serif;
  padding: 10px 50px;
  text-transform: uppercase;
  margin-top: 15px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}

.btn-wh {
  background: #ffffff;
  border-color: #000000;
  color: #000000;
}
.btn-wh:hover, .btn-wh:focus {
  background: #FEC929;
  border-color: #FEC929;
  color: #ffffff;
}

.btn-outline-primary {
  border-color: #FEC929;
  color: #FEC929;
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 500;
  padding: 10px 25px;
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
  background: #FEC929;
  border-color: #FEC929;
  color: #000000;
}

.btn-light-primary {
  background: rgba(32, 26, 85, 0.2);
  border-color: transparent;
  color: #FEC929;
}
.btn-light-primary:hover, .btn-light-primary:focus {
  background: #FEC929;
  border-color: #FEC929;
  color: #ffffff;
}

.btn-outline-secondary {
  border-color: #00008B;
  color: #000000;
}
.btn-outline-secondary:hover, .btn-outline-secondary:focus {
  background: #00008B;
  border-color: #00008B;
  color: #ffffff;
}

.btn-light-secondary {
  background: rgba(0, 104, 183, 0.4);
  border-color: rgba(0, 104, 183, 0.4);
  color: #000000;
}
.btn-light-secondary:hover, .btn-light-secondary:focus {
  background: #00008B;
  border-color: #00008B;
  color: #000000;
}

.line-animation {
  position: relative;
  padding-bottom: 5px;
  text-decoration: none;
}
.line-animation:hover {
  color: #FEC929;
}
.line-animation:focus {
  text-decoration: none;
  border: none;
}
.line-animation::after, .line-animation::before {
  content: "";
  height: 1px;
  position: absolute;
  bottom: 0;
  background: #FEC929;
  transition: all 0.3s ease-in-out;
}
.line-animation::after {
  left: 0;
  right: auto;
}
.line-animation::before {
  left: auto;
  right: 0;
  width: 0;
}
.line-animation:hover::after {
  right: 0;
  left: auto;
  width: 0;
}
.line-animation:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}

#banner-title {
  opacity: 0;
  transform: translateY(50px);
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .container {
    max-width: 1200px;
  }
}
.title {
  margin-bottom: 35px;
}
.title.br {
  padding-bottom: 15px;
  border-bottom: 1px solid #EBEBEB;
}
.title p {
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .title p {
    max-width: 90%;
  }
}

.primary-color {
  color: #FEC929;
}

.wh-color {
  color: #ffffff;
}

.owl-dots {
  text-align: center;
  margin-top: 40px;
}
.owl-dots button {
  width: 25px;
  height: 25px;
  margin: 0 5px;
  background: transparent !important;
  border: 1px solid transparent;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.owl-dots button.active {
  width: 25px;
  height: 25px;
  border: 1px solid #FEC929 !important;
}
.owl-dots button span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: auto;
  background: #FEC929;
}

.form-global form label {
  margin: 0 0 5px;
}
.form-global form input:not([type=submit]):not([type=checkbox]), .form-global form textarea, .form-global form select {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #bfbfbf;
  border-radius: 6px;
  height: 50px;
  padding: 8px 12px;
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0.02em;
  color: #000000;
  margin: 0 0 15px;
  transition: all 0.3s ease-in-out;
}
.form-global form .form-select:focus {
  border-color: #bfbfbf;
  box-shadow: none;
}
.form-global form input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.form-global form input::placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.form-global form input:not([type=submit]):not([type=checkbox]):focus, .form-global form textarea:focus {
  border-color: #FEC929;
}
.form-global form textarea {
  height: 100px;
  resize: none;
}
.form-global form .btn {
  font-size: 18px;
  text-align: center;
  border-radius: 10px;
  padding: 15px;
  border: transparent;
  outline: none;
  width: 100%;
}
@media (max-width: 767px) {
  .form-global form input:not([type=submit]), .form-global form textarea {
    height: 50px;
  }
  .form-global form .btn {
    font-size: 16px;
  }
}
.form-global form .labels {
  margin-bottom: 15px;
}
.form-global form input[type=submit] {
  padding: 10px 35px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
  text-transform: capitalize;
  border-radius: 6px;
  position: relative;
  z-index: 9;
  overflow: hidden;
  border: transparent;
  background: #FEC929;
  margin-top: 10px;
}

.custome_checkbox input {
  display: none;
}
.custome_checkbox label {
  position: relative;
  cursor: pointer;
  color: #000000;
}
.custome_checkbox label:before {
  content: "";
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: #ffffff;
  border: 2px solid #e4e9e7;
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 12px;
}
.custome_checkbox input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #FEC929;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.search-box {
  display: block;
  background-color: #fff;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  transition: all 0.3s;
  transform: translate(0, -110%);
  overflow: hidden;
}
.search-box form {
  position: relative;
}
.search-box form input {
  border: none;
  font-size: 18px;
  padding: 10px;
  padding-left: 55px;
  border-bottom: 2px solid #00008B;
  border-radius: 0;
  color: #222;
  width: 100%;
  outline: none;
  height: 120px;
}
.search-box form input::-moz-placeholder {
  color: #999999;
}
.search-box form input::placeholder {
  color: #999999;
}
.search-box form i {
  font-size: 25px;
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
  height: 32px;
  line-height: 1.2;
  left: 20px;
  color: #00008B;
}
.search-box button.close {
  position: absolute;
  top: 25px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: transparent;
  z-index: 9;
  border: transparent;
  opacity: 1;
}
@media (max-width: 767px) {
  .search-box {
    height: 75px;
  }
  .search-box button.close {
    width: 30px;
    height: 30px;
  }
  .search-box form input {
    font-size: 16px;
    height: 75px;
  }
  .search-box form i {
    font-size: 20px;
    top: 22px;
  }
}

.search-box.show {
  transform: translate(0, 0);
}

.circle {
  mix-blend-mode: difference !important;
  position: fixed;
  background-color: #fff;
  width: 10px;
  height: 10px;
  left: -11px;
  top: -11px;
  border-radius: 100%;
  z-index: 1;
  z-index: 10000;
  transform: scale(1);
  mix-blend-mode: multiply;
}

.circle.active {
  mix-blend-mode: difference;
  opacity: 1;
  transform: scale(0);
}

.circle-follow {
  mix-blend-mode: difference;
  position: fixed;
  border: 1px solid #fff;
  width: 30px;
  height: 30px;
  left: -21px;
  top: -21px;
  border-radius: 100%;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  transform: scale(1);
}

.circle-follow.active {
  mix-blend-mode: difference;
  transform: scale(1.2);
}

.topheader {
  background: #FEC929;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.2s ease-in-out;
}
.topheader .header-top-section {
  background: #ffffff;
  padding: 5px 0;
}
.topheader .header-top-section .navbar-brand {
  padding: 0;
  display: table;
}
.topheader .header-top-section .navbar-brand img {
  max-width: 160px;
}
@media (max-width: 767px) {
  .topheader .header-top-section .navbar-brand img {
    max-width: 130px;
  }
  .topheader .header-top-section .container .row {
    display: flex;
  }
  .topheader .header-top-section .container .row .nav-brand {
    width: 50%;
  }
  .topheader .header-top-section .container .row .contact-nav {
    width: 50%;
  }
  .topheader .header-top-section .container .row .contact-nav ul {
    padding-right: 20px;
  }
}
.topheader .header-top-section .contact-nav {
  text-align: right;
}
.topheader .header-top-section .contact-nav ul li {
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
  font-size: 18px;
}
.topheader .header-top-section .contact-nav ul li a {
  color: #000000;
  position: relative;
}
.topheader .header-top-section .contact-nav ul li .cartsec {
  position: relative;
}
.topheader .header-top-section .contact-nav ul li .cartsec .count {
  background-color: #FEC929;
  color: #000000;
  font-size: 15px;
  text-align: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  right: -20px;
  top: -8px;
}
.topheader .header-top-section .contact-nav ul li .input-group {
  border: 1px solid #E4E4E4;
  border-radius: 35px;
  overflow: hidden;
}
.topheader .header-top-section .contact-nav ul li .input-group .form-control {
  border: none;
  min-width: 400px;
}
.topheader .header-top-section .contact-nav ul li .input-group .form-control:focus {
  box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}
.topheader .header-top-section .contact-nav ul li .input-group .input-group-text {
  border: none;
  background-color: #ffffff;
}
.topheader .header-top-section .contact-nav ul li .input-group .input-group-text .btn {
  background-color: #ffffff;
  color: #000000;
  padding: 0;
  font-size: 20px;
}
@media (max-width: 1023px) {
  .topheader .header-top-section .contact-nav ul li .input-group .form-control {
    min-width: 280px;
  }
}
@media (max-width: 1023px) {
  .topheader .header-top-section .contact-nav ul {
    padding-right: 18px;
  }
}
.topheader .header-top-section .btn {
  box-shadow: none;
}
.topheader ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.topheader .navbar-nav {
  flex-wrap: wrap;
}
.topheader nav {
  text-align: center;
  padding: 10px 0;
}
@media (max-width: 1170px) {
  .topheader nav {
    display: none;
  }
}
.topheader nav > ul > li {
  display: inline-block;
  vertical-align: middle;
}
.topheader nav > ul > li:not(:last-child) {
  margin: 0 30px;
}
@media (max-width: 1390px) {
  .topheader nav > ul > li:not(:last-child) {
    margin: 0 20px;
  }
}
@media (max-width: 1280px) {
  .topheader nav > ul > li:not(:last-child) {
    margin: 0 10px;
  }
}
.topheader nav > ul > li > a {
  padding: 10px 0;
  display: block;
}
.topheader nav li a {
  color: #000000;
  font-size: 15px;
  font-weight: 400;
  display: block;
  position: relative;
}
.topheader nav li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  right: 0;
  margin: auto;
  height: 1px;
  background: #fff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1390px) {
  .topheader nav li a {
    font-size: 15px;
  }
}
@media (max-width: 1280px) {
  .topheader nav li a {
    font-size: 14px;
  }
}
.topheader nav li a i {
  display: inline-block;
  margin-top: 2px;
  font-size: 16px;
}
.topheader nav li a:hover {
  color: #fff;
}
.topheader nav li a:hover::before {
  width: 100%;
}
.topheader nav li.has-mega-menu {
  position: static;
}
.topheader nav li.has-mega-menu > .dropdown-menu {
  width: auto;
  left: auto;
}
.topheader .dropdown-menu {
  border-radius: 0px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: 1px solid #D7D7D7;
  min-width: 14rem;
}
.topheader .dropdown-menu a {
  padding: 8px 18px;
  font-size: 14px;
  display: block;
}
.topheader .search-link {
  font-size: 18px;
  float: right;
  display: table;
  color: #555555;
}
@media (max-width: 767px) {
  .topheader .search-link {
    padding: 15px 0;
    font-size: 12px;
  }
}
.topheader .hummenu {
  font-size: 1.7em;
  display: block;
  padding: 0 10px;
  color: #000000;
  position: relative;
  top: 2px;
}
@media (min-width: 1171px) {
  .topheader .menu-icon-area {
    display: none;
  }
}
@media (max-width: 1170px) {
  .topheader .menu-icon-area {
    margin-right: auto;
  }
  .topheader .search-link {
    padding: 15px 0;
  }
}
@media (max-width: 767px) {
  .topheader .hummenu {
    padding: 0;
  }
}
.topheader .header-dark {
  background-color: #000000;
  width: 100%;
  text-align: center;
  padding: 6px;
}
.topheader .header-dark p {
  margin: 0;
  color: #fff;
}

.navbar .megamenu h3 {
  font-size: 22px;
  text-transform: uppercase;
}

.inner-menu-row {
  display: flex;
}
.inner-menu-row .inner-menu-col {
  flex-basis: 33%;
  padding-right: 10px;
}
.inner-menu-row .inner-menu-col a {
  color: #000000;
  padding: 7px 3px;
}
.inner-menu-row .inner-menu-col a:hover {
  color: #00008B;
}
.inner-menu-row .inner-menu-col .button-dropdown {
  border-bottom: 1px solid #CFCFCF;
}
.inner-menu-row .inner-menu-col .dropdown-toggle1 {
  position: relative;
}
.inner-menu-row .inner-menu-col .dropdown-toggle1:after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  position: absolute;
  right: 8px;
  top: 18px;
}
.inner-menu-row .inner-menu-col .dropdown-menu2 {
  display: none;
  position: relative;
  left: 0;
  padding: 0 0 0 20px;
  margin: 0;
  margin-top: 3px;
  text-align: left;
}
.inner-menu-row .inner-menu-col .dropdown-menu2 li {
  border-bottom: 1px dashed #CFCFCF;
}
.inner-menu-row .inner-menu-col .dropdown-menu2 li:last-child {
  border: none;
}

.nav-height {
  height: 120px;
  display: block;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 1170px) {
  .nav-height {
    height: 65px;
  }
}
@media (max-width: 991px) {
  .nav-height {
    height: 108px;
  }
}
@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}
.slidemenu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.5);
  z-index: 10;
  opacity: 0;
  z-index: 9999;
  transition: all 0.3s;
  pointer-events: none;
  visibility: hidden;
}
.slidemenu-overlay.open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}

.slidemenu {
  position: fixed;
  z-index: 9999;
  top: 0;
  bottom: 0;
  right: -320px;
  width: 320px;
  background: #fff;
  color: #FEC929;
  transition: all 0.3s;
}
@media only screen and (max-width: 400px) {
  .slidemenu {
    right: -100%;
    width: 100%;
  }
}
.slidemenu .slidemenu-header {
  text-align: right;
  height: 52px;
}
.slidemenu .slidemenu-header .close-menu {
  display: inline-block;
  padding: 10px 15px;
  font-size: 30px;
  color: #a4a4a4;
}
.slidemenu .slidemenu-menu-area {
  height: calc(100vh - 52px);
  overflow-y: auto;
}
.slidemenu .slidemenu-menu-area .login-signup {
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
}
.slidemenu .slidemenu-menu-area .login-signup .btn {
  width: 45%;
  display: block;
}
.slidemenu .slidemenu-items {
  padding: 10px 20px;
}
.slidemenu .slidemenu-items .user-icon {
  position: relative;
  top: 2px;
  margin-right: 5px;
}
.slidemenu .slidemenu-items li.user-item a {
  position: relative;
}
.slidemenu .slidemenu-items li.user-item svg {
  position: absolute;
  top: 13px;
  left: 0;
}
.slidemenu .slidemenu-items li.user-item li a {
  padding-left: 0;
}
.slidemenu .slidemenu-items a {
  color: #000000;
  font-size: 18px;
}
.slidemenu .slidemenu-items > li {
  border-bottom: 1px solid #d9d9d9;
  font-size: 1em;
  font-weight: 500;
}
.slidemenu .slidemenu-items > li > a {
  padding: 15px 0px;
  display: block;
  position: relative;
}
.slidemenu .slidemenu-items > li > a:focus {
  text-decoration: none;
}
.slidemenu .slidemenu-items > li > a.collapsed i::before {
  content: "\ea13";
}
.slidemenu .slidemenu-items > li > a i {
  position: absolute;
  right: 0px;
  top: 10px;
  font-size: 25px;
}
.slidemenu .slidemenu-items > li > a i::before {
  content: "\f1af";
}
.slidemenu .sub-menu li a {
  font-weight: 400;
  display: block;
  padding: 5px 0px;
  font-size: 1.1em;
  color: #333;
}
.slidemenu .sub-menu li:last-child {
  margin-bottom: 15px;
}
.slidemenu.menu-open {
  right: 0;
}

@keyframes animName {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes mover2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-10px);
  }
}
.background-bg {
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  position: relative;
  z-index: 9;
}

.checkout-header {
  padding: 5px 0;
  border-bottom: 1px solid #D6D6D6;
}
.checkout-header .navbar-brand img {
  max-width: 200px;
}
.checkout-header .cart-icon {
  position: relative;
}
.checkout-header .cart-icon i {
  color: #000000;
  font-size: 35px;
}
.checkout-header .cart-icon b {
  position: absolute;
  width: 25px;
  height: 25px;
  background: #FEC929;
  text-align: center;
  border-radius: 50%;
  color: #000000;
  font-weight: 400;
  top: 0px;
  right: -8px;
  font-size: 15px;
  padding: 2px;
}

.banner {
  position: relative;
  overflow: hidden;
  height: auto;
  display: flex;
  flex-wrap: wrap;
}
.banner .carousel {
  width: 100%;
}
.banner .carousel-caption {
  position: absolute;
  right: 25%;
  left: 25%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
  top: 28%;
}
.banner .carousel-caption h1 {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 58px;
  color: #000;
  margin-bottom: 20px;
}
.banner .carousel-caption p {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: #000;
  margin-bottom: 20px;
}
.banner button span {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  background-size: 31px;
  border-radius: 50%;
}
.banner .banner-text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 9;
  align-items: center;
}
.banner .w-100 {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100vh;
}
.banner .owl-dots {
  position: absolute;
  left: 30px;
  top: 50%;
  width: 20px;
  margin: 0;
}
@media (max-width: 767px) {
  .banner .carousel .carousel-inner .carousel-item img {
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.inner-banner {
  position: relative;
  z-index: 9;
}
.inner-banner h1 {
  color: #ffffff;
  margin: 0 0 25px;
}
@media (max-width: 767px) {
  .inner-banner h1 h1 {
    line-height: 1.2;
  }
}
.inner-banner p {
  color: #ffffff;
}
.inner-banner .banner-text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  bottom: 0;
  height: 100%;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
}
.inner-banner .banner-text .breadcrumbs {
  margin-left: auto;
}
.inner-banner .banner-text .breadcrumbs li {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
}
.inner-banner .banner-text .breadcrumbs li a {
  color: #ffffff;
}
.inner-banner .banner-text .breadcrumbs li span {
  margin: 0 3px;
}
@media (max-width: 767px) {
  .inner-banner .w-100 {
    aspect-ratio: 16/9;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .inner-banner h1 {
    margin: 0 0 5px;
  }
  .inner-banner .banner-text .breadcrumbs li {
    font-size: 12px;
  }
}

.courses-list {
  padding: 80px 0;
}
.courses-list .pagination {
  justify-content: center;
  margin-top: 50px;
  gap: 10px;
}
.courses-list .pagination .page-link {
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #000000;
}
.courses-list .pagination .active .page-link {
  background: #ffffff;
  border-color: #FEC929;
  color: #FEC929;
}
@media (max-width: 767px) {
  .courses-list .pagination .page-link {
    border-radius: 4px;
    font-size: 13px;
  }
}

.nav-pain {
  display: flex;
  justify-content: center;
  align-content: center;
  margin-bottom: 50px;
}
.nav-pain .nav {
  border: 1px solid #D9D9D9;
}
.nav-pain .nav .nav-link {
  padding: 15px 60px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  color: #000000;
}
.nav-pain .nav .nav-link:hover {
  color: #FEC929;
}
.nav-pain .nav .nav-link.active {
  background: #FEC929;
  color: #ffffff;
}
@media (max-width: 767px) {
  .nav-pain .nav .nav-link {
    padding: 10px 12px;
    font-size: 10px;
  }
}

.course-grid h3 {
  font-size: 24px;
  color: #000000;
  font-weight: bold;
}
.course-grid h3:hover {
  color: #FEC929;
}
.course-grid h3 a {
  color: #000000;
}
.course-grid h3 a:hover {
  color: #FEC929;
}
.course-grid .time {
  font-size: 16px;
  color: #00008B;
  margin: 12px 0 10px;
}
.course-grid .location {
  font-size: 16px;
  margin: 0 0 30px;
  display: block;
  font-weight: 500;
}
.course-grid .location i {
  color: #00008B;
}
@media (max-width: 767px) {
  .course-grid h3 {
    font-size: 15px;
  }
  .course-grid .location {
    font-size: 12px;
    margin: 0 0 20px;
  }
}

.courses-details-main h2 {
  font-size: 35px;
  margin: 20px 0 30px;
}
.courses-details-main .location {
  float: right;
  margin: 20px 0 0;
}
.courses-details-main .location i {
  color: #00008B;
}
.courses-details-main .time {
  margin: 0 0 30px;
  color: #00008B;
}
.courses-details-main .director-sec {
  padding: 0 40px 50px;
}
.courses-details-main .director-sec p {
  margin: 20px 0 30px;
}
.courses-details-main .director-sec .email {
  font-size: 25px;
  font-weight: 700;
  margin: 20px 0 0;
  display: inline-block;
  color: #FEC929;
}
.courses-details-main .highlited-sec {
  background: #FAFAFA;
  overflow: hidden;
  border-top-right-radius: 30px;
  padding: 40px;
  margin-bottom: 40px;
}
.courses-details-main .highlited-sec .main-tab {
  font-size: 20px;
  background: #FEC929;
  color: #fff;
  padding: 20px 30px;
  margin: 0 -40px 30px;
}
.courses-details-main .highlited-sec .lecture-sec {
  margin: 0 0 30px;
}
.courses-details-main .highlited-sec h3 {
  margin: 0 0 20px;
  font-weight: 700;
  font-size: 30px;
}
.courses-details-main .highlited-sec h5 {
  margin: 0 0 15px;
}
.courses-details-main .highlited-sec ul {
  margin-left: 15px;
}
.courses-details-main .highlited-sec ul li {
  margin: 0 0 12px;
}
@media (max-width: 767px) {
  .courses-details-main h2 {
    font-size: 18px;
    margin: 10px 0 10px;
  }
  .courses-details-main .location {
    float: none;
    margin: 15px 0 0;
    display: block;
    font-size: 14px;
  }
  .courses-details-main .time {
    margin: 0 0 20px;
    font-size: 12px;
  }
  .courses-details-main .director-sec {
    padding: 0 0 10px;
  }
  .courses-details-main .director-sec .email {
    font-size: 15px;
    margin: 10px 0 10px;
  }
  .courses-details-main .highlited-sec {
    border-top-right-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
  }
  .courses-details-main .highlited-sec .main-tab {
    font-size: 14px;
    padding: 15px 10px;
    margin: 0 -20px 15px;
    border-top-right-radius: 10px;
  }
  .courses-details-main .highlited-sec .lecture-sec {
    margin: 0 0 20px;
  }
  .courses-details-main .highlited-sec h3 {
    margin: 0 0 10px;
    font-size: 18px;
  }
  .courses-details-main .highlited-sec ul li {
    margin: 0 0 10px;
    font-size: 14px;
  }
}

.details-sidebar {
  background: #FEC929;
  color: #ffffff;
  padding: 40px 40px;
}
.details-sidebar h3 {
  margin: 0 0 20px;
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 700;
}
.details-sidebar ul {
  border-bottom: 1px solid #BDBDBD;
  margin: 0 0 30px;
}
.details-sidebar li {
  list-style: none;
  margin: 0 0 30px;
}
.details-sidebar li h5, .details-sidebar li p {
  font-size: 20px;
}
.details-sidebar li h5 {
  font-weight: 700;
  margin: 0 0 10px;
}
.details-sidebar li p a {
  color: #ffffff;
  font-weight: 600;
}
@media (max-width: 767px) {
  .details-sidebar {
    padding: 20px 15px;
  }
  .details-sidebar h3 {
    margin: 0 0 15px;
    font-size: 18px;
  }
  .details-sidebar li {
    margin: 0 0 20px;
  }
  .details-sidebar li h5, .details-sidebar li p {
    font-size: 15px;
  }
}

.faculty-container .faculty-list:nth-of-type(even) {
  background-color: #F3F1FF;
}

.faculty-list {
  padding: 80px 0;
}
.faculty-list h3 {
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 10px;
}
.faculty-list p {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .faculty-list p {
    margin-top: 0;
  }
  .faculty-list .row {
    margin-bottom: 10px;
  }
}

.graybg {
  background-color: #F3F1FF;
}

.container {
  max-width: 1600px;
}

/*=================About====================*/
.container-section {
  background-color: #Fff;
  padding: 80px 0;
}
.container-section .titlesection {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 10%;
}
.container-section .titlesection h2 {
  font-size: 45px;
  font-weight: bold;
}
.container-section .titlesection p {
  font-size: 18px;
  color: #000000;
  line-height: 36px;
}

.pro-card {
  margin-bottom: 10px;
  background-color: #fff;
  width: 100%;
  height: 100%;
  padding: 0px;
  border-radius: 0px;
  background-color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s; /* Animation */
}
.pro-card .iconthumb {
  margin-bottom: 0px;
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.2s; /* Animation */
}
.pro-card .iconthumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.2s; /* Animation */
}
.pro-card figcaption {
  position: absolute;
  width: 90%;
  left: 5%;
  bottom: 15px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10px;
}
.pro-card figcaption h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}
.pro-card figcaption .btn {
  padding: 3px;
  color: #00008B;
}
.pro-card figcaption .btn:hover {
  color: #FEC929;
}
.pro-card h3 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}
.pro-card p {
  margin: 0;
  font-size: 18px;
}
.pro-card:hover .iconthumb img {
  transform: scale(1.1);
}

.about-section-nd {
  padding: 0 0 80px 0;
}
.about-section-nd .sale-section {
  background-image: url(../images/bg1.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 220px 60px;
}
.about-section-nd .sale-section h2 {
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  font-size: 65px;
  color: #000;
}
.about-section-nd .sale-section h3 {
  font-weight: 600;
  font-size: 40px;
  color: #000;
}
.about-section-nd .sale-section p {
  font-size: 25px;
  line-height: 1.5;
  font-weight: 400;
}

.featured-area {
  padding: 10px 0 80px 0;
}

.singel-box {
  margin-bottom: 20px;
}
.singel-box .singel-image {
  margin-bottom: 20px;
}
.singel-box .singel-image img {
  width: 100%;
}
.singel-box .singel-dtls h4 a {
  color: #000;
  font-weight: 500;
  font-size: 20px;
}
.singel-box .singel-dtls h4 a:hover {
  color: #FEC929;
}
.singel-box .singel-dtls p {
  font-size: 17px;
}
.singel-box .singel-dtls .price {
  color: #00008B;
  font-weight: 500;
  font-size: 18px;
}

.fliter-show {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fliter-show p {
  margin: 0px;
}
.fliter-show .sort-view {
  display: flex;
  gap: 15px;
  align-items: center;
}
.fliter-show .sort-view .sort-select span {
  margin-right: 10px;
}
.fliter-show .sort-view .sort-select select {
  border: 1px solid #E1E1E1;
  border-radius: 5px;
  padding: 5px 12px;
  font-size: 16px;
  height: 45px;
  background: #fff;
  min-width: 232px;
}
.fliter-show .sort-view .sort-view-ankor {
  color: #000;
  font-size: 25px;
}
.fliter-show .sort-view .sort-view-ankor:hover {
  color: #FEC929;
}

.shipping-section-counter {
  background-color: #000000;
  color: #ffffff;
  padding: 70px 0;
}
.shipping-section-counter .counter-container {
  text-align: center;
}
.shipping-section-counter .counter-container .count-row {
  display: flex;
  font-size: 70px;
  justify-content: center;
  font-weight: bold;
  color: #ffffff;
}
.shipping-section-counter .counter-container .ship-icon {
  margin-bottom: 15px;
}
.shipping-section-counter .counter-container h3 {
  font-size: 25px;
  margin-bottom: 15px;
}
.shipping-section-counter .counter-container p {
  color: #ffffff;
  font-size: 18px;
}

.about-content-section {
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}
.about-content-section .abnthumb {
  margin-right: -15px;
}
.about-content-section .about-content {
  padding-left: 16%;
}
.about-content-section h2 {
  text-transform: uppercase;
  margin-bottom: 25px;
  line-height: 70px;
}
.about-content-section p {
  font-size: 20px;
  line-height: 38px;
  margin-bottom: 25px;
}
.about-content-section .primary-btn {
  background-color: #000000;
  color: #ffffff;
  padding: 10px 25px;
  font-size: 18px;
}
.about-content-section .primary-btn:hover {
  background-color: #005ea6;
}
.about-content-section .abnthumb-left {
  margin-left: -15px;
}
.about-content-section .about-content-right {
  padding-right: 16%;
}

.about-syct-section {
  background-image: url(../images/aboutbg2.png);
  background-size: cover;
  padding: 120px 0;
}
.about-syct-section .container {
  max-width: 1200px;
}
.about-syct-section .about-content-syct {
  background-color: rgba(29, 24, 81, 0.9);
  text-align: center;
  color: #ffffff;
  padding: 50px 10%;
}
.about-syct-section .about-content-syct h2 {
  text-transform: uppercase;
  font-size: 45px;
  margin-bottom: 30px;
  color: #ffffff;
}
.about-syct-section .about-content-syct p {
  font-size: 22px;
  margin-bottom: 35px;
  color: #ffffff;
}
.about-syct-section .about-content-syct .primary-btn {
  background-color: #ffffff;
  color: #000000;
  font-size: 20px;
  padding: 12px 30px;
}
.about-syct-section .about-content-syct .primary-btn:hover {
  background-color: #000000;
  color: #ffffff;
}

/*=================================
Blog
=============================================*/
.blog-grid {
  margin-bottom: 30px;
}
.blog-grid:hover .blog-thumb img {
  filter: grayscale(80%);
  transform: scale(1.1);
}

.blog-thumb {
  width: 100%;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.blog-thumb img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.blog-cont h3 {
  font-size: 26px;
  color: #000000;
  font-weight: bold;
  margin-bottom: 15px;
}
.blog-cont h3:hover {
  color: #FEC929;
}
.blog-cont h3 a {
  color: #000000;
}
.blog-cont h3 a:hover {
  color: #FEC929;
}
.blog-cont .time {
  margin-bottom: 15px;
  color: #F3F3F3;
  font-size: 18px;
}
.blog-cont p {
  font-size: 18px;
  line-height: 36px;
}

.blog-card {
  margin-bottom: 40px;
  width: 100%;
}
.blog-card:hover .blog-thumb img {
  filter: grayscale(80%);
  transform: scale(1.1);
}

.articles-section {
  background-image: url(../images/Bannerbg.png);
  background-repeat: repeat-x;
}

.articles-details {
  width: 100%;
}
.articles-details h3 {
  color: #ffffff;
  font-size: 45px;
  max-width: 900px;
  font-weight: bold;
  margin-bottom: 20px;
}
.articles-details .time {
  margin-bottom: 30px;
  color: #ffffff;
  font-size: 18px;
}
.articles-details .blog-thumb {
  margin-bottom: 30px;
}
.articles-details p {
  font-size: 18px;
  color: #000000;
  line-height: 36px;
}

.related-post-section {
  background-color: #F7F6F6;
  padding: 80px 0 50px;
}
.related-post-section .related-post {
  margin-bottom: 40px;
  text-align: center;
}
.related-post-section .related-post h2 {
  color: #141E25;
  font-size: 50px;
  font-weight: bold;
}

.who-we-are {
  background-image: url(../images/bg2.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 175px 0px;
}
.who-we-are .contents-section h2 {
  font-size: 80px;
  font-weight: 500;
  margin-bottom: 25px;
}
.who-we-are .contents-section p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 2;
}

.section-title {
  color: #000;
  font-weight: 500;
  font-size: 50px;
  margin-bottom: 25px;
}

.navbar .megamenu {
  padding: 1rem;
}

/* ============ desktop view ============ */
@media all and (min-width: 992px) {
  .navbar .has-megamenu {
    position: static !important;
  }
  .navbar .megamenu {
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 0;
  }
}
/* ============ desktop view .end// ============ */
/* ============ mobile view ============ */
@media (max-width: 991px) {
  .navbar.fixed-top .navbar-collapse, .navbar.sticky-top .navbar-collapse {
    overflow-y: auto;
    max-height: 90vh;
    margin-top: 10px;
  }
}
/* ============ mobile view .end// ============ */
@media only screen and (min-width: 768px) and (max-width: 1199.99px) {
  .about-card h3 {
    font-size: 22px;
  }
  .about-card {
    padding: 16px;
  }
  .about-section-nd {
    padding: 60px 0;
  }
  .about-section-nd h2 {
    line-height: 45px;
  }
  .about-section-nd p {
    font-size: 17px;
    line-height: 32px;
  }
  .about-section-nd .row .col-md-5 {
    width: 70%;
  }
  .about-section-counter .counter-container .count-row {
    font-size: 50px;
  }
  .about-section-counter .counter-container p {
    font-size: 20px;
  }
  .about-content-section .about-content {
    padding-left: 0;
  }
  .about-content-section h2 {
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 40px;
  }
  .about-content-section p {
    font-size: 17px;
    line-height: 32px;
  }
  .about-content-section .about-content-right {
    padding-right: 0;
  }
  .about-syct-section .about-content-syct h2 {
    font-size: 35px;
  }
}
@media (max-width: 767.99px) {
  .articles-section {
    padding: 30px 0;
    background-size: 100% 300px;
  }
  .articles-details h3 {
    font-size: 32px;
  }
  .related-post-section {
    padding: 50px 0 30px;
  }
  .related-post-section .related-post h2 {
    font-size: 35px;
  }
  .blog-cont h3 {
    font-size: 20px;
  }
  .about-section-nd {
    padding: 50px 0;
  }
  .about-content-section .about-content {
    padding-left: 0;
  }
  .about-content-section h2 {
    line-height: 50px;
  }
  .about-content-section .about-content-right {
    padding-right: 0%;
  }
  .about-syct-section .about-content-syct h2 {
    font-size: 32px;
  }
  .about-syct-section {
    padding: 60px 0;
  }
  .about-content-section p {
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 25px;
  }
  .aboutsectionfast .titlesection p {
    font-size: 16px;
    color: #000000;
    line-height: 32px;
  }
  .about-card p {
    font-size: 16px;
  }
  .about-section-nd h2 {
    font-size: 40px;
  }
  .about-section-nd p {
    font-size: 16px;
    line-height: 32px;
  }
  .about-syct-section .about-content-syct p {
    font-size: 18px;
  }
  .footer-bottom .row {
    flex-direction: column;
  }
  .footer-bottom .menu {
    display: flex;
    align-items: center;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.top-head {
  background-color: #FEC929;
}
.top-head ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 15px 0;
  margin: 0;
}
.top-head ul li {
  font-size: 14px;
  color: #ffffff;
}
.top-head ul li img {
  max-width: 22px;
}

.checkout-nav-banner {
  padding: 20px 0;
  background: #6A958F;
}

.checkout-sec {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .checkout-sec {
    padding: 30px 0;
  }
}

.checkout-process {
  padding-right: 60px;
}
.checkout-process .label-heading {
  display: flex;
  justify-content: space-between;
  margin: 0 0 20px;
}
.checkout-process .label-heading h4 {
  font-weight: 500;
}
.checkout-process .label-heading .link {
  color: #000;
  text-decoration: underline;
  font-weight: 500;
}
.checkout-process .form-content {
  padding: 30px 0;
}
.checkout-process .form-content:nth-last-of-type(1) {
  border: none;
}
.checkout-process .btn.rc {
  display: flex;
  justify-content: space-between;
  width: 250px;
  padding: 12px 10px;
  margin-top: 40px;
  border-radius: 0;
  font-size: 18px;
}
.checkout-process .form-infomation {
  margin: 10px 0 30px;
}
.checkout-process .form-infomation h6 {
  margin-bottom: 10px;
}
.checkout-process .form-infomation p, .checkout-process .form-infomation address {
  color: #F3F3F3;
}
.checkout-process .form-infomation address {
  white-space: pre-line;
  font-style: inherit;
  line-height: 1.8;
}
.checkout-process .delivery-box {
  border: 1px solid #000000;
  padding: 20px 30px;
  margin: 30px 0 40px;
  position: relative;
}
.checkout-process .delivery-box i {
  position: absolute;
  right: 25px;
  top: 12px;
  width: 30px;
  font-size: 24px;
}
.checkout-process .delivery-box h6 {
  font-weight: 600;
}
.checkout-process p {
  font-size: 16px;
}
.checkout-process .options-highlited {
  background: #EEFAFA;
  padding: 20px 20px;
  margin-top: 20px;
  color: #78CBC0;
}
.checkout-process .options-highlited i {
  float: right;
  color: #000000;
  font-size: 20px;
}
.checkout-process .brand-bar {
  text-align: center;
  margin-bottom: 40px;
}
.checkout-process .sucessful-msg {
  padding: 10px;
  background: #EEFAFA;
  border-radius: 10px;
  color: #FEC929;
}
.checkout-process .paypal-area {
  text-align: center;
  padding: 25px 15px 15px;
  border-radius: 10px;
  border: 1px solid #dddddd;
  margin: 40px 0 30px;
  position: relative;
}
.checkout-process .paypal-area span {
  position: absolute;
  top: -15px;
  z-index: 9;
  right: 0;
  left: 0;
  background: #ffffff;
  padding: 0 10px;
  display: table;
  margin: auto;
}
.checkout-process .register-login {
  margin-bottom: 40px;
}
.checkout-process .register-login .link-btn {
  background: #FEC929;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  color: #ffffff;
  margin-left: 5px;
}
.checkout-process .nav-tabs {
  border: transparent;
}
.checkout-process .nav-tabs li {
  margin: 0 10px;
}
.checkout-process .nav-tabs .nav-link {
  border: 1px solid #EBEBEB;
  margin: 0;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  padding: 8px 20px;
}
.checkout-process .nav-tabs .nav-link:hover {
  color: #FEC929;
}
.checkout-process .nav-tabs .nav-link.active {
  border-color: #FEC929;
  background-color: #FEC929;
  color: #ffffff;
}
.checkout-process form .form-group {
  margin-bottom: 15px;
}
.checkout-process form .form-control, .checkout-process form .form-select {
  width: 100%;
  height: 55px;
  border-radius: 0;
  border: 1px solid #404040;
  background-color: #ffffff;
  outline: none;
  box-shadow: none;
  font-size: 15px;
}
.checkout-process form .form-control::-moz-placeholder, .checkout-process form .form-select::-moz-placeholder {
  color: #989898;
}
.checkout-process form .form-control::placeholder, .checkout-process form .form-select::placeholder {
  color: #989898;
}
.checkout-process form .form-control:focus, .checkout-process form .form-select:focus {
  border-color: #FEC929;
  box-shadow: none;
}
.checkout-process form .input-icon {
  position: relative;
}
.checkout-process form .input-icon .i-check {
  position: absolute;
  right: 10px;
  top: 0;
  width: 25px;
  bottom: 0;
  margin: auto;
}
.checkout-process form select.form-control {
  background-image: url("../images/select-drop-down.png");
  background-position: 98% center;
  background-repeat: no-repeat;
  background-size: 10px;
}
.checkout-process form .field {
  position: relative;
  width: 100%;
}
.checkout-process form .field .field-label {
  position: absolute;
  left: 12px;
  top: 5px;
  font-size: 13px;
  color: #9E9E9E;
}
.checkout-process form .field select {
  padding-top: 16px;
  color: #9E9E9E;
  font-size: 15px;
}
.checkout-process form .custome_checkbox {
  margin: 20px 0 20px;
}
.checkout-process form .input-group .flag button {
  background: #F1F1F1;
  border: transparent;
  height: 55px;
  width: 100px;
  border-radius: 10px;
  font-size: 18px;
}
.checkout-process form .input-group .flag img {
  width: 20px;
}
.checkout-process form .input-group .flag .dropdown-menu {
  min-width: 210px;
}
.checkout-process form .payment-information {
  border: 1px solid #000000;
}
.checkout-process form .payment-information .form-check-input:checked {
  background-color: #FEC929;
  border-color: #FEC929;
}
.checkout-process form .payment-information .opt-label {
  width: 100%;
  margin: 0;
  padding: 15px 20px;
}
.checkout-process form .payment-information .opt-label .cards {
  float: right;
  width: 160px;
  margin: 5px 0 0;
}
.checkout-process form .payment-information .payment-method {
  padding: 20px;
  border-bottom: 1px solid #dddddd;
}
.checkout-process form .payment-information #cards .form-control {
  background: #ffffff;
}
.checkout-process form .payment-information #paypal {
  border-bottom: transparent;
}
.checkout-process form .payment-information .input-icon {
  position: relative;
}
.checkout-process form .payment-information .input-icon .icon {
  position: absolute;
  right: 10px;
  top: 0;
  width: 120px;
  bottom: 0;
  margin: auto;
}
.checkout-process form .checkout-btn {
  width: 100%;
  font-size: 22px;
  font-weight: 500;
}
.checkout-process form .checkout-btn i {
  vertical-align: middle;
}
@media (max-width: 767px) {
  .checkout-process form .labels {
    margin: 15px 0 20px;
  }
}
@media (max-width: 767px) {
  .checkout-process {
    padding-right: 0;
  }
  .checkout-process .form-content {
    padding: 15px 0 0;
  }
}

.order-review {
  background: #FCFCFC;
  padding: 30px;
}
.order-review table {
  width: 100%;
}
.order-review table td {
  padding: 12px 0;
  position: relative;
}
.order-review table td .remove {
  font-size: 15px;
  color: #A9A9A9;
}
.order-review table td p {
  font-size: 14px;
}
.order-review table .thumb img {
  max-width: 100px;
}
.order-review table .img-cont {
  position: relative;
  background: #F6F6F6;
  margin-right: 20px;
  width: 100px;
}
.order-review table .img-cont .crl-count {
  width: 25px;
  height: 25px;
  background: #000000;
  color: #ffffff;
  display: block;
  position: absolute;
  right: 0;
  top: -10px;
  text-align: center;
  border-radius: 50%;
  line-height: 1.6;
  color: #ffffff;
}
.order-review table .price {
  margin: 0 0 10px;
  display: block;
  color: #000000;
  font-size: 22px;
  font-weight: 500;
}
.order-review table .wrapper_qty {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid #E3E3E3;
  max-width: 135px;
  justify-content: space-between;
}
.order-review table .wrapper_qty input {
  border: transparent;
  border-left: 1px solid #E3E3E3;
  border-right: 1px solid #E3E3E3;
  padding-left: 10px;
}
.order-review table .wrapper_qty button {
  flex: 0 0 30px;
  border: transparent;
  background: transparent;
  outline: none;
  height: 30px;
}
.order-review table .coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}
.order-review table .coupon input {
  border-radius: 0;
  background: #ffffff;
  border: 1px solid #000000;
  height: 50px;
  padding: 10px;
  flex: 1 0 0%;
}
.order-review table .coupon button.btn {
  margin: 0;
  border-radius: 0;
  padding: 6px 40px;
  font-size: 15px;
}
.order-review table tfoot td:last-child {
  text-align: right;
}
.order-review table .total td:last-child:not(small) {
  font-size: 20px;
}
.order-review table .default {
  padding: 5px 0 10px;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #ddd;
  margin: 0 0 15px;
}
.order-review table .default a {
  color: #000000;
  float: right;
  font-size: 18px;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .order-review {
    padding: 10px;
  }
  .order-review table tbody td {
    vertical-align: top;
  }
  .order-review table .coupon button.btn {
    padding: 6px 15px;
    font-size: 13px;
    flex: 0 0 90px;
  }
  .order-review table .price {
    font-size: 15px;
  }
  .order-review table .thumb img {
    max-width: 70px;
    margin: 0;
  }
  .order-review table .img-cont {
    max-width: none;
    width: auto;
  }
  .order-review table .img-cont .crl-count {
    width: 20px;
    height: 20px;
    right: -5px;
    top: -10px;
    font-size: 12px;
  }
}

.checkout-review {
  padding: 40px;
  border: 2px solid #9D9D9D;
  border-radius: 10px;
  background: #ffffff;
}

.cart-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-title .checkout-button {
  padding: 12px 40px;
}
.cart-title .checkout-button i {
  vertical-align: top;
  margin-right: 5px;
}
@media (max-width: 767px) {
  .cart-title .checkout-button {
    padding: 10px 12px;
  }
}

.cart-sec {
  background: #F7F7F7;
  padding-bottom: 120px;
}
.cart-sec .cart-collaterals {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  background: #F1F1F1;
}
.cart-sec .cart-collaterals table {
  width: 100%;
}
.cart-sec .cart-collaterals .cart-total {
  width: 680px;
  padding: 30px;
}
.cart-sec .cart-collaterals .cc-row .title {
  font-size: 26px;
  font-weight: 500 !important;
  margin: 0 0 10px;
}
.cart-sec .cart-collaterals .cc-row .title, .cart-sec .cart-collaterals .cc-row .description {
  font-weight: 400;
}
.cart-sec .cart-collaterals .coupon input {
  font-size: 17px;
  line-height: 1.75;
  padding: 12px 20px;
  width: 100%;
  border: 1px solid #C0C0C0;
}
.cart-sec .cart-collaterals .cart-subtotal th, .cart-sec .cart-collaterals .cart-subtotal td {
  padding: 25px 0 30px;
  font-size: 18px;
}
.cart-sec .cart-collaterals .cart-subtotal th td, .cart-sec .cart-collaterals .cart-subtotal td td {
  text-align: right;
}
.cart-sec .cart-collaterals .wc-proceed-to-checkout {
  text-align: right;
}
@media (max-width: 767px) {
  .cart-sec .cart-collaterals .cart-total {
    width: 100%;
    padding: 15px;
  }
  .cart-sec .cart-collaterals .cart-total .cc-row .title {
    font-size: 22px;
    font-weight: 500 !important;
    margin: 0 0 2px;
  }
  .cart-sec .cart-collaterals .cart-total tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .cart-sec .cart-collaterals .cart-total th {
    width: 100%;
    white-space: nowrap;
    display: table-cell;
  }
  .cart-sec .cart-collaterals .cart-total td {
    width: 100%;
  }
  .cart-sec .cart-collaterals .cart-total .coupon {
    margin: 15px 0 0;
  }
  .cart-sec .cart-collaterals .cart-total .cart-subtotal th, .cart-sec .cart-collaterals .cart-total .cart-subtotal td {
    padding: 15px 0 10px;
    font-size: 20px;
    width: auto;
  }
  .cart-sec .cart-collaterals .cart-total .wc-proceed-to-checkout .btn {
    display: block;
    padding: 15px 10px;
    font-size: 16px;
  }
}

.cart {
  width: 100%;
}
.cart thead {
  background: #F1F1F1;
}
.cart thead th {
  padding: 10px 15px;
  color: #000000;
  font-size: 22px;
  font-weight: 400;
}
.cart thead .product-subtotal {
  text-align: right;
}
.cart tbody td {
  padding: 20px 15px;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.cart tbody .product-name {
  display: flex;
  gap: 15px;
}
.cart tbody .product-thumbnail {
  min-width: 32px;
}
.cart tbody .product-data {
  flex: 1 0 0%;
}
.cart tbody .product-data a {
  color: #000;
  font-size: 22px;
}
.cart tbody .product-name {
  display: flex;
  gap: 15px;
}
.cart tbody .product-quantity input {
  font-size: 22px;
  padding: 6px;
  height: 45px;
  border-radius: 0;
  border: 1px solid #000;
  outline: none;
}
.cart tbody .product-subtotal {
  text-align: right;
}
.cart tbody .product-subtotal .amount {
  font-size: 22px;
  font-weight: 500;
}
.cart tbody .product-subtotal .ds-order {
  display: block;
  margin: 10px 0 0;
}
.cart tbody .product-subtotal .ds-order a {
  text-transform: capitalize;
  color: #575757;
  font-weight: 500;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .cart .product-data-mobile {
    display: none;
  }
}
@media (max-width: 767px) {
  .cart thead {
    display: none;
  }
  .cart tbody .product-data {
    display: none;
  }
  .cart tbody .product-quantity, .cart tbody .product-subtotal {
    display: none;
  }
  .cart tbody .product-name {
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 15px 10px;
  }
  .cart tbody .product-thumbnail {
    flex: 0 0 90px;
  }
  .cart .product-data-mobile {
    flex: 1 0 0%;
    padding-left: 5px;
  }
  .cart .product-data-mobile .name {
    display: flex;
    margin: 0 0 15px;
    justify-content: space-between;
    gap: 10px;
  }
  .cart .product-data-mobile .name a {
    color: #000;
  }
  .cart .product-data-mobile .wrapper_qty input {
    border: 1px solid #000;
    border-radius: 0;
    padding: 5px;
    font-size: 13px;
    outline: none;
  }
  .cart .product-data-mobile .ds-order {
    margin: 12px 0 0;
  }
  .cart .product-data-mobile .ds-order a {
    text-transform: capitalize;
    color: #575757;
    font-weight: 500;
    text-decoration: underline;
    font-size: 14px;
  }
}

/***** LOGIN PAGE ****************/
.entry-process {
  background: #fff;
  margin-top: -60px;
  position: relative;
  z-index: 99;
  margin-left: 0;
  margin-right: 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.inner-ban img {
  width: 100%;
}

.login-sec1 {
  padding-bottom: 7rem;
}
.login-sec1 .lof {
  position: relative;
}
.login-sec1 .lof .log-text {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  background: #fff;
  text-align: left;
  padding: 20px;
  width: 90%;
}
.login-sec1 .form-area {
  padding: 50px;
}
.login-sec1 .logtext-area {
  padding: 50px;
}
.login-sec1 .logtext-area p {
  color: #222;
  letter-spacing: 0.8px;
  padding: 0 20px;
  line-height: 26px;
}
.login-sec1 .logtext-area img {
  margin-top: 20px;
}
.login-sec1 form {
  margin-top: 50px;
}
.login-sec1 form a.lst_pass {
  margin-left: auto;
  color: #000000;
}
.login-sec1 form .form-control {
  width: 100%;
  height: 55px;
  border-radius: 0;
  border: 1px solid #404040;
  background-color: #ffffff;
  outline: none;
  box-shadow: none;
  font-size: 15px;
}
.login-sec1 form .form-control::-moz-placeholder {
  color: #989898;
}
.login-sec1 form .form-control::placeholder {
  color: #989898;
}
.login-sec1 form .form-control:focus {
  border-color: #FEC929;
  box-shadow: none;
}

/***** LOGIN PAGE ****************/
/***** CONTACT PAGE ****************/
.contact-sec1 {
  padding-bottom: 7rem;
}
.contact-sec1 .title {
  margin-top: 60px;
}
.contact-sec1 .form-area {
  padding: 0 50px 50px;
}
.contact-sec1 .location-area {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  padding-right: 0;
  border-left: 1px solid #d7d7d7;
}
.contact-sec1 .location-area .title, .contact-sec1 .location-area .address {
  padding-left: 50px;
}
.contact-sec1 .location-area .contact_img {
  margin-top: auto;
  text-align: right;
}
.contact-sec1 form .form-control {
  width: 100%;
  height: 55px;
  border-radius: 0;
  border: 1px solid #404040;
  background-color: #ffffff;
  outline: none;
  box-shadow: none;
  font-size: 15px;
}
.contact-sec1 form .form-control::-moz-placeholder {
  color: #989898;
}
.contact-sec1 form .form-control::placeholder {
  color: #989898;
}
.contact-sec1 form .form-control:focus {
  border-color: #FEC929;
  box-shadow: none;
}
.contact-sec1 form textarea {
  height: 100px;
  resize: none;
}
.contact-sec1 .address li {
  position: relative;
  list-style-type: none;
  padding-left: 50px;
  margin-bottom: 40px;
}
.contact-sec1 .address li i {
  position: absolute;
  left: 0;
  top: -3px;
  color: #000000;
  font-size: 30px;
  width: 24px;
  vertical-align: middle;
}
.contact-sec1 .address li address, .contact-sec1 .address li a {
  font-size: 24px;
  color: #000000;
}
.contact-sec1 .address li address span {
  display: block;
}

/***** CONTACT PAGE ****************/
/***** MY ACCOUNT PAGE ****************/
.profile-section {
  padding-bottom: 7rem;
  background: #f9f9f9;
  border-top: 1px solid #efefef;
}
.profile-section .sidebar {
  padding: 0;
  border-right: 1px solid #ebebeb;
}
.profile-section .sidebar .pro-section {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #ebebeb;
}
.profile-section .sidebar .pro-section .img-section {
  margin-bottom: 12px;
}
.profile-section .sidebar .pro-section a {
  font-size: 20px;
  color: #000000;
  font-weight: 500;
}
.profile-section .sidebar .appende_tabs {
  list-style-type: none;
}
.profile-section .sidebar .appende_tabs a {
  display: block;
  padding: 15px 15px;
  border-bottom: 1px solid #ebebeb;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
}
.profile-section .sidebar .appende_tabs a:hover {
  color: #000000;
}
.profile-section .sidebar .appende_tabs a.active {
  background: #FFEFC0;
}
.profile-section .tabcontent {
  display: none;
  padding: 40px 0;
}
.profile-section .tabcontent h2 {
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}
.profile-section .tabcontent .btn-sec {
  margin-top: 20px;
}
.profile-section .tabcontent .btn-sec .btn {
  margin-right: 10px;
  font-size: 18px;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  text-transform: capitalize;
  margin: 0;
  padding: 10px 30px;
  margin: 0;
}
.profile-section .tabcontent .btn-sec .save_link {
  margin-right: 30px;
}
.profile-section .tabcontent form .form-group {
  margin-bottom: 1rem;
}
.profile-section .tabcontent form .form-control {
  width: 100%;
  height: 55px;
  border-radius: 8px;
  border: 1px solid #404040;
  background-color: #ffffff;
  outline: none;
  box-shadow: none;
  font-size: 18px;
}
.profile-section .tabcontent form .form-control::-moz-placeholder {
  color: #989898;
}
.profile-section .tabcontent form .form-control::placeholder {
  color: #989898;
}
.profile-section .tabcontent form .form-control:focus {
  border-color: #FEC929;
  box-shadow: none;
}
.profile-section .tabcontent form textarea {
  height: 100px;
  resize: none;
}
.profile-section .tabcontent table {
  width: 100%;
}
.profile-section .tabcontent table td, .profile-section .tabcontent table th {
  font-size: 15px;
}
.profile-section .tabcontent table thead th {
  border: transparent;
  background: #e3f4f9;
}
.profile-section .tabcontent table .btn {
  padding: 4px 16px;
  font-size: 15px;
  border-radius: 4px;
}
.profile-section .tabcontent .cr-address {
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 30px;
  width: 47%;
  padding: 20px;
  display: inline-block;
  margin-right: 15px;
}
.profile-section .tabcontent .cr-address header {
  display: flex;
}
.profile-section .tabcontent .cr-address header a {
  color: #222;
  margin: 0 4px;
  font-size: 16px;
}
.profile-section .tabcontent .cr-address header a.edit {
  margin-left: auto;
}
.profile-section .tabcontent .cr-address header a.trash {
  color: #e84925;
}
.profile-section .tabcontent .cr-address header h3 {
  font-size: 22px;
  color: #222;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.profile-section .tabcontent .cr-address address {
  color: #222;
  font-size: 15px;
}
.profile-section .tabcontent .cr-address address h4 {
  font-size: 18px;
  font-weight: 400;
  color: #555;
  margin-top: 10px;
}

/***** MY ACCOUNT PAGE ****************/
.footer-section {
  background: #F3F3F3;
  position: relative;
  z-index: 9;
  padding: 50px 0 20px;
  color: #000000;
}
.footer-section .f-logo {
  display: inline-block;
  margin: 0 0 30px;
  max-width: 165px;
}
.footer-section .subscribe-container {
  margin-bottom: 25px;
}
.footer-section .subscribe-container .subscribe-sec {
  max-width: 500px;
}
.footer-section .subscribe-container .subscribe-sec p {
  color: #000000;
}
.footer-section .subscribe-form {
  margin-bottom: 10px;
}
.footer-section .subscribe-form .form-control {
  border: none;
}
.footer-section .subscribe-form .input-group-text {
  padding: 0;
  border: none;
}
.footer-section .subscribe-form .input-group-text .btn {
  background-color: #FEC929;
  color: #000000;
  border-radius: 0 5px 5px 0;
}
.footer-section h5 {
  color: #fff;
}
.footer-section .join-fb {
  margin: 30px 0 50px;
}
.footer-section .join-fb a {
  color: #ffffff;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.footer-section .join-fb a .ri-facebook-circle-fill {
  font-size: 30px;
  color: #1778F2;
  background: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.footer-section p {
  font-size: 16px;
}
.footer-section p a {
  color: #ffffff;
}
.footer-section p a:hover {
  color: #FEC929;
}
.footer-section .footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  padding-top: 16px;
}
.footer-section .footer-bottom p {
  color: #000000;
}
.footer-section .footer-menu {
  margin-bottom: 15px;
}
.footer-section .footer-menu h4 {
  font-size: 25px;
  margin-bottom: 15px;
}
.footer-section .footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section .footer-menu ul li {
  font-size: 16px;
  margin-bottom: 8px;
}
.footer-section .footer-menu ul li a {
  color: #000000;
}
.footer-section .social-media {
  margin-top: 20px;
}
.footer-section .social-media ul {
  display: flex;
}
.footer-section .social-media ul li {
  font-size: 24px;
  margin-right: 10px;
}

.link-ft {
  margin: 70px 0 0;
  padding: 35px 30px;
  border-top: 1px solid #B8B8B8;
  background: #FBFBFB;
}
.link-ft li {
  display: inline-block;
  vertical-align: middle;
}
.link-ft p {
  margin: 20px 0 0;
  color: #000000;
  font-size: 14px;
}
.link-ft a {
  margin: 0 10px;
  color: rgba(0, 0, 0, 0.85);
  text-decoration: underline;
}
.link-ft a:hover {
  text-decoration: none;
  color: #000000;
}

.inner-banner {
  min-height: 500px;
  background-size: cover !important;
  position: relative;
}
.inner-banner .inner-banner-text {
  position: absolute;
  top: 250px;
  left: 0;
  width: 100%;
}
.inner-banner .inner-banner-text h2 {
  color: #fff;
  text-align: center;
}

.breadcumbs .breadcrumb-item a {
  color: #000;
}
.breadcumbs .breadcrumb-item a:hover {
  color: #FEC929;
}

.left-filters .below-border {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  padding-bottom: 15px;
}
.left-filters h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.left-filters .browse-items {
  padding: 0px;
}
.left-filters .browse-items li {
  list-style: none;
  display: inline-block;
  margin: 0 10px 10px 0;
  background: rgba(234, 220, 177, 0.34);
  font-size: 17px;
  padding: 4px 10px;
  border-radius: 5px;
}
.left-filters .browse-items li i {
  color: #000;
  margin: 0 0 0 5px;
  cursor: pointer;
}
.left-filters .browse-items li i:hover {
  color: red;
}
.left-filters .accordion-item {
  background-color: #fff;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.left-filters .accordion-item .accordion-button {
  color: #000000;
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 500;
  background: no-repeat !important;
  padding: 20px 10px 20px 0px;
}
.left-filters .accordion-item .accordion-button:focus {
  box-shadow: none;
}
.left-filters .accordion-item .accordion-body {
  padding: 1rem 0rem;
}

.custom-select {
  border: 1px solid #ECECEC;
  background: #F5F5F5;
  height: 45px;
  padding: 10px 15px;
  color: #000;
  font-size: 15px;
  width: 100%;
  border-radius: 5px;
}

.secrch-option {
  padding: 0px;
}
.secrch-option li {
  width: 100%;
  margin-bottom: 10px;
  list-style: none;
}
.secrch-option li a {
  color: #000;
  font-size: 17px;
  width: 100%;
}
.secrch-option li a:hover {
  color: #FEC929;
}

.pro-search-box {
  position: relative;
}
.pro-search-box .search-type {
  background: #F5F5F5;
  border: none;
  width: 100%;
  padding: 7px 60px 7px 12px;
  font-size: 18px;
  color: black;
  border-radius: 6px;
}
.pro-search-box button {
  position: absolute;
  top: 3px;
  right: 14px;
  font-size: 22px;
  color: #000;
  cursor: pointer;
  background: none;
  border: none;
}
.pro-search-box button:hover {
  color: #FEC929;
}

.extra-padd-top {
  padding-top: 100px;
}

.related-products {
  padding: 80px 0;
}

.left-detl-pro {
  background: #F9F9F9;
  height: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.right-pro-dtls h2 {
  font-size: 35px;
  color: #000;
  font-weight: 500;
  margin-bottom: 12px;
}
.right-pro-dtls .product-review {
  margin-bottom: 30px;
}
.right-pro-dtls .product-review p {
  margin-bottom: 0px;
}
.right-pro-dtls .product-review .Starts {
  display: inline-block;
  margin-right: 10px;
}
.right-pro-dtls .product-review .Starts i {
  color: #FEC929;
  margin-right: 1px;
}
.right-pro-dtls .product-review .review {
  font-size: 16px;
  font-weight: 400;
  color: #404040;
  text-decoration: underline;
}
.right-pro-dtls .product-review .review:hover {
  color: #000;
}
.right-pro-dtls .pro-price {
  font-size: 24px;
  font-weight: 400;
  color: #000;
  margin-bottom: 12px;
}
.right-pro-dtls p {
  color: #848484;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.5;
}
.right-pro-dtls .size-group {
  margin-bottom: 15px;
}
.right-pro-dtls .size-group lable {
  display: block;
  margin-bottom: 5px;
}
.right-pro-dtls .size-group select {
  border: 1px solid #eee;
  border-radius: 5px;
  height: 42px;
  font-size: 16px;
  padding: 5px 12px;
  background: #fff;
  width: 80%;
}
.right-pro-dtls .size-group .qty-number {
  border: 1px solid #eee;
  border-radius: 5px;
  height: 42px;
  font-size: 16px;
  padding: 5px 12px;
  background: #fff;
  width: 150px;
}

.Tabs-area .nav-tabs {
  padding-left: 50px;
}
.Tabs-area .nav-tabs .nav-link {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  padding: 13px 30px;
  border-radius: 15px 15px 0 0;
}
.Tabs-area .tab-content {
  border: 1px solid #dee2e6;
  border-top: none;
  padding: 20px;
}
.Tabs-area .tab-content h3 {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
}
.Tabs-area .tab-content p {
  color: #333;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.5;
}

/*Popup-css start*/
.cart-popup {
  background: #fff;
  width: 500px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  border: 1px solid #e4e4e4;
  display: none;
}
.cart-popup .popup-header {
  border-bottom: 2px solid #D1D1D1;
  padding: 15px 15px 6px 15px;
  margin-bottom: 15px;
}
.cart-popup .popup-body {
  min-height: 500px;
  overflow-y: scroll;
  padding: 0 15px;
}
.cart-popup .cart-icon {
  display: inline-block;
  position: relative;
}
.cart-popup .cart-icon i {
  color: #fff;
  font-size: 22px;
}
.cart-popup .cart-icon span {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #FE0000;
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 13px;
  line-height: 21px;
  position: absolute;
  right: -8px;
  top: -3px;
}
.cart-popup .popup-header .btn-close {
  float: right;
  color: #000;
  font-size: 30px;
  padding: 0px;
  opacity: 0.99;
  background: none;
  margin-top: -11px;
}
.cart-popup .popup-header .btn-close:hover {
  color: red;
}
.cart-popup .popup-header h5 {
  color: #000;
  font-size: 22px;
  font-weight: 400;
}
.cart-popup .order-review {
  padding: 0;
  border: transparent;
  border-radius: 0;
  margin: 0px 0 20px;
}
.cart-popup .order-review table {
  width: 100%;
}
.cart-popup .order-review table .thumb img {
  max-width: 110px;
}
.cart-popup .order-review table h4 {
  color: #000;
  font-size: 17px;
  font-weight: normal;
}
.cart-popup .order-review .pro-des {
  padding: 0 15px;
}
.cart-popup .order-review .pro-price {
  color: #000;
  font-size: 17px;
  font-weight: normal;
}
.cart-popup .order-review table .wrapper_qty {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid #A29F9F;
  max-width: 104px;
  justify-content: space-between;
  margin-top: 11px;
}
.cart-popup .order-review table .wrapper_qty button {
  flex: 0 0 30px;
  border: transparent;
  background: transparent;
  outline: none;
  height: 30px;
  color: #000;
}
.cart-popup .order-review table .wrapper_qty input {
  border: transparent;
  color: #000;
  background: none !important;
  width: 40px;
}
.cart-popup .order-review input[type=number] {
  -moz-appearance: textfield;
}
.cart-popup .order-review .remove {
  color: #000;
  font-size: 18px;
  padding: 5px;
}
.cart-popup .order-review .remove:hover {
  color: red;
}
.cart-popup .order-review tbody tr {
  padding: 15px 0;
  border-bottom: 1px solid #dfdfdf;
  display: block;
}
.cart-popup .popup-footer {
  padding: 20px;
  background: #F8F8F8;
  position: absolute;
  width: 100%;
  bottom: 0;
}
.cart-popup .popup-footer .coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}
.cart-popup .popup-footer .coupon input {
  background: #ffffff;
  border: 1px solid #E7E7E7;
  height: 48px;
  padding: 10px;
  flex: 1 0 0%;
  font-size: 15px;
}
.cart-popup .apply-btn {
  background: #00008B;
  border-radius: 0px;
  color: #fff;
}
.cart-popup .apply-btn:hover {
  background: #B91E30;
  color: #fff;
}
.cart-popup .Chkout-btn {
  background: #FEC929;
  color: #000;
  padding: 8px 20px;
  width: 100%;
  border-radius: 5px;
  margin-bottom: 15px !important;
}
.cart-popup .Chkout-btn:hover {
  background: #000;
  color: #fff;
}
.cart-popup .popup-footer .add-bag {
  padding: 9px 20px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #000;
  color: #000;
}
.cart-popup .popup-footer .add-bag:hover {
  border: 1px solid #FEC929;
  color: #000;
  background: #FEC929;
}

.cart-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
}

/*Popup-css end*/
@media only screen and (min-width: 300px) and (max-width: 767.99px) {
  .blog-cont h3 {
    font-size: 24px;
  }
  .blog-cont p {
    font-size: 16px;
    line-height: 32px;
  }
  .faculty-list {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .inner-banner .line-shape {
    display: none;
  }
  .extra-padd-top {
    padding-top: 70px;
  }
  .contact-sec1 {
    margin-top: 50px;
  }
  .contact-sec1 .btn-primary {
    margin-top: 15px;
  }
  .contact-sec1 .address li address {
    font-size: 20px;
  }
  .contact-sec1 .address li a {
    font-size: 20px;
  }
  .login-sec1 {
    margin-top: 50px;
  }
}/*# sourceMappingURL=style.css.map */