:root {
  --main-color: #c40e00;
  --secondary-color: #000031;
  --accent-color: #e02525;
  --black: #000;
  --white: #fff;
  --light-grey: #e6e6e6;
  --grey: #666;
  --custom-bg: #000c;
  --border-radius-1: 0.5rem;
  --border-radius-2: 1rem;
  --border-radius-3: 50%;
  --custom-border: 0.5rem solid var(--main-color);
  --box-shadow: 0 0.5rem 1rem #0000001a;
  --linear: linear-gradient(144deg, var(--main-color), var(--accent-color))
}

* {
  border: none;
  box-sizing: border-box;
  font-family: Oswald, sans-serif;
  margin: 0;
  outline: none;
  padding: 0;
  text-decoration: none;
}

:not(.portfolio-item) {
  transition: all .2s linear
}

::selection {
  background-color: #c40e00;
  background-color: var(--main-color);
  color: #fff;
  color: var(--white)
}


::-webkit-scrollbar {
  width: .8rem
}

::-webkit-scrollbar-track {
  background: #000031;
  background: var(--secondary-color)
}

::-webkit-scrollbar-thumb {
  background: #c40e00;
  background: var(--main-color);
  border-radius: 1rem;
  border-radius: var(--border-radius-2)
}

p {
  color: #666;
  color: var(--grey);
  font-size: 1.6rem;
  line-height: 1.7
}

img {
  height: 100%;
  /*object-fit: cover;*/
  width: 100%
}

input:-webkit-autofill,
input:-webkit-autofill:active,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover {
  color: #000 !important;
  color: var(--black) !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s
}

.form .input-box {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1rem
}

.form .box {
  background-color: initial;
  border: .15rem solid #0000001a;
  color: #000;
  color: var(--black);
  font-size: 1.6rem;
  padding: 1rem 1.5rem;
  text-transform: none;
  width: 100%
}

.form .box::placeholder {
  text-transform: capitalize
}

.form .box:focus {
  border-color: #c40e00;
  border-color: var(--main-color)
}

.form textarea {
  height: 20rem;
  resize: none
}

.form button {
  margin-top: 1rem;
  overflow: hidden;
  width: 100%
}

.dark-form input:-webkit-autofill,
.dark-form input:-webkit-autofill:active,
.dark-form input:-webkit-autofill:focus,
.dark-form input:-webkit-autofill:hover {
  -webkit-text-fill-color: #fff;
  -webkit-text-fill-color: var(--white);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s
}

.dark-form .input-box {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1rem
}

.dark-form .input-field {
  align-items: center;
  border: 1.3px solid #ffffffe6;
  display: flex;
  flex: 1 1 20rem;
  gap: 1rem;
  padding: 1.5rem;
  width: 100%
}

.dark-form .input-field:hover {
  border-color: #c40e00;
  border-color: var(--main-color)
}

.dark-form .input-field label {
  align-items: center;
  color: #c40e00;
  color: var(--main-color);
  display: flex;
  font-size: 1.6rem;
  justify-content: center
}

.dark-form .box {
  background-color: initial;
  color: #fff;
  color: var(--white);
  font-size: 1.6rem;
  text-transform: none;
  width: 100%
}

.dark-form .box::placeholder {
  color: #fff;
  color: var(--white);
  text-transform: capitalize
}

.dark-form textarea {
  height: 15rem;
  resize: none
}

.dark-form .text-area {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -ms-grid-row-align: flex-start;
  align-items: flex-start;
  margin-bottom: 1rem
}

.dark-form .select option {
  color: #666;
  color: var(--grey)
}

.dark-form .select {
  border: 1.2px solid #ffffffe6;
  flex: 1 1 20rem;
  width: 100%
}

.dark-form .select-container {
  height: 100%;
  min-width: 100%;
  position: relative
}

.dark-form .select-box {
  appearance: none;
  background-color: initial;
  color: #fff;
  color: var(--white);
  font-size: 1.6rem;
  padding: 1.5rem 1.5rem 1.5rem 4.5rem;
  width: 100%
}

.dark-form .select-container label {
  color: #c40e00;
  color: var(--main-color);
  font-size: 1.6rem;
  left: 1.5rem
}

.dark-form .select-container .icon-container,
.dark-form .select-container label {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  position: absolute;
  top: 0
}

.dark-form .select-container .icon-container {
  pointer-events: none;
  right: 0;
  width: 4rem
}

.dark-form .select-container .icon-container .icon {
  color: #fff;
  color: var(--white);
  font-size: 1.6rem
}

.dark-form ::-webkit-calendar-picker-indicator {
  filter: invert(1)
}

.page-single {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem
}

.page-single .sidebar .sidebar-item {
  margin-bottom: 0
}

.page-info {
  flex: 1 1 75rem
}

.page-info .image {
  height: 40rem;
  overflow: hidden
}

.page-info .image img {
  box-shadow: 0 .5rem 1rem #0000001a;
  box-shadow: var(--box-shadow)
}

.page-info .content {
  padding-top: 2rem
}

.page-info .main-heading {
  color: #000031;
  color: var(--secondary-color);
  display: inline-block;
  font-size: 3.5rem;
  font-weight: 600;
  padding-bottom: 1rem;
  text-shadow: 1px 1px 8px #0003
}

.page-info p {
  padding-bottom: 1rem
}

.page-info .sub-heading {
  color: #000031;
  color: var(--secondary-color);
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 600;
  padding-bottom: .5rem
}

.page-info .sub-section {
  padding-top: 2rem
}

.page-info .sub-section p {
  margin-bottom: -1rem
}

.page-info .sub-section ul li {
  align-items: flex-start;
  color: #666;
  color: var(--grey);
  display: flex;
  font-size: 1.5rem;
  gap: 1rem;
  padding-top: 1.5rem
}

.page-info .sub-section ul li p {
  display: flex;
  flex-wrap: wrap
}

.page-info .sub-section ul li strong {
  color: #000;
  color: var(--black);
  display: inline;
  font-size: 1.6rem
}

.page-info .sub-section ul .icon {
  align-items: center;
  color: #c40e00;
  color: var(--main-color);
  display: flex;
  height: 1.5rem;
  justify-content: center;
  margin-top: .2rem;
  width: 1.5rem
}

.account-form input:-webkit-autofill,
.account-form input:-webkit-autofill:active,
.account-form input:-webkit-autofill:focus,
.account-form input:-webkit-autofill:hover {
  -webkit-text-fill-color: #fff;
  -webkit-text-fill-color: var(--white);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s
}

.account-form {
  background: #000031;
  background: var(--secondary-color);
  border-left: .5rem solid #c40e00;
  border-left: var(--custom-border);
  box-shadow: 0 .5rem 1rem #0000001a;
  box-shadow: var(--box-shadow);
  margin: 0 auto;
  max-width: 45rem;
  padding: 5rem;
  text-align: center
}

.account-form h3 {
  color: #fff;
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.3;
  padding-bottom: 1.5rem;
  text-transform: uppercase
}

.account-form .box {
  background-color: initial;
  border: .15rem solid #fff;
  border-left: var(--custom-border);
  border-color: var(--white);
  color: #fff;
  color: var(--white);
  font-size: 1.6rem;
  margin: .7rem 0;
  padding: 1.2rem;
  text-transform: none;
  width: 100%
}

.account-form .box::placeholder {
  color: #fff;
  color: var(--white);
  text-transform: capitalize
}

.account-form .box:focus {
  border-color: #c40e00;
  border-color: var(--main-color)
}

.account-form p {
  color: #fff;
  color: var(--white);
  padding-bottom: 1rem;
  padding-top: 2rem;
  text-align: center
}

.account-form button {
  margin-top: 1.5rem;
  overflow: hidden;
  width: 100%
}

.account-form .link {
  color: #c40e00;
  color: var(--main-color);
  font-size: 1.5rem
}

.account-form .link:hover {
  text-decoration: underline
}

.account-form .checkbox-label {
  align-items: center;
  color: #666;
  color: var(--grey);
  cursor: pointer;
  display: flex;
  font-size: 1.8rem;
  line-height: 1.4;
  padding-left: 2.5rem;
  position: relative
}

.account-form .checkbox-label input {
  opacity: 0;
  position: absolute;
  z-index: -1
}

.account-form .checkbox-indicator {
  background: #0000;
  border-radius: .2rem;
  height: 1.6rem;
  left: 0;
  outline: .15rem solid #fff;
  outline: .15rem solid var(--white);
  position: absolute;
  top: .2rem;
  width: 1.6rem
}

.account-form .checkbox-label input:checked~.checkbox-indicator {
  background: #c40e00;
  background: var(--main-color);
  outline-color: #c40e00;
  outline-color: var(--main-color)
}

.account-form .checkbox-indicator:after {
  border: solid #e6e6e6;
  border: solid var(--light-grey);
  border-width: 0 2px 2px 0;
  content: "";
  display: none;
  height: .8rem;
  left: .5rem;
  position: absolute;
  top: .2rem;
  transform: rotate(45deg);
  width: .3rem
}

.account-form .checkbox-label input:checked~.checkbox-indicator:after {
  display: inline;
  display: initial
}

.swiper-pagination-bullet {
  background: #fff;
  background: var(--white);
  border-radius: 0;
  box-shadow: 0 .5rem 1rem #0000001a;
  box-shadow: var(--box-shadow);
  height: 1rem;
  opacity: .7;
  width: 4rem
}

.swiper-pagination-bullet-active {
  background: #c40e00 !important;
  background: var(--main-color) !important;
  opacity: .9 !important
}

.swiper-button-next,
.swiper-button-prev {
  background: #c40e00;
  background: #2F4F6F;
  box-shadow: 0 .5rem 1rem #0000001a;
  box-shadow: var(--box-shadow);
  font-size: 1rem;
  height: 5rem;
  width: 5rem
}

.swiper-button-next {
  right: 0
}

.swiper-button-prev {
  left: 0
}

.swiper-button-next:after,
.swiper-button-prev:after {
  align-items: center;
  color: #fff;
  color: var(--white);
  display: flex;
  font-size: 2rem !important;
  font-weight: 700;
  justify-content: center
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #000031;
  background: var(--secondary-color)
}

.checkbox-label {
  align-items: center;
  color: #fff;
  color: var(--white);
  cursor: pointer;
  display: flex;
  font-size: 1.8rem;
  padding-left: 2.5rem;
  position: relative
}

.checkbox-label input {
  opacity: 0;
  position: absolute;
  z-index: -1
}

.checkbox-indicator {
  background: #0000;
  border-radius: .2rem;
  height: 1.6rem;
  left: 0;
  outline: .15rem solid #fff;
  outline: .15rem solid var(--white);
  position: absolute;
  top: .2rem;
  width: 1.6rem
}

.checkbox-label input:checked~.checkbox-indicator {
  background: #c40e00;
  background: var(--main-color);
  outline-color: #c40e00;
  outline-color: var(--main-color)
}

.checkbox-indicator:after {
  border: solid #000031;
  border: solid var(--secondary-color);
  border-width: 0 2px 2px 0;
  content: "";
  display: none;
  height: .8rem;
  left: .5rem;
  position: absolute;
  top: .2rem;
  transform: rotate(45deg);
  width: .3rem
}

.checkbox-label input:checked~.checkbox-indicator:after {
  display: inline;
  display: initial
}

@media (max-width:991px) {
  html {
    font-size: 75%
  }
  .blog.grid,
  .blog.list,
  .shop {
    flex-wrap: wrap-reverse
  }
  .footer .box-container {
    grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr))
  }
  .team .box-container {
    grid-template-columns: repeat(auto-fill, minmax(28rem, 1fr))
  }
  .page-single {
    gap: 3rem
  }
  .home-slider .swiper-button-next,
  .home-slider .swiper-button-prev {
    display: none
  }
  .blog.grid,
  .blog.list,
  .shop {
    gap: 3rem
  }
  .portfolio-item {
    width: 50%
  }
}

@media (max-width:768px) {
  html {
    font-size: 65%
  }
  .header .header-1 {
    padding: .5rem 2rem
  }
  .header .header-2 {
    padding: 0 2rem
  }
  .footer .box-container {
    padding: 2rem
  }
  section {
    padding: 3rem 2rem
  }
  .search-container {
    right: 1rem
  }
  .home-item {
    height: 75rem !important
  }
  .home .content {
    padding: 10rem 2rem
  }
  .cart .coupon-container,
  .product-info .leave-reply {
    width: 100%
  }
}

@media (max-width:450px) {
  html {
    font-size: 50%
  }
  .header .header-1 {
    padding: .5rem 1rem
  }
  .header .header-2 {
    padding: 0 1rem
  }
  section {
    padding: 3rem 1rem
  }
  .footer .box-container {
    padding: 2rem 1rem
  }
  .footer-item>p {
    font-size: 1.8rem
  }
  .footer-item .links a {
    font-size: 2rem
  }
  .home-item {
    height: 100vh !important
  }
  .home-item .content {
    padding: 10rem 1rem
  }
  .about .sub-image1 {
    width: 100%
  }
  .team-item .team-image {
    height: 45rem
  }
  .page-title .title h2 {
    font-size: 4rem
  }
  .product-info .additional-info h3 {
    width: auto
  }
  .comment .comment-content {
    flex: 1 1 25rem
  }
  .comment.reply .comment-content {
    flex: 1 1 15rem
  }
  .dark-form .input-box,
  .form .input-box {
    flex-wrap: wrap
  }
  .dark-form .input-box .input-field,
  .dark-form .select {
    flex: 1 1 25rem
  }
  .profile-single .profile-image {
    width: 100%
  }
  .contact-container {
    padding: 4rem 2rem
  }
  .account-form {
    max-width: 100%
  }
  .event-item {
    flex-wrap: wrap
  }
  .event-item .action {
    border: none;
    flex-direction: row
  }
  .portfolio-item {
    width: 100%
  }
  .shop .product-container.list .product-item {
    flex-wrap: wrap
  }
  .shop .product-container.list .product-item .image {
    min-height: 15rem;
    width: 100%
  }
  .shop .product-container.list .product-item .image img {
    height: 100%;
    object-fit: cover;
    width: 100%
  }
  .shop .product-container.list .product-item {
    gap: 1rem
  }
  .shop .product-container.list .product-item .content {
    padding-left: 0
  }
  .player-slider .swiper {
    padding-bottom: 10rem
  }
  .cart-total {
    width: 100%
  }
}
