@import url(https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap);
.header {
  left: 0;
  position: fixed;
  top: 0;
  transition: all .5s ease-in-out;
  width: 100%;
  z-index: 1000
}

.header .header-1 {
  align-items: center;
  background-color: #171717;
  display: flex;
  justify-content: flex-end;
  padding: .5rem 5%
}

.header.active .header-1 {
  display: none
}

.header .social-contacts {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  list-style-type: none
}

.header .social-contacts .icon {
  align-items: center;
  color: var(--white);
  display: flex;
  font-size: 1.6rem;
  height: 3rem;
  justify-content: center;
  width: 3rem
}

.header .social-contacts .icon:hover {
  color: var(--main-color)
}

.header .header-2 {
  align-items: center;
  background-color: #2F4F6F;
  display: flex;
  height: 9rem;
  justify-content: space-between;
  padding: 0 5%
}

.header.active .header-2 {
  box-shadow: var(--box-shadow)
}

.header .logo {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -ms-grid-row-align: flex-start;
  align-items: flex-start;
  display: flex;
  height: 100%
}

.header .container {
  align-items: center;
  display: flex;
  gap: 2.5rem;
  height: 100%;
  justify-content: space-between
}

.header .navbar {
  display: flex;
  gap: 2rem;
  height: 100%;
  list-style-type: none
}

.header .icon-container {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: center
}

.header .icon {
  color: var(--white);
  cursor: pointer;
  font-size: 1.8rem
}

.header .icon:hover {
  color: var(--secondary-color)
}

.header .menu-btn,
.mobile-menu {
  display: none
}

.header .search-container {
  align-items: center;
  background: var(--white);
  border-radius: 50rem;
  box-shadow: var(--box-shadow);
  display: flex;
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  position: absolute;
  right: 2rem;
  top: 100%;
  transform: translateX(300%);
  transform-origin: right;
  width: 40rem
}

.header .search-container.active {
  transform: translateX(0)
}

.header .search-container input {
  background: #0000;
  color: var(--secondary-color);
  font-size: 1.8rem;
  height: 100%;
  text-transform: none;
  width: 100%
}

.header .search-container input::placeholder {
  text-transform: capitalize
}

.header .search-container button {
  background-color: initial
}

.header .search-container .icon {
  color: var(--secondary-color);
  font-size: 2rem
}

.header .search-container .icon:hover {
  color: var(--main-color);
  cursor: pointer
}

@media (max-width:991px) {
  .header .menu-btn,
  .mobile-menu {
    display: block
  }
  .header .navbar {
    display: none
  }
}

.header .nav-item {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative
}

.header .dropdown-menu {
  align-items: center;
  background: none;
  display: inline-block;
  display: flex;
  gap: .5rem
}

.header .dropdown-menu,
.header .dropdown-menu .nav-btn {
  color: var(--white);
  cursor: pointer;
  font-size: 2rem
}

.header .dropdown-menu .nav-btn:hover {
  color: var(--secondary-color)
}

.header .dropdown-content {
  background-color: var(--secondary-color);
  box-shadow: var(--box-shadow);
  display: none;
  flex-direction: column;
  left: 0;
  position: absolute;
  top: 100%;
  transition: all .5s;
  width: 20rem;
  z-index: 1000
}

.header .dropdown-content .side-dropdown {
  align-items: center;
  color: var(--white);
  cursor: pointer;
  display: flex;
  font-size: 1.2rem;
  font-weight: 700;
  justify-content: space-between;
  padding-right: 1.5rem;
  width: 100%
}

.header .dropdown-content .side-dropdown .dropdown-content {
  display: none !important;
  left: 20rem;
  top: 0
}

.header .dropdown-content a,
.header .dropdown-content button {
  background-color: initial;
  color: var(--white);
  cursor: pointer;
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  overflow: hidden;
  padding: 1rem 1.5rem
}

.header .dropdown-content a:hover {
  background-color: var(--main-color)
}

.header .nav-item:hover .nav-btn {
  color: var(--secondary-color)
}

.header .nav-item:hover .dropdown-content {
  border-bottom: var(--custom-border);
  display: flex
}

.header .dropdown-content .side-dropdown:hover .dropdown-content {
  display: flex !important
}

.header .dropdown-content .side-dropdown {
  position: relative
}

.header .dropdown-content .side-dropdown:hover,
.header .dropdown-content a:hover {
  background: var(--main-color)
}

@media (max-width:991px) {
  .mobile-menu {
    background: var(--secondary-color);
    border-bottom: .2rem solid var(--main-color);
    box-shadow: var(--box-shadow);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    display: block;
    left: 0;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2rem;
    position: absolute;
    right: 0;
    top: 100%;
    transition: all .5s ease-in-out;
    z-index: 10000
  }
  .mobile-menu.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
  }
  .mobile-menu::-webkit-scrollbar {
    width: .8rem
  }
  .mobile-menu::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    border-radius: 1rem
  }
  .mobile-menu::-webkit-scrollbar-track {
    background: #0000
  }
}

.mobile-navbar .main-nav-link {
  position: relative
}

.mobile-navbar .nav-btn {
  align-items: center;
  border-bottom: .1rem solid #fff3;
  color: var(--white);
  cursor: pointer;
  display: flex;
  font-size: 2rem;
  font-weight: 700;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 1.5rem 1rem;
  width: 100%
}

.mobile-navbar .main-nav-link .icon {
  color: var(--white);
  cursor: pointer;
  font-size: 2rem;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  transition: none
}

.mobile-navbar .sub-nav-link {
  padding-bottom: 1rem;
  padding-left: 2rem;
  transition: all 0s
}

.mobile-navbar .nav-link .sub-nav-link .sub-nav {
  border-bottom: .1rem solid #fff3;
  color: var(--white);
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 1.5rem .5rem
}

.logo img {
  height: 9rem;
  width: 110px;
}

.scroll-to-top {
  align-items: center;
  background: var(--linear) !important;
  border-radius: var(--border-radius-3) !important;
  bottom: 1rem !important;
  box-shadow: var(--box-shadow);
  display: flex;
  height: 6rem !important;
  justify-content: center;
  right: 1rem !important;
  text-align: center;
  transition: all .2s;
  width: 6rem !important;
  z-index: 900 !important
}

.scroll-to-top:hover {
  background: var(--secondary-color) !important;
  cursor: pointer
}

.scroll-to-top svg {
  fill: var(--white)
}

.heading {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-bottom: 2rem
}

.heading .sub span {
  color: var(--main-color);
  display: inline-block;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: .1rem;
  line-height: 1;
  margin-bottom: .2rem;
  text-transform: uppercase
}

.heading h2 {
  color: var(--secondary-color);
  font-size: 4.5rem;
  font-weight: 600;
  letter-spacing: .1rem;
  line-height: 1.2;
  padding-bottom: 1.5rem;
  position: relative;
  text-align: center;
  text-shadow: 1px 1px 8px #0003
}

.heading h2:after,
.heading h2:before {
  background-color: #ccc;
  bottom: 0;
  content: "";
  height: .4rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 4.5rem;
  width: 4.5rem
}

.heading h2:before {
  background-color: var(--main-color);
  left: 4.5rem;
  width: 9rem
}

.sideheading {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -ms-grid-row-align: flex-start;
  align-items: flex-start
}

.sideheading h2 {
  text-align: left
}

.heading.linear-bg h2 {
  color: var(--white)
}

.sideheading h2:after,
.sideheading h2:before {
  left: 0;
  margin: 0
}

.btn {
  background-image: linear-gradient(144deg, #2F4F6F, #2F4F6F, #2F4F6F);
  background-size: 300% 100%;
  border-radius: 5rem;
  color: var(--white);
  cursor: pointer;
  display: inline-block;
  font-size: 1.6rem;
  padding: 1.5rem 3rem;
  text-align: center;
  text-transform: uppercase
}

.btn:hover {
  background-position: 100% 0
}

.footer {
  background: linear-gradient(#00000080, #0009), url(/static/media/Footer.458c22de9b66ede6885a.jpg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover
}

.footer .box-container {
  grid-gap: 3rem;
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  padding: 2rem 5%
}

.footer-item h2 {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: .2rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  position: relative
}

.footer-item h2:before {
  background-color: var(--main-color);
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: translateX(0);
  width: 10rem
}

.footer-item>p {
  font-size: 1.5rem;
  padding-top: 1.5rem
}

.footer-item p {
  color: var(--white);
  font-weight: 500;
  line-height: 1.5
}

.footer-item .connect .connect-item {
  align-items: center;
  display: flex;
  gap: .5rem;
  margin-bottom: 1.5rem
}

.footer-item .connect .icon {
  align-items: center;
  color: var(--main-color);
  display: block;
  display: flex;
  font-size: 1.8rem;
  height: 3rem;
  justify-content: center;
  width: 3rem !important
}

.footer-item .connect span {
  color: var(--white);
  flex: 1 1 10rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  text-transform: none
}

.footer-item .social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem
}

.footer-item .social a {
  align-items: center;
  background-color: var(--white);
  border-radius: var(--border-radius-3);
  display: flex;
  height: 4rem;
  justify-content: center;
  width: 4rem
}

.footer-item .social a .icon {
  color: var(--main-color);
  font-size: 1.7rem
}

.footer-item .social a:hover {
  background-color: var(--main-color)
}

.footer-item .social a:hover .icon {
  color: var(--white)
}

.footer-item .info p {
  align-items: center;
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem
}

.footer-item .info a {
  color: var(--white);
  font-size: 1.8rem
}

.footer-item .links p:hover a {
  color: var(--main-color)
}

.footer-item .links p .icon {
  color: var(--accent-color);
  font-size: 1.8rem
}

.footer-item:last-child p {
  line-height: 1.6;
  padding-bottom: 2rem;
  padding-top: 0
}

.footer-item .input-field {
  margin-bottom: 1rem
}

.footer .content {
  background: var(--linear);
  padding: 2rem 0;
  text-align: center
}

.footer .content p {
  color: var(--white);
  font-size: 2rem
}

.page-title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  background: linear-gradient(180deg, #00000080, #000000b3), url(/static/media/PageTitle.61a353964529559283a7.jpg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  min-height: 45rem;
  padding: 10rem 5% 0;
  position: relative
}

.page-title .title h2 {
  color: var(--white);
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center
}

.page-title .link {
  align-items: center;
  background-color: var(--main-color);
  bottom: 0;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  display: flex;
  gap: 2rem;
  justify-content: center;
  padding: 1.5rem 3rem 1.5rem 5rem;
  position: absolute;
  right: 0
}

.page-title .link a {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 600
}

.page-title .link a:hover {
  color: var(--secondary-color)
}

.page-title .link .icon {
  color: var(--white);
  font-size: 2.2rem
}

.page-title .link span {
  color: var(--white);
  font-size: 2.3rem;
  font-weight: 500
}

.sidebar-heading {
  margin-bottom: 2rem
}

.sidebar-heading h2 {
  background-color: var(--main-color);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 500;
  padding: .8rem 1rem;
  word-spacing: 1px
}

.page-gallery .gallery-grid {
  grid-gap: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  padding: 2rem 0
}

.page-gallery img {
  box-shadow: var(--box-shadow);
  cursor: pointer
}

.PhotoView-Portal {
  direction: ltr;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  touch-action: none;
  width: 100%;
  z-index: 2000
}

@keyframes PhotoView__rotate {
  0% {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(1turn)
  }
}

@keyframes PhotoView__delayIn {
  0%,
  50% {
    opacity: 0
  }
  to {
    opacity: 1
  }
}

.PhotoView__Spinner {
  animation: PhotoView__delayIn .4s linear both
}

.PhotoView__Spinner svg {
  animation: PhotoView__rotate .6s linear infinite
}

.PhotoView__Photo {
  cursor: grab;
  max-width: none;
  -webkit-user-select: none;
  user-select: none
}

.PhotoView__Photo:active {
  cursor: grabbing
}

.PhotoView__icon {
  display: inline-block;
  left: 0;
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%)
}

.PhotoView__PhotoBox,
.PhotoView__PhotoWrap {
  bottom: 0;
  direction: ltr;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  touch-action: none;
  width: 100%
}

.PhotoView__PhotoWrap {
  overflow: hidden;
  z-index: 10
}

.PhotoView__PhotoBox {
  transform-origin: left top
}

@keyframes PhotoView__fade {
  0% {
    opacity: 0
  }
  to {
    opacity: 1
  }
}

.PhotoView-Slider__clean .PhotoView-Slider__ArrowLeft,
.PhotoView-Slider__clean .PhotoView-Slider__ArrowRight,
.PhotoView-Slider__clean .PhotoView-Slider__BannerWrap,
.PhotoView-Slider__clean .PhotoView-Slider__Overlay,
.PhotoView-Slider__willClose .PhotoView-Slider__BannerWrap:hover {
  opacity: 0
}

.PhotoView-Slider__Backdrop {
  background: #000;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition-property: background-color;
  width: 100%;
  z-index: -1
}

.PhotoView-Slider__fadeIn {
  animation: PhotoView__fade linear both;
  opacity: 0
}

.PhotoView-Slider__fadeOut {
  animation: PhotoView__fade linear reverse both;
  opacity: 0
}

.PhotoView-Slider__BannerWrap {
  align-items: center;
  background-color: #00000080;
  color: #fff;
  display: flex;
  height: 44px;
  justify-content: space-between;
  left: 0;
  position: absolute;
  top: 0;
  transition: opacity .2s ease-out;
  width: 100%;
  z-index: 20
}

.PhotoView-Slider__BannerWrap:hover {
  opacity: 1
}

.PhotoView-Slider__Counter {
  font-size: 14px;
  opacity: .75;
  padding: 0 10px
}

.PhotoView-Slider__BannerRight {
  align-items: center;
  display: flex;
  height: 100%
}

.PhotoView-Slider__toolbarIcon {
  fill: #fff;
  box-sizing: border-box;
  cursor: pointer;
  opacity: .75;
  padding: 10px;
  transition: opacity .2s linear
}

.PhotoView-Slider__toolbarIcon:hover {
  opacity: 1
}

.PhotoView-Slider__ArrowLeft,
.PhotoView-Slider__ArrowRight {
  align-items: center;
  bottom: 0;
  cursor: pointer;
  display: flex;
  height: 100px;
  justify-content: center;
  margin: auto;
  opacity: .75;
  position: absolute;
  top: 0;
  transition: opacity .2s linear;
  -webkit-user-select: none;
  user-select: none;
  width: 70px;
  z-index: 20
}

.PhotoView-Slider__ArrowLeft:hover,
.PhotoView-Slider__ArrowRight:hover {
  opacity: 1
}

.PhotoView-Slider__ArrowLeft svg,
.PhotoView-Slider__ArrowRight svg {
  fill: #fff;
  background: #0000004d;
  box-sizing: initial;
  height: 24px;
  padding: 10px;
  width: 24px
}

.PhotoView-Slider__ArrowLeft {
  left: 0
}

.PhotoView-Slider__ArrowRight {
  right: 0
}

.stock-message p {
  color: red
}

.Toastify {
  padding: 0
}

.Toastify__toast {
  border-radius: 8px;
  box-shadow: 0 4px 10px #0000001a;
  font-family: Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.4
}

.Toastify__toast--success {
  background-color: #28a745 !important;
  color: #fff
}

.Toastify__toast--error {
  background-color: #dc3545 !important;
  color: #fff
}

.Toastify__toast-body {
  font-size: 4rem;
  font-weight: 700
}

.Toastify__close-button {
  color: #fff !important;
  opacity: .8
}

.Toastify__close-button:hover {
  opacity: 1
}

:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74d3c;
  --toastify-color-transparent: #ffffffb3;
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-container-width: fit-content;
  --toastify-toast-width: 320px;
  --toastify-toast-offset: 16px;
  --toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
  --toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
  --toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
  --toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
  --toastify-toast-background: #fff;
  --toastify-toast-padding: 14px;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-toast-bd-radius: 6px;
  --toastify-toast-shadow: 0px 4px 12px #0000001a;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(90deg, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
  --toastify-color-progress-bgo: 0.2
}

.Toastify__toast-container {
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex-direction: column;
  position: fixed;
  -webkit-transform: translateZ(9999);
  -webkit-transform: translateZ(var(--toastify-z-index));
  width: -moz-fit-content;
  width: fit-content;
  width: var(--toastify-container-width);
  z-index: 9999;
  z-index: var(--toastify-z-index)
}

.Toastify__toast-container--top-left {
  left: max(16px, env(safe-area-inset-left));
  left: var(--toastify-toast-left);
  top: max(16px, env(safe-area-inset-top));
  top: var(--toastify-toast-top)
}

.Toastify__toast-container--top-center {
  align-items: center;
  left: 50%;
  top: max(16px, env(safe-area-inset-top));
  top: var(--toastify-toast-top);
  transform: translateX(-50%)
}

.Toastify__toast-container--top-right {
  align-items: end;
  right: max(16px, env(safe-area-inset-right));
  right: var(--toastify-toast-right);
  top: max(16px, env(safe-area-inset-top));
  top: var(--toastify-toast-top)
}

.Toastify__toast-container--bottom-left {
  bottom: max(16px, env(safe-area-inset-bottom));
  bottom: var(--toastify-toast-bottom);
  left: max(16px, env(safe-area-inset-left));
  left: var(--toastify-toast-left)
}

.Toastify__toast-container--bottom-center {
  align-items: center;
  bottom: max(16px, env(safe-area-inset-bottom));
  bottom: var(--toastify-toast-bottom);
  left: 50%;
  transform: translateX(-50%)
}

.Toastify__toast-container--bottom-right {
  align-items: end;
  bottom: max(16px, env(safe-area-inset-bottom));
  bottom: var(--toastify-toast-bottom);
  right: max(16px, env(safe-area-inset-right));
  right: var(--toastify-toast-right)
}

.Toastify__toast {
  --y: 0;
  align-items: center;
  border-radius: 6px;
  border-radius: var(--toastify-toast-bd-radius);
  box-shadow: 0 4px 12px #0000001a;
  box-shadow: var(--toastify-toast-shadow);
  box-sizing: border-box;
  display: flex;
  flex: 1 1 auto;
  font-family: sans-serif;
  font-family: var(--toastify-font-family);
  margin-bottom: 1rem;
  max-height: 800px;
  max-height: var(--toastify-toast-max-height);
  min-height: 64px;
  min-height: var(--toastify-toast-min-height);
  padding: 14px;
  padding: var(--toastify-toast-padding);
  position: relative;
  touch-action: none;
  width: 320px;
  width: var(--toastify-toast-width);
  word-break: break-word;
  z-index: 0
}

@media only screen and (max-width:480px) {
  .Toastify__toast-container {
    left: env(safe-area-inset-left);
    margin: 0;
    width: 100vw
  }
  .Toastify__toast-container--top-center,
  .Toastify__toast-container--top-left,
  .Toastify__toast-container--top-right {
    top: env(safe-area-inset-top);
    transform: translateX(0)
  }
  .Toastify__toast-container--bottom-center,
  .Toastify__toast-container--bottom-left,
  .Toastify__toast-container--bottom-right {
    bottom: env(safe-area-inset-bottom);
    transform: translateX(0)
  }
  .Toastify__toast-container--rtl {
    left: auto;
    right: env(safe-area-inset-right)
  }
  .Toastify__toast {
    --toastify-toast-width: 100%;
    border-radius: 0;
    margin-bottom: 0
  }
}

.Toastify__toast-container[data-stacked=true] {
  width: 320px;
  width: var(--toastify-toast-width)
}

.Toastify__toast--stacked {
  position: absolute;
  transform: translate3d(0, var(--y), 0) scale(var(--s));
  transition: transform .3s;
  width: 100%
}

.Toastify__toast--stacked[data-collapsed] .Toastify__close-button,
.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body {
  transition: opacity .1s
}

.Toastify__toast--stacked[data-collapsed=false] {
  overflow: visible
}

.Toastify__toast--stacked[data-collapsed=true]:not(:last-child)>* {
  opacity: 0
}

.Toastify__toast--stacked:after {
  bottom: 100%;
  content: "";
  height: calc(var(--g)*1px);
  left: 0;
  position: absolute;
  right: 0
}

.Toastify__toast--stacked[data-pos=top] {
  top: 0
}

.Toastify__toast--stacked[data-pos=bot] {
  bottom: 0
}

.Toastify__toast--stacked[data-pos=bot].Toastify__toast--stacked:before {
  transform-origin: top
}

.Toastify__toast--stacked[data-pos=top].Toastify__toast--stacked:before {
  transform-origin: bottom
}

.Toastify__toast--stacked:before {
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  transform: scaleY(3);
  z-index: -1
}

.Toastify__toast--rtl {
  direction: rtl
}

.Toastify__toast--close-on-click {
  cursor: pointer
}

.Toastify__toast-icon {
  display: flex;
  flex-shrink: 0;
  margin-inline-end: 10px;
  width: 22px
}

.Toastify--animate {
  animation-duration: .5s;
  animation-fill-mode: both
}

.Toastify--animate-icon {
  animation-duration: .3s;
  animation-fill-mode: both
}

.Toastify__toast-theme--dark {
  background: #121212;
  background: var(--toastify-color-dark);
  color: #fff;
  color: var(--toastify-text-color-dark)
}

.Toastify__toast-theme--colored.Toastify__toast--default,
.Toastify__toast-theme--light {
  background: #fff;
  background: var(--toastify-color-light);
  color: #757575;
  color: var(--toastify-text-color-light)
}

.Toastify__toast-theme--colored.Toastify__toast--info {
  background: #3498db;
  background: var(--toastify-color-info);
  color: #fff;
  color: var(--toastify-text-color-info)
}

.Toastify__toast-theme--colored.Toastify__toast--success {
  background: #07bc0c;
  background: var(--toastify-color-success);
  color: #fff;
  color: var(--toastify-text-color-success)
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
  background: #f1c40f;
  background: var(--toastify-color-warning);
  color: #fff;
  color: var(--toastify-text-color-warning)
}

.Toastify__toast-theme--colored.Toastify__toast--error {
  background: #e74d3c;
  background: var(--toastify-color-error);
  color: #fff;
  color: var(--toastify-text-color-error)
}

.Toastify__progress-bar-theme--light {
  background: linear-gradient(90deg, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
  background: var(--toastify-color-progress-light)
}

.Toastify__progress-bar-theme--dark {
  background: #bb86fc;
  background: var(--toastify-color-progress-dark)
}

.Toastify__progress-bar--info {
  background: #3498db;
  background: var(--toastify-color-progress-info)
}

.Toastify__progress-bar--success {
  background: #07bc0c;
  background: var(--toastify-color-progress-success)
}

.Toastify__progress-bar--warning {
  background: #f1c40f;
  background: var(--toastify-color-progress-warning)
}

.Toastify__progress-bar--error {
  background: #e74d3c;
  background: var(--toastify-color-progress-error)
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning {
  background: #ffffffb3;
  background: var(--toastify-color-transparent)
}

.Toastify__close-button {
  background: #0000;
  border: none;
  color: #fff;
  cursor: pointer;
  opacity: .7;
  outline: none;
  padding: 0;
  position: absolute;
  right: 6px;
  top: 6px;
  transition: .3s ease;
  z-index: 1
}

.Toastify__toast--rtl .Toastify__close-button {
  left: 6px;
  right: auto
}

.Toastify__close-button--light {
  color: #000;
  opacity: .3
}

.Toastify__close-button>svg {
  fill: currentColor;
  height: 16px;
  width: 14px
}

.Toastify__close-button:focus,
.Toastify__close-button:hover {
  opacity: 1
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1)
  }
  to {
    transform: scaleX(0)
  }
}

.Toastify__progress-bar {
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: .7;
  position: absolute;
  transform-origin: left;
  width: 100%;
  z-index: 1
}

.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards
}

.Toastify__progress-bar--controlled {
  transition: transform .2s
}

.Toastify__progress-bar--rtl {
  border-bottom-left-radius: 0;
  left: auto;
  right: 0;
  transform-origin: right
}

.Toastify__progress-bar--wrp {
  border-bottom-left-radius: 6px;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
  border-bottom-right-radius: 6px;
  border-bottom-right-radius: var(--toastify-toast-bd-radius);
  bottom: 0;
  height: 5px;
  left: 0;
  overflow: hidden;
  position: absolute;
  width: 100%
}

.Toastify__progress-bar--wrp[data-hidden=true] {
  opacity: 0
}

.Toastify__progress-bar--bg {
  height: 100%;
  opacity: .2;
  opacity: var(--toastify-color-progress-bgo);
  width: 100%
}

.Toastify__spinner {
  animation: Toastify__spin .65s linear infinite;
  border: 2px solid #e0e0e0;
  border-color: var(--toastify-spinner-color-empty-area);
  border-radius: 100%;
  border-right-color: #616161;
  border-right-color: var(--toastify-spinner-color);
  box-sizing: border-box;
  height: 20px;
  width: 20px
}

@keyframes Toastify__bounceInRight {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0)
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0)
  }
  75% {
    transform: translate3d(10px, 0, 0)
  }
  90% {
    transform: translate3d(-5px, 0, 0)
  }
  to {
    transform: none
  }
}

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, var(--y), 0)
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, var(--y), 0)
  }
}

@keyframes Toastify__bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0)
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0)
  }
  75% {
    transform: translate3d(-10px, 0, 0)
  }
  90% {
    transform: translate3d(5px, 0, 0)
  }
  to {
    transform: none
  }
}

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, var(--y), 0)
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, var(--y), 0)
  }
}

@keyframes Toastify__bounceInUp {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0)
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0)
  }
  75% {
    transform: translate3d(0, 10px, 0)
  }
  90% {
    transform: translate3d(0, -5px, 0)
  }
  to {
    transform: translateZ(0)
  }
}

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0)
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0)
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0)
  }
}

@keyframes Toastify__bounceInDown {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0)
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0)
  }
  75% {
    transform: translate3d(0, -10px, 0)
  }
  90% {
    transform: translate3d(0, 5px, 0)
  }
  to {
    transform: none
  }
}

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0)
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0)
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0)
  }
}

.Toastify__bounce-enter--bottom-left,
.Toastify__bounce-enter--top-left {
  animation-name: Toastify__bounceInLeft
}

.Toastify__bounce-enter--bottom-right,
.Toastify__bounce-enter--top-right {
  animation-name: Toastify__bounceInRight
}

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown
}

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp
}

.Toastify__bounce-exit--bottom-left,
.Toastify__bounce-exit--top-left {
  animation-name: Toastify__bounceOutLeft
}

.Toastify__bounce-exit--bottom-right,
.Toastify__bounce-exit--top-right {
  animation-name: Toastify__bounceOutRight
}

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp
}

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown
}

@keyframes Toastify__zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3)
  }
  50% {
    opacity: 1
  }
}

@keyframes Toastify__zoomOut {
  0% {
    opacity: 1
  }
  50% {
    opacity: 0;
    transform: translate3d(0, var(--y), 0) scale3d(.3, .3, .3)
  }
  to {
    opacity: 0
  }
}

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut
}

@keyframes Toastify__flipIn {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
    transform: perspective(400px) rotateX(90deg)
  }
  40% {
    animation-timing-function: ease-in;
    transform: perspective(400px) rotateX(-20deg)
  }
  60% {
    opacity: 1;
    transform: perspective(400px) rotateX(10deg)
  }
  80% {
    transform: perspective(400px) rotateX(-5deg)
  }
  to {
    transform: perspective(400px)
  }
}

@keyframes Toastify__flipOut {
  0% {
    transform: translate3d(0, var(--y), 0) perspective(400px)
  }
  30% {
    opacity: 1;
    transform: translate3d(0, var(--y), 0) perspective(400px) rotateX(-20deg)
  }
  to {
    opacity: 0;
    transform: translate3d(0, var(--y), 0) perspective(400px) rotateX(90deg)
  }
}

.Toastify__flip-enter {
  animation-name: Toastify__flipIn
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut
}

@keyframes Toastify__slideInRight {
  0% {
    transform: translate3d(110%, 0, 0);
    visibility: visible
  }
  to {
    transform: translate3d(0, var(--y), 0)
  }
}

@keyframes Toastify__slideInLeft {
  0% {
    transform: translate3d(-110%, 0, 0);
    visibility: visible
  }
  to {
    transform: translate3d(0, var(--y), 0)
  }
}

@keyframes Toastify__slideInUp {
  0% {
    transform: translate3d(0, 110%, 0);
    visibility: visible
  }
  to {
    transform: translate3d(0, var(--y), 0)
  }
}

@keyframes Toastify__slideInDown {
  0% {
    transform: translate3d(0, -110%, 0);
    visibility: visible
  }
  to {
    transform: translate3d(0, var(--y), 0)
  }
}

@keyframes Toastify__slideOutRight {
  0% {
    transform: translate3d(0, var(--y), 0)
  }
  to {
    transform: translate3d(110%, var(--y), 0);
    visibility: hidden
  }
}

@keyframes Toastify__slideOutLeft {
  0% {
    transform: translate3d(0, var(--y), 0)
  }
  to {
    transform: translate3d(-110%, var(--y), 0);
    visibility: hidden
  }
}

@keyframes Toastify__slideOutDown {
  0% {
    transform: translate3d(0, var(--y), 0)
  }
  to {
    transform: translate3d(0, 500px, 0);
    visibility: hidden
  }
}

@keyframes Toastify__slideOutUp {
  0% {
    transform: translate3d(0, var(--y), 0)
  }
  to {
    transform: translate3d(0, -500px, 0);
    visibility: hidden
  }
}

.Toastify__slide-enter--bottom-left,
.Toastify__slide-enter--top-left {
  animation-name: Toastify__slideInLeft
}

.Toastify__slide-enter--bottom-right,
.Toastify__slide-enter--top-right {
  animation-name: Toastify__slideInRight
}

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown
}

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp
}

.Toastify__slide-exit--bottom-left,
.Toastify__slide-exit--top-left {
  animation-duration: .3s;
  animation-name: Toastify__slideOutLeft;
  animation-timing-function: ease-in
}

.Toastify__slide-exit--bottom-right,
.Toastify__slide-exit--top-right {
  animation-duration: .3s;
  animation-name: Toastify__slideOutRight;
  animation-timing-function: ease-in
}

.Toastify__slide-exit--top-center {
  animation-duration: .3s;
  animation-name: Toastify__slideOutUp;
  animation-timing-function: ease-in
}

.Toastify__slide-exit--bottom-center {
  animation-duration: .3s;
  animation-name: Toastify__slideOutDown;
  animation-timing-function: ease-in
}

@keyframes Toastify__spin {
  0% {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(1turn)
  }
}

.newsletter-form .box-container {
  align-items: center;
  background-color: var(--white);
  border-radius: 5rem;
  display: flex;
  gap: 1.5rem;
  margin: 0 auto;
  max-width: 60rem;
  padding: .5rem
}

.newsletter-form input {
  background-color: var(--white);
  color: var(--secondary-color);
  flex: 1 1 20rem;
  font-size: 1.5rem;
  padding: 0 1.5rem;
  text-transform: none
}

.news-form .alert {
  color: var(--white);
  display: inline-block;
  font-size: 1.8rem;
  min-height: 3rem;
  padding-top: 1rem;
  transition: none
}

.news-form .error {
  color: red
}

.news-form .success {
  color: var(--white)
}

.accordion {
  background: var(--white);
  box-shadow: var(--box-shadow);
  margin-bottom: 1.5rem;
  overflow: hidden
}

.accordion:last-child {
  margin-bottom: 0
}

.accordion .accordion-heading {
  align-items: center;
  background-color: var(--secondary-color);
  cursor: pointer;
  display: flex;
  font-size: 1.8rem;
  gap: 1.5rem;
  justify-content: space-between;
  padding: 2rem
}

.accordion.active .accordion-heading {
  background-color: var(--main-color)
}

.accordion .accordion-heading .icon {
  align-items: center;
  background-color: var(--white);
  color: var(--secondary-color);
  display: flex;
  height: 4rem;
  justify-content: center;
  width: 4rem
}

.accordion.active .accordion-heading .icon {
  color: var(--main-color)
}

.accordion .accordion-heading h3 {
  color: var(--white);
  flex: 1 1 30rem
}

.accordion.active .accordion-content {
  display: block
}

.accordion-content {
  color: var(--grey);
  display: none;
  font-size: 1.5rem;
  line-height: 2;
  padding: 2rem
}

.team .tab-buttons {
  padding-top: 2rem
}

.team-container .box-container {
  grid-gap: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  margin-bottom: 1rem
}

.team-container .team-heading {
  align-items: center;
  display: flex;
  gap: 1rem;
  margin: 2rem 0
}

.team-container .team-heading h3 {
  color: var(---secondary-color);
  font-size: 3rem
}

.team-container .team-heading .icon {
  align-items: center;
  background-color: var(--main-color);
  color: var(--white);
  display: flex;
  font-size: 2.5rem;
  height: 4rem;
  justify-content: center;
  width: 4rem
}

.team-item {
  border-bottom: .4rem solid var(--main-color);
  overflow: hidden;
  position: relative;
  height: 490px;
}

.team-item .team-image {
  box-shadow: var(--box-shadow);
  height: 35rem;
  overflow: hidden;
  position: relative
}

.team-item .team-content {
  align-items: center;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  /*height: 100%;*/
  justify-content: flex-end;
  left: 0;
  padding: 0.5rem 1.5rem;
  position: relative;
  text-align: center;
  top: 0;
  width: 100%
}

.team-item .team-content h3 {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: .5rem
}
.article-page__image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.team-item .team-content h3:hover {
  color: var(--main-color)
}

.team-item .team-content h5 {
  color: #000;
  font-size: 16px;
  font-weight: 500
}

.team-item .icon-container {
  align-items: center;
  background-color: var(--main-color);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
  display: flex;
  flex-direction: column;
  gap: .5rem;
  justify-content: center;
  padding: 1rem 1rem 4rem;
  position: absolute;
  right: -100%;
  top: 0;
  transition: all .4s ease-in-out 0s;
  z-index: 2
}

.team-item:hover .icon-container {
  right: 0
}

.team-item .icon-container a {
  align-items: center;
  color: var(--white);
  display: flex;
  font-size: 1.7rem;
  height: 3.5rem;
  justify-content: center;
  width: 3.5rem
}

.team-item .icon-container a:hover {
  color: var(--secondary-color)
}

.profile-single .profile-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem
}

.profile-single .profile-image {
  box-shadow: var(--box-shadow);
  height: 60rem;
  overflow: hidden;
  position: relative;
  width: 40rem
}

.profile-single .intro-text {
  align-items: center;
  background-color: var(--secondary-color);
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 0;
  padding: 3rem 2rem;
  position: absolute;
  width: 100%
}

.profile-single h3 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 600
}

.profile-single h5 {
  color: var(--main-color);
  font-size: 1.8rem;
  font-weight: 500;
  padding-bottom: 1.5rem
}

.profile-single .icon-container {
  align-items: center;
  display: flex;
  gap: .7rem;
  justify-content: center
}

.profile-single .icon-container a {
  align-items: center;
  background: var(--linear);
  border: .2rem solid var(--main-color);
  color: var(--white);
  display: flex;
  font-size: 1.5rem;
  height: 4rem;
  justify-content: center;
  width: 4rem
}

.profile-single .icon-container a:hover {
  background: #0000;
  color: var(--main-color)
}

.profile-single .information {
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  flex: 1 1 50rem;
  padding: 2rem
}

.profile-single .text {
  color: var(--grey);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: .2px;
  line-height: 1.7
}

.profile-single .profile-personal-info {
  padding-bottom: 1rem;
  padding-top: 2rem
}

.profile-single .info-item li {
  align-items: center;
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem
}

.profile-single .info-item .title {
  align-items: center;
  display: flex;
  gap: .8rem
}

.profile-single .info-item .icon {
  align-items: center;
  color: var(--main-color);
  display: flex;
  font-size: 1.6rem;
  justify-content: center
}

.profile-single .info-item h6 {
  color: var(--secondary-color);
  font-size: 2rem;
  letter-spacing: .05rem
}

.profile-single .info-item span {
  color: var(--grey);
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: none
}

.profile-single .player-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2rem
}

.profile-single .stat-item {
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  flex: 1 1 42rem;
  padding: 2rem
}

.profile-single .stat-container {
  display: flex;
  justify-content: center
}

.profile-single .stat-container ul {
  flex: 1 1 20rem
}

.points-container {
  box-shadow: var(--box-shadow)
}

.point-table .table-title {
  background-color: var(--black);
  border-bottom: .4rem solid var(--main-color);
  color: var(--white);
  display: flex;
  gap: .5rem;
  justify-content: center;
  padding: 1rem .5rem
}

.point-table .table-title h3.name {
  flex: 1 1 30rem
}

.point-table .table-title h3 {
  flex: 1 1 5rem;
  font-size: 1.8rem;
  text-align: center
}

.point-table .points {
  background-color: var(--white);
  padding: 0 .5rem
}

.point-item {
  align-items: center;
  /*border-bottom: .1rem solid #0000001a;*/
  display: flex;
  gap: .5rem;
  justify-content: center;
  padding: 1rem 0;
}

.point-item .box {
  color: var(--grey);
  flex: 1 1 5rem;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center
}

.point-item .name {
  align-items: center;
  display: flex;
  flex: 1 1 30rem;
  gap: 1rem;
  text-align: left
}

.point-item .name img {
  height: 3.5rem;
  object-fit: cover;
  width: 3.5rem
}

.point-item .name span {
  color: var(--black);
  font-size: 1.8rem;
  font-weight: 500
}

.page-sidebar {
  background: var(--secondary-color);
  border-bottom: var(--custom-border);
  box-shadow: var(--box-shadow);
  flex: 1 1 25rem;
  padding: 4rem
}

.page-sidebar .sub-heading {
  color: var(--white);
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  padding-bottom: 2rem
}

.page-sidebar .detail-item {
  display: flex;
  gap: .8rem;
  padding-bottom: 2rem
}

.page-sidebar .detail-item:last-child {
  padding-bottom: 0
}

.page-sidebar .detail-item .icon {
  align-items: center;
  color: var(--main-color);
  display: flex;
  font-size: 1.8rem;
  height: 2rem;
  justify-content: center;
  width: 2rem
}

.page-sidebar .detail-item h3 {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  padding-bottom: .5rem
}

.page-sidebar .detail-item .detail-content p {
  color: var(--light-grey);
  font-weight: 400;
  line-height: 1.3;
  text-transform: none
}

.page-sidebar .btn {
  margin-top: 3rem
}

.team-squad {
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem
}

.team-squad:last-child {
  margin-bottom: 0
}

.team-squad .title {
  align-items: center;
  background-color: var(--black);
  border-bottom: .4rem solid var(--main-color);
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  padding: 1rem;
  text-align: center
}

.team-squad .title img {
  height: 3.5rem;
  width: 3.5rem
}

.team-squad .title h5 {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 500
}

.team-squad .sub-heading {
  align-items: center;
  background-color: var(--secondary-color);
  display: flex;
  gap: 1rem;
  padding: 1rem
}

.team-squad .sub-heading h3 {
  color: var(--white);
  flex: 1 1 30rem;
  font-size: 1.8rem;
  font-weight: 600
}

.team-squad .sub-heading h3:first-child {
  flex: 1 1 5rem
}

.team-squad .squad-content {
  padding: 1rem
}

.team-squad .squad-item {
  border-bottom: .1rem solid #0000001a;
  display: flex;
  gap: 1rem;
  padding: 1rem
}

.team-squad .squad-item:last-child {
  border-bottom: none
}

.team-squad .squad-item h3 {
  color: var(--secondary-color);
  flex: 1 1 30rem;
  font-size: 1.8rem;
  font-weight: 500
}

.team-squad .squad-item h3:first-child {
  color: var(--black);
  flex: 1 1 5rem;
  font-weight: 600
}

.team-squad .squad-item p {
  color: var(--grey);
  flex: 1 1 30rem;
  font-size: 1.5rem
}

.team-innings {
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem
}

.team-innings:last-child {
  margin-bottom: 0
}

.team-innings .title {
  background-color: var(--black);
  border-bottom: .4rem solid var(--main-color);
  color: var(--white);
  display: flex;
  font-size: 1.8rem;
  font-weight: 600;
  justify-content: space-between;
  padding: 1rem
}

.team-innings .name {
  align-items: center;
  display: flex;
  gap: 1.5rem
}

.team-innings .name img {
  height: 3.5rem;
  width: 3.5rem
}

.team-innings .name h5 {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 500
}

.team-innings .title h3 span {
  font-size: 1.6rem;
  font-weight: 400;
  padding-left: .5rem
}

.team-innings .sub-heading {
  align-items: center;
  background-color: var(--secondary-color);
  display: flex;
  gap: 1rem;
  padding: 1rem
}

.team-innings .sub-heading h3 {
  color: var(--white);
  flex: 1 1 40rem;
  font-size: 1.6rem;
  font-weight: 500
}

.team-innings .info-heading {
  align-items: center;
  display: flex;
  flex: 1 1 30rem;
  justify-content: space-around
}

.team-innings .info-heading h6 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500
}

.team-innings .content {
  padding: 1rem
}

.team-innings .innings-item .item {
  border-bottom: .1rem solid #0000001a;
  display: flex;
  gap: 1rem;
  padding: .5rem 0
}

.team-innings .innings-item .item:last-child {
  border-bottom: none
}

.team-innings .intro {
  flex: 1 1 40rem
}

.team-innings .item h3 {
  color: var(--black);
  font-size: 1.6rem
}

.team-innings .item h6 {
  color: var(--black);
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: none
}

.team-innings .details {
  flex: 1 1 30rem
}

.team-innings .details ul {
  align-items: center;
  display: flex;
  justify-content: space-around;
  list-style-type: none
}

.team-innings .details ul li {
  color: var(--grey);
  flex: 1 1 5rem;
  font-size: 1.4rem;
  text-align: center
}

.team-innings .extras {
  background-color: #0000000d;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1rem
}

.team-innings .extras h3 {
  color: var(--black);
  font-size: 1.6rem;
  padding-right: 2rem
}

.team-innings .extras p {
  color: var(--grey);
  font-size: 1.4rem
}

.team-innings .wickets-fall .content {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem
}

.team-innings .wickets-fall h4 {
  color: var(--black);
  font-size: 1.4rem;
  font-weight: 600
}

.team-innings .wickets-fall h4 span {
  color: var(--grey);
  font-size: 1.4rem;
  font-weight: 400
}

.tab-buttons {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  list-style-type: none;
  margin-bottom: 2rem
}
.polza__block__title {
    text-align: center;
    font-size: 20px;
}
.tab-buttons .button {
  background: var(--secondary-color);
  border-radius: 5rem;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1.5rem 3rem;
  text-align: center;
  text-transform: uppercase
}

.tab-buttons .button.active,
.tab-buttons .button:hover {
  background: var(--linear);
  box-shadow: var(--box-shadow);
  cursor: pointer
}

.portfolio-item {
  padding: .8rem;
  width: 33.3%
}

.portfolio-content {
  box-shadow: var(--box-shadow);
  /*height: 35rem;*/
  overflow: hidden;
  position: relative
}

.portfolio-item .text {
  background: var(--linear);
  bottom: -100%;
  left: 0;
  padding: 2rem;
  position: absolute;
  transition: all .4s ease-in-out 0s;
  width: 100%
}

.portfolio-content:hover .text {
  bottom: 0
}

.portfolio-item .text p {
  align-items: center;
  color: var(--white);
  display: flex;
  font-size: 1.8rem;
  gap: 1rem
}

.portfolio-item .text span {
  background-color: var(--white);
  display: inline-block;
  height: .2rem;
  margin: 2rem 0;
  width: 2rem
}

.portfolio-item .text h3 {
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 600
}

.portfolio-item .text h3:hover {
  color: var(--secondary-color)
}

.portfolio-item .btn-container {
  display: flex;
  gap: .5rem;
  position: absolute;
  right: 2rem;
  top: 2rem
}

.portfolio-content .icon {
  align-items: center;
  background-color: var(--main-color);
  border-radius: var(--border-radius-3);
  color: var(--white);
  display: flex;
  font-size: 1.8rem;
  height: 5rem;
  justify-content: center;
  scale: 0;
  width: 5rem
}

.portfolio-content .icon:hover {
  background-color: var(--secondary-color)
}

.portfolio-content:hover .icon {
  scale: 1
}

.policy {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem
}

.policy .policy-tab-buttons {
  flex: 1 1 15rem;
  overflow: hidden
}

.policy .category {
  border-left: .5rem solid var(--secondary-color);
  display: block;
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: .5rem;
  padding: 2rem 2.5rem;
  text-align: left;
  text-transform: capitalize
}

.policy .policy-tabs {
  flex: 1 1 70rem
}

.policy-item {
  background: var(--white);
  border-radius: var(--border-radius-2);
  box-shadow: var(--box-shadow);
  margin-bottom: 1.5rem;
  padding: 2rem
}

.policy-item:last-child {
  margin-bottom: 0
}

.policy-item h3 {
  align-items: center;
  color: var(--secondary-color);
  display: flex;
  font-size: 2.5rem;
  gap: 1.5rem;
  padding-bottom: 1.5rem
}

.policy-item p {
  line-height: 2
}

.policy-item ul {
  padding-left: 1rem
}

.policy-item ul li {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -ms-grid-row-align: flex-start;
  align-items: flex-start;
  color: var(--grey);
  display: flex;
  font-size: 1.5rem;
  gap: 1rem;
  padding-top: 1rem
}

.policy-item ul .icon {
  align-items: center;
  color: var(--main-color);
  display: flex;
  font-size: 2rem;
  height: 1.8rem;
  justify-content: center;
  padding-top: .5rem;
  width: 1.2rem
}

.sidebar {
  flex: 1 1 28rem
}

.sidebar .sidebar-item {
  background-color: var(--white);
  border-bottom: var(--custom-border);
  box-shadow: var(--box-shadow);
  margin-bottom: 1.5rem;
  padding: 1.5rem
}

.sidebar .search .input-box {
  border-radius: 5rem;
  display: flex;
  overflow: hidden
}

.sidebar .search .input-box input {
  border: .1rem solid #00000080;
  border-bottom-left-radius: 5rem;
  border-top-left-radius: 5rem;
  overflow: hidden;
  padding: 1.5rem;
  width: 100%
}

.sidebar .search .input-box input:focus {
  border-color: var(--main-color)
}

.sidebar .search .input-box button {
  align-items: center;
  background-color: var(--secondary-color);
  color: var(--white);
  cursor: pointer;
  display: flex;
  font-size: 1.8rem;
  justify-content: center;
  padding: .5rem 2rem
}

.sidebar .search .input-box button:hover {
  background-color: var(--main-color)
}

.sidebar .category .item {
  border-bottom: .15rem solid #0000001a;
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 0
}

.sidebar .category .item:last-child {
  margin-bottom: 0
}

.sidebar .category .item span {
  align-items: center;
  color: var(--secondary-color);
  display: flex;
  font-size: 1.7rem;
  font-weight: 400;
  gap: 1rem
}

.sidebar .category .item span .icon {
  align-items: center;
  color: var(--main-color);
  display: flex;
  font-size: 1.8rem;
  justify-content: center
}

.sidebar .category .item p {
  font-size: 1.5rem
}

.sidebar .category .item.active p,
.sidebar .category .item.active span,
.sidebar .category .item:hover p,
.sidebar .category .item:hover span {
  color: var(--main-color)
}

.sidebar .tags .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem
}

.sidebar .tag-item {
  background-color: var(--main-color);
  color: var(--white);
  font-size: 1.6rem;
  padding: 1rem 1.8rem
}

.sidebar .tag-item.active,
.sidebar .tag-item:hover {
  background-color: var(--secondary-color);
  cursor: pointer
}

.sidebar .post-item {
  align-items: center;
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem
}

.sidebar .post-item:last-child {
  margin-bottom: 0
}

.sidebar .post-item img {
  box-shadow: var(--box-shadow);
  height: 8rem;
  width: 10rem
}

.sidebar .post-item a {
  color: var(--secondary-color);
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2
}

.sidebar .post-item a:hover {
  color: var(--main-color)
}

.sidebar .product-item {
  align-items: center;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem
}

.sidebar .product-item:last-child {
  margin-bottom: 0
}

.sidebar .product-item .options {
  display: none
}

.sidebar .product-item .content {
  padding: 0;
  text-align: left
}

.sidebar .product-item .image img {
  box-shadow: var(--box-shadow);
  height: 8rem;
  width: 8rem
}

.sidebar .product-item .rating {
  display: none
}

.sidebar .product-item h3 {
  display: inline-block;
  font-size: 2rem;
  font-weight: 600
}

.sidebar .product-item .price {
  font-size: 1.7rem;
  font-weight: 700
}

.sidebar .product-item .price span {
  color: var(--grey);
  font-size: 1.3rem
}

.blog-item {
  background-color: var(--white);
  box-shadow: var(--box-shadow)
}

.blog-item .image {
  height: 25rem;
  position: relative
}

.blog-item .date {
  background: var(--linear);
  color: var(--white);
  display: inline-block;
  font-size: 1.8rem;
  line-height: 1;
  padding: 1.5rem;
  position: absolute;
  right: 2rem;
  text-align: center;
  top: 0;
  width: 9rem
}

.blog-item .date span {
  font-size: 3rem;
  font-weight: 500
}

.blog-item .content {
  padding: 2rem
}

.blog-item .category {
  background-color: var(--main-color);
  color: var(--white);
  display: inline-block;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  padding: .7rem 1rem
}

.blog-item .category:hover {
  background-color: var(--secondary-color)
}

.blog-item .details {
  align-items: center;
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem
}

.blog-item h3 {
  align-items: center;
  display: flex;
  gap: .7rem
}

.blog-item h3 .icon {
  align-items: center;
  color: var(--main-color);
  display: flex;
  font-size: 1.8rem;
  height: 2rem;
  justify-content: center;
  width: 2rem
}

.blog-item h3 span {
  color: var(--grey);
  font-size: 1.6rem;
  font-weight: 400
}

.blog-item .main-heading {
  color: var(--secondary-color);
  display: block;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.3;
  padding-bottom: 1rem
}

.blog-item .main-heading:hover {
  color: var(--main-color)
}

.comments {
  padding: 2rem 0
}

.comments h4 {
  color: var(--secondary-color);
  font-size: 2.5rem;
  padding-bottom: 1rem
}

.comments .replies {
  margin-left: 12rem;
  margin-top: .5rem
}

.comments .replies .comment-content {
  flex: 1 1 20rem
}

.comment {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -ms-grid-row-align: flex-start;
  align-items: flex-start;
  display: flex;
  gap: 2rem;
  padding-bottom: 2rem
}

.comment .comment-image {
  box-shadow: var(--box-shadow);
  height: 10rem;
  overflow: hidden;
  width: 10rem
}

.comment .comment-content {
  flex: 1 1 35rem
}

.comment .comment-intro {
  padding-bottom: .5rem
}

.comment .comment-text {
  align-items: center;
  color: var(--grey);
  display: flex;
  font-size: 1.5rem;
  gap: 1rem;
  line-height: 1.2
}

.comment .comment-text h3 {
  border-right: .1rem solid #0003;
  color: var(--secondary-color);
  font-size: 2.2rem;
  font-weight: 700;
  padding-right: 1rem
}

.comment .comment-text h6 {
  color: var(--main-color);
  font-size: 1.5rem;
  font-weight: 500;
  padding: .5rem 0
}

.comment .rating {
  display: flex;
  gap: .5rem
}

.comment .rating .icon {
  color: var(--main-color);
  font-size: 1.6rem
}

.comment .rating h5 {
  color: var(--secondary-color);
  font-size: 1.6rem
}

.comment .icon-item {
  align-items: center;
  color: var(--main-color);
  cursor: pointer;
  display: flex;
  gap: .3rem;
  padding-top: .5rem
}

.comment .icon-item .icon {
  font-size: 2rem;
  padding-right: .5rem
}

.comment .icon-item span {
  font-size: 1.6rem
}

.comment .icon-item:hover {
  color: var(--secondary-color);
  cursor: pointer
}

.pages-no {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  width: 100%
}

.pages-no .container {
  display: flex;
  gap: 1rem
}

.pages-no .item {
  align-items: center;
  background-color: var(--secondary-color);
  box-shadow: var(--box-shadow);
  color: var(--white);
  display: flex;
  font-size: 2rem;
  height: 5rem;
  justify-content: center;
  width: 5rem
}

.pages-no .item.active,
.pages-no .item:hover {
  background-color: var(--main-color);
  cursor: pointer
}

.pages-no .numbers {
  display: flex;
  gap: 1rem
}

.shoplist-title {
  background: var(--linear);
  color: var(--white);
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 1.5rem
}

.shoplist-title h3 {
  flex: 1 1 10rem;
  font-size: 2rem;
  text-align: center
}

.shoplist-title h3:first-child {
  flex: 1 1 20rem;
  text-align: left
}

.product-item {
  overflow: hidden
}

.product-item .options {
  left: -100%;
  position: absolute;
  top: 1rem;
  transition: all .5s ease
}

.product-item .options a {
  align-items: center;
  background-color: var(--main-color);
  border-radius: var(--border-radius-3);
  color: var(--white);
  cursor: pointer;
  display: flex;
  font-size: 1.5rem;
  height: 4rem;
  justify-content: center;
  margin-bottom: .7rem;
  position: relative;
  width: 4rem
}

.product-item .options a:hover {
  background-color: var(--secondary-color)
}

.product-item:hover .options {
  left: 1rem
}

.product-item .options a:after {
  background: var(--white);
  color: var(--black);
  content: attr(data-tooltip);
  font-size: 1.2rem;
  left: 5rem;
  opacity: 0;
  padding: .6rem .9rem;
  position: absolute;
  top: 0;
  transform: translateY(30%);
  transition: opacity .3s ease, visibility .3s ease;
  visibility: hidden;
  white-space: nowrap;
  z-index: 1000
}

.product-item .options a:hover:after {
  opacity: 1;
  visibility: visible
}

.product-item .image {
  box-shadow: var(--box-shadow);
  overflow: visible;
  position: relative;
  border-radius: 20px;
}

.product-item .image img {
  height: 410px;
    object-fit: inherit;
    width: 100%;
    border-radius: 20px;
}

.product-item .content {
  padding: 1.5rem 2rem 2rem;
  text-align: center
}

.product-item h3 {
  color: var(--secondary-color);
  font-size: 2.3rem;
  font-weight: 600;
  padding-bottom: .5rem
}

.product-item .price p,
.product-item h3:hover {
  color: var(--main-color)
}

.product-item .price p {
  font-size: 2rem;
  font-weight: 700
}

.product-item .price span {
  color: var(--secondary-color);
  font-size: 1.7rem;
  font-weight: 400;
  padding-left: .2rem;
  text-decoration: line-through
}

.product-item .rating {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding-top: .2rem
}

.product-item .rating .icon {
  color: var(--main-color);
  font-size: 1.6rem
}

.product-item .rating h5 {
  color: var(--black);
  font-size: 1.5rem
}

.showcase {
  align-items: center;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 1rem 1.5rem
}

.showcase .showing {
  color: var(--grey);
  font-size: 1.6rem
}

.showcase .styles {
  display: flex;
  gap: .5rem;
  list-style-type: none
}

.showcase .styles a {
  align-items: center;
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-1);
  color: var(--white);
  display: flex;
  font-size: 2rem;
  height: 4rem;
  justify-content: center;
  width: 4rem
}

.showcase .styles a:hover {
  background-color: var(--main-color);
  color: var(--white)
}

.showcase .custom-select .custom-select-prefix__control {
  border: 1px solid #0003 !important;
  border-radius: .4rem;
  color: var(--grey) !important;
  font-size: 1.5rem;
  min-height: 4rem;
  width: 18rem
}

.showcase .custom-select .custom-select-prefix__single-value {
  color: var(--grey) !important
}

.showcase .custom-select-prefix__control--is-focused {
  border-color: var(--main-color) !important;
  box-shadow: 0 0 0 1px var(--main-color) !important
}

.showcase .custom-select .custom-select-prefix__option {
  cursor: pointer;
  font-size: 1.5rem
}

.showcase .custom-select .custom-select-prefix__option:hover {
  background-color: var(--main-color);
  color: var(--white)
}

.showcase .custom-select .custom-select-prefix__option--is-selected {
  background-color: var(--secondary-color);
  color: var(--white)
}

.summary-item {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.8rem
}

.summary-item:last-child {
  padding-bottom: 1rem
}

.summary-item .box {
  color: var(--secondary-color);
  font-size: 2rem
}

.summary-item .name {
  font-weight: 600
}

.summary-item .value {
  color: var(--main-color);
  font-weight: 500
}

.price-filter {
  padding: 2.5rem 1.5rem;
  width: 100%
}

.price-filter .price-input {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem
}

.price-input .field {
  align-items: center;
  display: flex;
  height: 3.5rem;
  width: 100%
}

.price-input h3 {
  color: var(--secondary-color);
  font-size: 1.8rem;
  font-weight: 600
}

.field span {
  border: .1rem solid #0003;
  border-radius: 5px;
  display: inline-block;
  font-size: 1.5rem;
  height: 100%;
  margin-left: 10px;
  text-align: center;
  width: 100%
}

.field span,
.price-input .separator {
  align-items: center;
  color: var(--secondary-color);
  display: flex;
  justify-content: center
}

.price-input .separator {
  font-size: 2rem;
  width: 2rem
}

.slider {
  background: #ddd;
  border-radius: 5px;
  height: .5rem;
  position: relative;
  transition: none
}

.slider .progress {
  background: var(--main-color);
  border-radius: .5rem;
  height: 100%;
  left: 25%;
  position: absolute;
  right: 25%;
  transition: none
}

.range-input {
  position: relative
}

.range-input input {
  appearance: none;
  background: none;
  cursor: pointer;
  height: 5px;
  pointer-events: none;
  position: absolute;
  top: -5px;
  width: 100%
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: var(--main-color);
  border-radius: 50%;
  box-shadow: 0 0 6px #0000000d;
  height: 17px;
  pointer-events: auto;
  width: 17px
}

input[type=range]::-moz-range-thumb {
  -moz-appearance: none;
  background: var(--main-color);
  border: none;
  border-radius: 50%;
  box-shadow: 0 0 6px #0000000d;
  height: 17px;
  pointer-events: auto;
  width: 17px
}

.empty-state {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 70vh;
  justify-content: center;
  text-align: center
}

.empty-state .icon {
  color: var(--main-color);
  font-size: 15rem
}

.empty-state h3 {
  color: var(--secondary-color);
  font-size: 2.5rem;
  font-weight: 600;
  padding: .7rem 0
}

.empty-state p {
  padding-bottom: 2rem
}

.home {
  padding: 0;
  position: relative
}

.home-slider {
  overflow: hidden;
  position: relative
}

.home-slider .swiper-button-next,
.home-slider .swiper-button-prev {
  opacity: 0
}

.home-slider:hover .swiper-button-next,
.home-slider:hover .swiper-button-prev {
  opacity: 1
}

.home-item {
  height: 70rem !important
}

.home-item .content {
  align-items: center;
  background: linear-gradient(#000000b3, #00000080);
  display: flex;
  height: 100%;
  left: 0;
  padding: 10rem 5%;
  position: absolute;
  top: 0;
  width: 100%
}

.home-item .content .text {
  margin-top: 10rem;
  width: 82rem
}

.home-item .content h5 {
  color: var(--accent-color);
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: .2rem
}

.home-item .content h1 {
  color: var(--white);
  font-size: 6rem;
  font-weight: 500;
  letter-spacing: .1rem;
  line-height: 1.2;
  margin-bottom: 1rem
}

.home-item .content p {
  color: var(--white);
  font-size: 24px;
  font-weight: 400;
  padding-bottom: 2.5rem
}

@font-face {
  font-family: swiper-icons;
  font-style: normal;
  font-weight: 400;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA")
}

:root {
  --swiper-theme-color: #007aff
}

:host {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1
}

.swiper {
  display: block;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 1
}

.swiper-vertical>.swiper-wrapper {
  flex-direction: column
}

.swiper-wrapper {
  box-sizing: initial;
  display: flex;
  height: 100%;
  position: relative;
  transition-property: transform;
  transition-timing-function: ease;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  width: 100%;
  z-index: 1
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translateZ(0)
}

.swiper-horizontal {
  touch-action: pan-y
}

.swiper-vertical {
  touch-action: pan-x
}

.swiper-slide {
  display: block;
  flex-shrink: 0;
  height: 100%;
  position: relative;
  transition-property: transform;
  width: 100%
}

.swiper-slide-invisible-blank {
  visibility: hidden
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height
}

.swiper-backface-hidden .swiper-slide {
  backface-visibility: hidden;
  transform: translateZ(0)
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d
}

.swiper-3d {
  perspective: 1200px
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  transform-style: preserve-3d
}

.swiper-css-mode>.swiper-wrapper {
  -ms-overflow-style: none;
  overflow: auto;
  scrollbar-width: none
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
  display: none
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: start start
}

.swiper-css-mode.swiper-horizontal>.swiper-wrapper {
  scroll-snap-type: x mandatory
}

.swiper-css-mode.swiper-vertical>.swiper-wrapper {
  scroll-snap-type: y mandatory
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper {
  scroll-snap-type: none
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: none
}

.swiper-css-mode.swiper-centered>.swiper-wrapper:before {
  content: "";
  flex-shrink: 0;
  order: 9999
}

.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper:before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper:before {
  height: var(--swiper-centered-offset-after);
  min-width: 1px;
  width: 100%
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10
}

.swiper-3d .swiper-slide-shadow {
  background: #00000026
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(270deg, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(90deg, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(0deg, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(180deg, #00000080, #0000)
}

.swiper-lazy-preloader {
  border: 4px solid #007aff;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top: 4px solid #0000;
  box-sizing: border-box;
  height: 42px;
  left: 50%;
  margin-left: -21px;
  margin-top: -21px;
  position: absolute;
  top: 50%;
  transform-origin: 50%;
  width: 42px;
  z-index: 10
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s linear infinite
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(1turn)
  }
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transform: translateZ(0);
  transition: opacity .3s;
  z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0
}

.swiper-pagination-disabled>.swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 8px;
  bottom: var(--swiper-pagination-bottom, 8px);
  left: 0;
  top: auto;
  top: var(--swiper-pagination-top, auto);
  width: 100%
}

.swiper-pagination-bullets-dynamic {
  font-size: 0;
  overflow: hidden
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  position: relative;
  transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(.33)
}

.swiper-pagination-bullet {
  background: #000;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  border-radius: 50%;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  display: inline-block;
  height: 8px;
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  opacity: .2;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, .2);
  width: 8px;
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px))
}

button.swiper-pagination-bullet {
  appearance: none;
  border: none;
  box-shadow: none;
  margin: 0;
  padding: 0
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer
}

.swiper-pagination-bullet:only-child {
  display: none !important
}

.swiper-pagination-bullet-active {
  background: var(--swiper-theme-color);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  opacity: 1;
  opacity: var(--swiper-pagination-bullet-opacity, 1)
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
  left: auto;
  left: var(--swiper-pagination-left, auto);
  right: 8px;
  right: var(--swiper-pagination-right, 8px);
  top: 50%;
  transform: translate3d(0, -50%, 0)
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  display: block;
  margin: 6px 0;
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: transform .2s, top .2s
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform .2s, left .2s
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform .2s, right .2s
}

.swiper-pagination-fraction {
  color: inherit;
  color: var(--swiper-pagination-fraction-color, inherit)
}

.swiper-pagination-progressbar {
  background: #00000040;
  background: var(--swiper-pagination-progressbar-bg-color, #00000040);
  position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-theme-color);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: scale(0);
  transform-origin: left top;
  width: 100%
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  height: 4px;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
  width: 100%
}

.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical>.swiper-pagination-progressbar {
  height: 100%;
  left: 0;
  top: 0;
  width: 4px;
  width: var(--swiper-pagination-progressbar-size, 4px)
}

.swiper-pagination-lock {
  display: none
}

:root {
  --swiper-navigation-size: 44px
}

.swiper-button-next,
.swiper-button-prev {
  align-items: center;
  color: var(--swiper-theme-color);
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  cursor: pointer;
  display: flex;
  height: 44px;
  height: var(--swiper-navigation-size);
  justify-content: center;
  margin-top: -22px;
  margin-top: calc(0px - var(--swiper-navigation-size)/2);
  position: absolute;
  top: 50%;
  top: var(--swiper-navigation-top-offset, 50%);
  width: 27px;
  width: calc(var(--swiper-navigation-size)/44*27);
  z-index: 10
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  cursor: auto;
  opacity: .35;
  pointer-events: none
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  cursor: auto;
  opacity: 0;
  pointer-events: none
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important
}

.swiper-button-next svg,
.swiper-button-prev svg {
  height: 100%;
  object-fit: contain;
  transform-origin: center;
  width: 100%
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg)
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto
}

.swiper-button-lock {
  display: none
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: 44px;
  font-size: var(--swiper-navigation-size);
  font-variant: normal;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none !important
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev"
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  left: auto;
  right: 10px;
  right: var(--swiper-navigation-sides-offset, 10px)
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next"
}

.about {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 2rem
}

.about .image {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -ms-grid-row-align: flex-end;
  align-items: flex-end;
  display: flex;
  flex: 1 1 50rem;
  justify-content: flex-end;
  margin-bottom: 5rem
}

.about .sub-image1 {
  height: 46rem;
  width: 85%;
  object-position: 0px 22%;
}

.about .sub-image2 {
  border: .5rem solid var(--white);
  height: 25rem;
  margin-right: -15rem;
  transform: translate(-15rem, 5rem);
  width: 25rem
}

.about .content {
  flex: 1 1 35rem
}

.about .content p {
  padding-bottom: 1rem
}

.about .about-features {
  padding-bottom: 1.5rem;
  padding-top: .5rem
}

.about .about-features li {
  align-items: center;
  display: flex;
  font-size: 1.6rem;
  gap: .8rem;
  padding-bottom: 1rem
}

.about .about-features .icon {
  align-items: center;
  color: var(--main-color);
  display: flex;
  justify-content: center
}

.about .about-features span {
  color: var(--grey);
  font-size: 20px;
}
a.back__to__btn {
    background: red;
    color: #fff;
    font-size: 20px;
    padding: 10px 20px;
    position: relative;
    left: 20px;
    top: -11px;
    border-radius: 10px;
}
/*.article-page__wrapper {
  height: 100%;
}*/
.football__detail {
  border: 2px solid #fff;
}
img.ball__detail {
    width: 20px;
    height: 20px;
}
.counting {
  align-items: center;
  background: linear-gradient(180deg, #00000080, #000000b3), url(/local/templates/footballintellectgame/static/media/2212.png);
  background-attachment: fixed;
  background-position: 50%;
  background-size: cover;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
  margin: 1rem 0;
  padding: 4rem 5%;
  width: 100%
}

.counting .box {
  flex: 1 1 25rem;
  padding: 1rem
}

.counting .info {
  align-items: center;
  display: flex;
  gap: 1rem
}

.counting .box .icon {
  align-items: center;
  background-color: var(--main-color);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-size: 4rem;
  height: 10rem;
  justify-content: center;
  outline: .2rem solid var(--white);
  outline-offset: -1rem;
  width: 10rem
}

.counting .box .content {
  flex: 1 1 10rem
}

.counting .box .count {
  color: var(--white);
  display: block;
  font-size: 4.5rem;
  font-weight: 500;
  padding-bottom: .5rem
}

.counting .box h3 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 400;
  padding-bottom: 1rem;
  position: relative
}

.testimonials {
  overflow: hidden
}

.testimonial-slider {
  overflow: hidden;
  position: relative
}

.testimonials .swiper-pagination-bullet {
  background: var(--secondary-color) !important;
  opacity: .9
}

.testimonials .swiper-pagination-bullet-active {
  background: var(--main-color) !important;
  opacity: .9
}

.testimonial-slider .swiper {
  overflow: hidden;
  padding-bottom: 6rem;
  padding-top: 8rem
}

.testi-item {
  background-color: var(--white);
  border: var(--border);
  padding-top: 8rem;
  position: relative;
  text-align: center
}

.testi-item,
.testi-item img {
  box-shadow: var(--box-shadow)
}

.testi-item img {
  border-radius: var(--border-radius-3);
  height: 12rem;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%);
  width: 12rem
}

.testi-item .quote-left {
  color: var(--main-color);
  font-size: 4rem
}

.testi-item .comment {
  margin-bottom: 2rem;
  padding: 2rem 2.5rem;
  position: relative
}

.testi-item .quote-end,
.testi-item .quote-start {
  color: var(--secondary-color);
  font-size: 2.5rem;
  position: absolute
}

.testi-item .comment .quote-start {
  left: 2rem;
  top: 0
}

.testi-item .comment .quote-end {
  bottom: 0;
  right: 2rem;
  transform: rotate(180deg)
}

.testi-item .comment p {
  font-size: 1.8rem;
  padding: .5rem
}

.testi-item .intro {
  background-color: var(--secondary-color);
  padding: 2.5rem 0
}

.testi-item .intro h3 {
  color: var(--white);
  font-size: 2.5rem;
  padding-bottom: .5rem
}

.testi-item .intro h5 {
  color: var(--accent-color);
  font-size: 1.8rem;
  font-weight: 400
}

.about-us .testimonials .heading h2,
.homepage .testimonials .heading h2,
.why-choose-us .testimonials .heading h2 {
  color: var(--white)
}

.about-us .testimonials,
.homepage .testimonials {
  background: linear-gradient(#000c, #0009), url(/static/media/Testimonials.55cbcc34ede40959c567.jpg);
  background-attachment: fixed;
  background-position: 50%;
  background-size: cover
}

.about-us .testimonial-slider .swiper-pagination-bullet,
.homepage .testimonial-slider .swiper-pagination-bullet {
  background: #999 !important;
  opacity: .7
}

.about-us .testimonial-slider .swiper-pagination-bullet-active,
.homepage .testimonial-slider .swiper-pagination-bullet-active {
  background: var(--main-color) !important;
  opacity: .9
}

.newsletter-subscribe {
  align-items: center;
  background-image: url(/static/media/Newsletter.56145e9211dafc73b466.jpg);
  background-position: 50%;
  background-size: cover;
  display: flex;
  justify-content: center;
  padding: 6rem 5%;
  width: 100%
}

.newsletter-subscribe .content {
  padding-top: 3rem;
  text-align: center;
  width: 70rem
}

.newsletter-subscribe .heading {
  padding: 0
}

.newsletter-subscribe h2 {
  color: var(--white);
  font-size: 4.5rem;
  font-weight: 600
}

.newsletter-subscribe p {
  color: var(--white);
  font-weight: 500;
  letter-spacing: .15rem;
  padding-bottom: 3rem;
  padding-top: 1rem
}

.blog.main .box-container {
  grid-gap: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr))
}

.about-us .sponsors,
.homepage .sponsors {
  background-color: #0000000d
}

.faq-section .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem
}

.faq-section .faq {
  flex: 1 1 50rem
}

.faq-section .image {
  box-shadow: var(--box-shadow);
  flex: 1 1 35rem;
  height: 60rem
}

.home-events {
  background: linear-gradient(#00000080, #0009), url(/static/media/Upcoming.2f11be18ed05db89e11f.jpg);
  background-attachment: fixed;
  background-position: 50%;
  background-size: cover;
  padding-bottom: 4rem;
  padding-top: 4rem
}

.home-events .box-container {
  grid-gap: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
  margin: 2rem 0
}

.home-events .upcoming-item {
  border: .2rem solid var(--white);
  text-align: center
}

.home-events .upcoming-item .content {
  padding: 2rem 1rem
}

.home-events .upcoming-item .time {
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700
}

.home-events .upcoming-item .team-content {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 2rem 0
}

.home-events .upcoming-item .team-logo {
  text-align: center
}

.home-events .upcoming-item img {
  height: 10rem;
  margin-bottom: .5rem;
  width: 10rem
}

.home-events .upcoming-item h3 {
  color: var(--white);
  font-size: 1.8rem;
  text-align: center
}

.home-events .upcoming-item h6 {
  color: var(--white);
  font-size: 6rem;
  font-weight: 600
}

.home-events .upcoming-item .venue {
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700
}

.home-events .upcoming-item .btn-container {
  align-items: center;
  display: flex
}
.analytics-item__inner {
    border-radius: 10px;
}
.home-events .upcoming-item .btn {
  text-align: center;
  width: 100%
}
.team-image img {
  border-radius: 10px;
}

.home-shop .box-container {
  grid-gap: 4rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr))
}

.player,
.player-slider {
  overflow: hidden
}

.player-slider {
  position: relative
}

.player-slider .swiper {
  overflow: hidden;
  padding-bottom: 8rem
}

.player-slider .swiper-button-next,
.player-slider .swiper-button-prev {
  top: 90%
}

.player-slider .swiper-button-next {
  right: 0
}

.player-slider .swiper-button-prev {
  left: auto;
  right: 6rem
}

.result-point {
  grid-gap: 2rem;
  background: linear-gradient(#000000b3, #000000b3), url(/static/media/Result.6c0df111addd584ab226.jpg);
  background-attachment: fixed;
  background-position: 50%;
  background-size: cover;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(45rem, 1fr))
}

.home-result,
.result-slider {
  overflow: hidden
}

.result-slider {
  position: relative
}

.result-slider .swiper {
  overflow: hidden;
  padding-bottom: 6rem;
  padding-top: 2rem
}

.home-result .result-item {
  background-color: #111;
  border: .15rem solid var(--white);
  padding: 3rem 4rem;
  text-align: center
}

.home-result .result-item h6 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 500;
  position: relative
}

.home-result .result-item h6:before {
  background-color: var(--white);
  bottom: 0;
  content: "";
  height: .2rem;
  left: 0;
  left: 50%;
  margin-left: -3rem;
  position: absolute;
  width: 6rem
}

.home-result .result-item .intro {
  align-items: center;
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  margin: 2rem 0
}

.home-result .result-item .team-result {
  align-items: center;
  display: flex;
  gap: 2rem
}

.home-result .result-item .name {
  text-align: center
}

.home-result .result-item .name img {
  height: 10rem;
  margin-bottom: .5rem;
  object-fit: cover;
  width: 10rem
}

.home-result .result-item .name h3 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2
}

.home-result .result-item .result {
  text-align: center
}

.home-result .result-item .result h5 {
  color: var(--white);
  font-size: 2rem
}

.home-result .result-item .result p {
  color: var(--white);
  font-size: 1.6rem
}

.home-result .result-item .fixture-content {
  color: var(--white);
  font-size: 1.8rem;
  text-align: center
}

.result-point .point-table .points-container {
  padding: 2rem 0
}

.trophies {
  background: linear-gradient(#00000080, #000000b3), url(/local/templates/footballintellectgame/static/media/Awards.191e21490fc72385c88c.jpg);
  background-attachment: fixed;
  background-position: 50%;
  background-size: cover
}

.trophy-slider {
  padding-top: 2rem
}

.trophy-item {
  text-align: center
}

.trophy-item img {
  background-color: #fff3;
  margin-bottom: 1rem
}

.trophy-item h4 {
  color: var(--white);
  font-size: 2.5rem
}

.about-us {
  padding: 0
}

.event-item {
  align-items: center;
  background-color: var(--white);
  border-bottom: .5rem solid var(--main-color);
  box-shadow: var(--box-shadow);
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 2rem 1rem
}

.event-item:hover {
  border-color: var(--black)
}

.event-item .fixture-event {
  align-items: center;
  display: flex;
  flex: 1 1 70rem;
  gap: 1rem;
  justify-content: center
}

.event-item .team-logo {
  flex: 1 1 15rem;
  text-align: center
}

.event-item .team-logo img {
  height: 10rem;
  width: 10rem
}

.event-item .team-logo h3 {
  color: var(--secondary-color);
  font-size: 1.8rem;
  padding-top: .5rem
}

.event-item .fixture-content {
  flex: 1 1 40rem;
  text-align: center
}

.event-item .time {
  color: var(--main-color);
  font-size: 1.8rem;
  font-weight: 700
}

.event-item .venue {
  color: var(--secondary-color);
  font-size: 1.8rem;
  font-weight: 700
}

.event-item .action {
  border-left: .1rem solid #0000001a;
  flex: 1 1 5rem;
  flex-direction: column;
  height: 100%;
  padding: 1rem
}

.event-item .action,
.event-item .action a {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: center
}

.event-item .action a {
  color: var(--white);
  font-size: 1.6rem;
  width: 100%
}

.event-single {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem
}

.event-info {
  flex: 1 1 70rem
}

.event-info .event-intro {
  background: linear-gradient(#000000b3, #000000b3), url(/static/media/Event.d38dfaf5325a8d050d94.jpg);
  background-position: 50%;
  background-size: cover;
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
  padding: 2rem
}

.event-info .event-intro .intro {
  align-items: center;
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  margin: 2rem 0;
  padding: 2rem
}

.event-info .event-intro .team-logo {
  text-align: center
}

.event-info .event-intro .team-logo img {
  height: 10rem;
  margin-bottom: .5rem;
  width: 10rem
}

.event-info .event-intro .team-logo h3 {
  color: var(--white);
  font-size: 2.5rem
}

.event-info .event-intro .intro h5 {
  color: var(--white);
  font-size: 6rem;
  font-weight: 600
}

.event-info .event-content {
  text-align: center
}

.event-info .time,
.event-info .venue {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700
}

.fixture-item {
  align-items: center;
  background: var(--white);
  border-bottom: var(--custom-border);
  box-shadow: var(--box-shadow);
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: 2.5rem 1.5rem
}

.fixture-item:hover {
  border-color: var(--secondary-color)
}

.fixture-item .team-logo {
  flex: 1 1 20rem;
  text-align: center
}

.fixture-item .team-logo img {
  height: 10rem;
  object-fit: cover;
  width: 10rem
}

.fixture-item .team-logo h3 {
  color: var(--secondary-color);
  font-size: 1.8rem
}

.fixture-item .fixture-content {
  flex: 1 1 40rem;
  text-align: center
}

.fixture-item .fixture-content .time {
  color: var(--main-color);
  font-size: 1.8rem;
  font-weight: 700
}

.fixture-item .fixture-content .venue {
  color: var(--secondary-color);
  font-size: 1.8rem;
  font-weight: 700
}

.fixture-item .fixture-content .result {
  color: var(--main-color);
  font-size: 1.8rem;
  font-weight: 700
}

.fixture-single {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem
}

.fixture-info {
  flex: 1 1 70rem
}

.fixture-info .fixture-intro {
  background: linear-gradient(#000000b3, #000000b3), url(/static/media/Fixture.e7464b7aa6e0a243aa56.jpg);
  background-position: 50%;
  background-size: cover;
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
  padding: 2rem
}

.fixture-info .fixture-intro .intro {
  align-items: center;
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  margin: 2rem
}

.fixture-info .team-result {
  align-items: center;
  display: flex;
  gap: 2rem
}

.fixture-info .team-result .name {
  text-align: center
}

.fixture-info .team-result .name img {
  height: 10rem;
  margin-bottom: .5rem;
  object-fit: cover;
  width: 10rem
}

.fixture-info .team-result .name h3 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2
}

.fixture-info .team-result .result {
  text-align: center
}

.fixture-info .team-result .result h5 {
  color: var(--white);
  font-size: 2rem
}

.fixture-info .team-result .result p {
  color: var(--white);
  font-size: 1.6rem
}

.fixture-info .fixture-content {
  text-align: center
}

.fixture-info .result,
.fixture-info .time,
.fixture-info .venue {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700
}

.match-details {
  box-shadow: var(--box-shadow)
}

.match-details .title {
  background-color: var(--black);
  border-bottom: .4rem solid var(--main-color);
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 600;
  padding: 1rem
}

.match-details .content {
  padding: 1rem
}

.match-details .item {
  align-items: center;
  border-bottom: .1rem solid #0000001a;
  display: flex;
  gap: 1rem;
  padding: .5rem 0
}

.match-details .item:last-child {
  border: none
}

.match-details .item h3 {
  color: var(--black);
  flex: 1 1 30rem;
  font-size: 1.8rem;
  font-weight: 600
}

.match-details .item p {
  flex: 1 1 30rem;
  font-size: 1.4rem
}

.error-404 {
  padding: 2rem 0;
  position: relative
}

.error-404:before {
  background: var(--linear);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1
}

.error-404 .box-container {
  align-items: center;
  background: linear-gradient(180deg, #0009, #0006), url(/static/media/Error.36fb42b9b6970c62ca9e.jpg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center
}

.error-404 .content {
  margin: 10rem 0;
  text-align: center;
  width: 60rem
}

.error-404 h2 {
  color: var(--accent-color);
  font-size: 20rem
}

.error-404 h2,
.error-404 h5 {
  line-height: 1;
  padding-bottom: 1rem
}

.error-404 h5 {
  color: var(--white);
  font-size: 4rem;
  font-weight: 600;
  text-transform: uppercase
}

.error-404 h5 span {
  color: var(--accent-color)
}

.error-404 p {
  color: var(--light-grey);
  padding-bottom: 2rem
}

.sponsors .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center
}

.sponsor-item {
  align-items: center;
  width: 20rem
}

.blog.grid,
.sponsor-item {
  display: flex;
  justify-content: center
}

.blog.grid {
  gap: 2rem
}

.blog-container {
  flex: 1 1 75rem
}

.blog-container.grid .blog-items {
  grid-gap: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(33rem, 1fr))
}

.blog.list {
  display: flex;
  gap: 2rem;
  justify-content: center
}

.blog-container.list .blog-item {
  margin-bottom: 1rem;
  width: 100%
}

.blog-container.list .blog-item .image {
  height: 30rem
}

.blog-single {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem
}

.blog-info .image {
  position: relative
}

.blog-info .date {
  background: var(--linear);
  color: var(--white);
  display: inline-block;
  font-size: 1.8rem;
  line-height: 1;
  padding: 1.5rem;
  position: absolute;
  right: 2rem;
  text-align: center;
  top: 0;
  width: 9rem
}

.blog-info .date span {
  font-size: 3rem;
  font-weight: 500
}

.blog-info .details {
  align-items: center;
  display: flex;
  gap: 2rem;
  padding-bottom: 2rem
}

.blog-info .label {
  background: var(--main-color);
  color: var(--white);
  display: inline-block;
  font-size: 1.6rem;
  padding: .8rem 1.5rem
}

.blog-info .label:hover {
  background-color: var(--secondary-color)
}

.blog-info .details h3 {
  align-items: center;
  display: flex;
  gap: .7rem
}

.blog-info .details h3 .icon {
  align-items: center;
  color: var(--main-color);
  display: flex;
  font-size: 1.8rem;
  justify-content: center
}

.blog-info .details h3 span {
  color: var(--grey);
  font-size: 1.6rem;
  font-weight: 400
}

.blog-info .imp {
  align-items: center;
  background-color: var(--secondary-color);
  border-left: var(--custom-border);
  color: var(--white);
  display: flex;
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 600;
  gap: 3rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  margin-left: 1rem;
  margin-top: 1rem;
  padding: 2rem
}

.blog-info .imp .icon {
  align-items: center;
  color: var(--main-color);
  display: flex;
  font-size: 5rem;
  height: 6rem;
  justify-content: center;
  width: 6rem
}

.blog-info .imp .intro {
  align-items: center;
  display: flex;
  gap: 1rem;
  padding-top: 1rem
}

.blog-info .imp .intro span {
  background-color: var(--main-color);
  height: .2rem;
  width: 2rem
}

.blog-info .imp .intro h6 {
  color: var(--main-color);
  font-size: 2rem;
  font-style: normal
}

.blog-info .end-details {
  align-items: center;
  border-top: .1rem solid #0000001a;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  padding-bottom: 1rem;
  padding-top: 2rem
}

.blog-info .share,
.blog-info .tags {
  align-items: center;
  display: flex;
  gap: .7rem
}

.blog-info .share h3 {
  color: var(--secondary-color);
  font-size: 1.6rem;
  padding-right: 1rem
}

.blog-info .tags a {
  background-color: var(--main-color);
  color: var(--white);
  font-size: 1.6rem;
  padding: .8rem 2rem
}

.blog-info .tags a:hover {
  background: var(--secondary-color)
}

.blog-info .share .icon {
  align-items: center;
  color: var(--grey);
  display: flex;
  font-size: 1.8rem;
  height: 2rem;
  justify-content: center;
  width: 2rem
}

.blog-info .share .icon:hover {
  color: var(--main-color);
  cursor: pointer
}

.blog-single .leave-reply h3 {
  color: var(--secondary-color);
  font-size: 2.5rem;
  padding-bottom: 2rem
}

.shop {
  display: flex;
  gap: 2rem
}

.shop .shop-container {
  flex: 1 1 75rem
}

.shop .product-container.grid {
  grid-gap: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(22rem, 1fr))
}

.shop .product-container.list .product-item {
  display: flex;
  margin-bottom: 1rem;
  padding: 0;
  text-align: left;
  width: 100%
}

.shop .product-container.list .product-item .image {
  min-height: 25rem;
  min-width: 25rem
}

.shop .product-container.list .product-item .image img {
  height: 100%;
  object-fit: cover;
  width: 25rem
}

.shop .product-container.list .product-item .content {
  text-align: left
}

.shop .product-container.list .product-item .content>p {
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 1rem 0
}

.shop .product-container.list .product-item .rating {
  justify-content: flex-start
}

.image-gallery-icon {
  appearance: none;
  background-color: #0000;
  border: 0;
  color: #fff;
  cursor: pointer;
  filter: drop-shadow(0 2px 2px rgb(25.5, 25.5, 25.5));
  outline: none;
  position: absolute;
  transition: all .3s ease-out;
  z-index: 4
}

@media(hover:hover)and (pointer:fine) {
  .image-gallery-icon:hover {
    color: #337ab7
  }
  .image-gallery-icon:hover .image-gallery-svg {
    transform: scale(1.1)
  }
}

.image-gallery-icon:focus {
  outline: 2px solid #337ab7
}

.image-gallery-using-mouse .image-gallery-icon:focus {
  outline: none
}

.image-gallery-fullscreen-button,
.image-gallery-play-button {
  bottom: 0;
  padding: 20px
}

.image-gallery-fullscreen-button .image-gallery-svg,
.image-gallery-play-button .image-gallery-svg {
  height: 28px;
  width: 28px
}

@media(max-width:768px) {
  .image-gallery-fullscreen-button,
  .image-gallery-play-button {
    padding: 15px
  }
  .image-gallery-fullscreen-button .image-gallery-svg,
  .image-gallery-play-button .image-gallery-svg {
    height: 24px;
    width: 24px
  }
}

@media(max-width:480px) {
  .image-gallery-fullscreen-button,
  .image-gallery-play-button {
    padding: 10px
  }
  .image-gallery-fullscreen-button .image-gallery-svg,
  .image-gallery-play-button .image-gallery-svg {
    height: 16px;
    width: 16px
  }
}

.image-gallery-fullscreen-button {
  right: 0
}

.image-gallery-play-button {
  left: 0
}

.image-gallery-bottom-nav,
.image-gallery-top-nav {
  left: 50%;
  padding: 10px;
  transform: translateX(-50%)
}

.image-gallery-bottom-nav .image-gallery-svg,
.image-gallery-top-nav .image-gallery-svg {
  height: 120px;
  width: 90px
}

@media(max-width:768px) {
  .image-gallery-bottom-nav .image-gallery-svg,
  .image-gallery-top-nav .image-gallery-svg {
    height: 72px;
    width: 48px
  }
}

@media(max-width:480px) {
  .image-gallery-bottom-nav .image-gallery-svg,
  .image-gallery-top-nav .image-gallery-svg {
    height: 48px;
    width: 36px
  }
}

.image-gallery-bottom-nav[disabled],
.image-gallery-top-nav[disabled] {
  cursor: disabled;
  opacity: .6;
  pointer-events: none
}

.image-gallery-top-nav {
  top: 0
}

.image-gallery-bottom-nav {
  bottom: 0
}

.image-gallery-left-nav,
.image-gallery-right-nav {
  padding: 50px 10px;
  top: 50%;
  transform: translateY(-50%)
}

.image-gallery-left-nav .image-gallery-svg,
.image-gallery-right-nav .image-gallery-svg {
  height: 120px;
  width: 60px
}

@media(max-width:768px) {
  .image-gallery-left-nav .image-gallery-svg,
  .image-gallery-right-nav .image-gallery-svg {
    height: 72px;
    width: 36px
  }
}

@media(max-width:480px) {
  .image-gallery-left-nav .image-gallery-svg,
  .image-gallery-right-nav .image-gallery-svg {
    height: 48px;
    width: 24px
  }
}

.image-gallery-left-nav[disabled],
.image-gallery-right-nav[disabled] {
  cursor: disabled;
  opacity: .6;
  pointer-events: none
}

.image-gallery-left-nav {
  left: 0
}

.image-gallery-right-nav {
  right: 0
}

.image-gallery {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  position: relative;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none
}

.image-gallery.fullscreen-modal {
  background: #000;
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 5
}

.image-gallery.fullscreen-modal .image-gallery-content {
  top: 50%;
  transform: translateY(-50%)
}

.image-gallery-content {
  line-height: 0;
  position: relative;
  top: 0
}

.image-gallery-content.fullscreen {
  background: #000
}

.image-gallery-content .image-gallery-slide .image-gallery-image {
  max-height: calc(100vh - 80px)
}

.image-gallery-content.image-gallery-thumbnails-left .image-gallery-slide .image-gallery-image,
.image-gallery-content.image-gallery-thumbnails-right .image-gallery-slide .image-gallery-image {
  max-height: 100vh
}

.image-gallery-slide-wrapper {
  position: relative
}

.image-gallery-slide-wrapper.image-gallery-thumbnails-left,
.image-gallery-slide-wrapper.image-gallery-thumbnails-right {
  display: inline-block;
  width: calc(100% - 110px)
}

@media(max-width:768px) {
  .image-gallery-slide-wrapper.image-gallery-thumbnails-left,
  .image-gallery-slide-wrapper.image-gallery-thumbnails-right {
    width: calc(100% - 87px)
  }
}

.image-gallery-slide-wrapper.image-gallery-rtl {
  direction: rtl
}

.image-gallery-slides {
  line-height: 0;
  overflow: hidden;
  position: relative;
  text-align: center;
  touch-action: none;
  white-space: nowrap
}

.image-gallery-slide {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%
}

.image-gallery-slide.image-gallery-center {
  position: relative
}

.image-gallery-slide .image-gallery-image {
  object-fit: contain;
  width: 100%
}

.image-gallery-slide .image-gallery-description {
  background: #0006;
  bottom: 70px;
  color: #fff;
  left: 0;
  line-height: 1;
  padding: 10px 20px;
  position: absolute;
  white-space: normal
}

@media(max-width:768px) {
  .image-gallery-slide .image-gallery-description {
    bottom: 45px;
    font-size: .8em;
    padding: 8px 15px
  }
}

.image-gallery-bullets {
  bottom: 20px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 80%;
  z-index: 4
}

.image-gallery-bullets .image-gallery-bullets-container {
  margin: 0;
  padding: 0;
  text-align: center
}

.image-gallery-bullets .image-gallery-bullet {
  appearance: none;
  background-color: #0000;
  border: 1px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 2px #1a1a1a;
  cursor: pointer;
  display: inline-block;
  margin: 0 5px;
  outline: none;
  padding: 5px;
  transition: all .2s ease-out
}

@media(max-width:768px) {
  .image-gallery-bullets .image-gallery-bullet {
    margin: 0 3px;
    padding: 3px
  }
}

@media(max-width:480px) {
  .image-gallery-bullets .image-gallery-bullet {
    padding: 2.7px
  }
}

.image-gallery-bullets .image-gallery-bullet:focus {
  background: #337ab7;
  border: 1px solid #337ab7;
  transform: scale(1.2)
}

.image-gallery-bullets .image-gallery-bullet.active {
  background: #fff;
  border: 1px solid #fff;
  transform: scale(1.2)
}

@media(hover:hover)and (pointer:fine) {
  .image-gallery-bullets .image-gallery-bullet:hover {
    background: #337ab7;
    border: 1px solid #337ab7
  }
  .image-gallery-bullets .image-gallery-bullet.active:hover {
    background: #337ab7
  }
}

.image-gallery-bullets.image-gallery-bullets-vertical {
  bottom: auto;
  left: 20px;
  right: auto;
  top: 50%;
  transform: translateY(-50%);
  width: auto
}

.image-gallery-bullets.image-gallery-bullets-vertical .image-gallery-bullet {
  display: block;
  margin: 12px 0
}

@media(max-width:768px) {
  .image-gallery-bullets.image-gallery-bullets-vertical .image-gallery-bullet {
    margin: 6px 0;
    padding: 3px
  }
}

@media(max-width:480px) {
  .image-gallery-bullets.image-gallery-bullets-vertical .image-gallery-bullet {
    padding: 2.7px
  }
}

.image-gallery-thumbnails-wrapper {
  position: relative
}

.image-gallery-thumbnails-wrapper.thumbnails-swipe-horizontal {
  touch-action: pan-y
}

.image-gallery-thumbnails-wrapper.thumbnails-swipe-vertical {
  touch-action: pan-x
}

.image-gallery-thumbnails-wrapper.thumbnails-wrapper-rtl {
  direction: rtl
}

.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left,
.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right {
  display: inline-block;
  vertical-align: top;
  width: 100px
}

@media(max-width:768px) {
  .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left,
  .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right {
    width: 81px
  }
}

.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left .image-gallery-thumbnails,
.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right .image-gallery-thumbnails {
  height: 100%;
  left: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100%
}

.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left .image-gallery-thumbnails .image-gallery-thumbnail,
.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right .image-gallery-thumbnails .image-gallery-thumbnail {
  display: block;
  margin-right: 0;
  padding: 0
}

.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left .image-gallery-thumbnails .image-gallery-thumbnail+.image-gallery-thumbnail,
.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right .image-gallery-thumbnails .image-gallery-thumbnail+.image-gallery-thumbnail {
  margin-left: 0;
  margin-top: 2px
}

.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left,
.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right {
  margin: 0 5px
}

@media(max-width:768px) {
  .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left,
  .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right {
    margin: 0 3px
  }
}

.image-gallery-thumbnails {
  overflow: hidden;
  padding: 5px 0
}

@media(max-width:768px) {
  .image-gallery-thumbnails {
    padding: 3px 0
  }
}

.image-gallery-thumbnails .image-gallery-thumbnails-container {
  cursor: pointer;
  text-align: center;
  white-space: nowrap
}

.image-gallery-thumbnail {
  border: 4px solid #0000;
  width: 100px
}

@media(max-width:768px) {
  .image-gallery-thumbnail {
    border: 3px solid #0000;
    width: 81px
  }
}

.image-gallery-thumbnail+.image-gallery-thumbnail {
  margin-left: 2px
}

.image-gallery-thumbnail .image-gallery-thumbnail-inner {
  display: block;
  position: relative
}

.image-gallery-thumbnail .image-gallery-thumbnail-image {
  line-height: 0;
  vertical-align: middle;
  width: 100%
}

.image-gallery-thumbnail.active,
.image-gallery-thumbnail:focus {
  border: 4px solid #337ab7;
  outline: none
}

@media(max-width:768px) {
  .image-gallery-thumbnail.active,
  .image-gallery-thumbnail:focus {
    border: 3px solid #337ab7
  }
}

@media(hover:hover)and (pointer:fine) {
  .image-gallery-thumbnail:hover {
    border: 4px solid #337ab7;
    outline: none
  }
}

@media(hover:hover)and (pointer:fine)and (max-width:768px) {
  .image-gallery-thumbnail:hover {
    border: 3px solid #337ab7
  }
}

.image-gallery-thumbnail-label {
  box-sizing: border-box;
  color: #fff;
  font-size: 1em;
  left: 0;
  line-height: 1em;
  padding: 5%;
  position: absolute;
  text-shadow: 0 2px 2px #1a1a1a;
  top: 50%;
  transform: translateY(-50%);
  white-space: normal;
  width: 100%
}

@media(max-width:768px) {
  .image-gallery-thumbnail-label {
    font-size: .8em;
    line-height: .8em
  }
}

.image-gallery-index {
  background: #0006;
  color: #fff;
  line-height: 1;
  padding: 10px 20px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 4
}

@media(max-width:768px) {
  .image-gallery-index {
    font-size: .8em;
    padding: 5px 10px
  }
}

.product-single .product-des {
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  margin-bottom: 3.5rem;
  padding: 2rem
}

.product-single .product-des .product-container {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -ms-grid-row-align: flex-start;
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center
}

.product-single .product-des .product-container .image-container {
  max-width: 50rem
}

.product-single .product-des .product-container .image-container .main {
  box-shadow: var(--box-shadow);
  height: 40rem;
  overflow: hidden;
  width: 100%
}

.product-single .product-des .product-container .image .change-btns {
  grid-gap: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
  margin-top: 1rem
}

.product-single .product-des .product-container .image .change-btns img {
  box-shadow: var(--box-shadow);
  cursor: pointer
}

.product-single .product-des .image .change-btns img.active,
.product-single .product-des .image .change-btns img:hover {
  border: .4rem solid var(--main-color)
}

.product-single .product-des .product-container .content {
  align-items: center;
  display: flex;
  flex: 1 1 45rem
}

.product-single .product-des .text {
  padding-top: 2rem
}

.product-single .product-des .product-container .content h3 {
  color: var(--secondary-color);
  font-size: 3.5rem;
  font-weight: 600;
  padding-bottom: 1rem
}

.product-single .product-des .content .rating {
  display: flex;
  gap: 1rem
}

.product-single .product-des .content .rating .icon {
  color: var(--main-color);
  font-size: 2rem
}

.product-single .product-des .content .rating h5 {
  color: var(--secondary-color);
  font-size: 2rem
}

.product-single .product-des .product-container .content p.product-text {
  font-weight: 400;
  padding: 1.5rem 0
}

.product-single .product-des .product-container .content .price {
  color: var(--main-color);
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 1rem
}

.product-single .product-des .product-container .content .price span {
  color: var(--grey);
  font-weight: lighter;
  text-decoration: line-through
}

.product-single .box {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 2rem;
  padding-top: 2rem
}

.product-single .product-des .product-container button {
  background-color: initial
}

.product-single .disabled-button {
  border: .2rem solid var(--main-color);
  color: var(--main-color);
  font-size: 2rem;
  padding: 1.2rem 2.5rem
}

.product-single .quantity .input-text {
  width: 10rem
}

.product-single .wishlist-btn {
  cursor: pointer
}

.product-single .wishlist-btn svg {
  align-items: center;
  background: var(--secondary-color);
  border-radius: var(--border-radius-1);
  color: var(--white);
  display: flex;
  height: 5rem;
  justify-content: center;
  padding: 1.4rem;
  transition: opacity .3s ease, visibility .3s ease;
  width: 5rem
}

.product-single .wishlist-btn svg:hover {
  background: var(--main-color)
}

.product-single .categories,
.product-single .sku,
.product-single .tags {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  padding: .5rem 0
}

.product-single .categories h6,
.product-single .sku h6,
.product-single .tags h6 {
  color: var(--secondary-color);
  font-size: 1.8rem;
  font-weight: 600
}

.product-single .categories a,
.product-single .sku p,
.product-single .tags a {
  color: var(--grey);
  font-size: 1.6rem;
  font-weight: 400;
  padding: 0 .5rem
}

.product-single .categories a:hover,
.product-single .tags a:hover {
  color: var(--main-color)
}

.product-info-gallery {
  margin-top: 2rem
}

.product-single .product-info {
  margin-top: 4rem
}

.product-single .tab-buttons {
  justify-content: flex-start
}

.product-single .product-des h2 {
  color: var(--secondary-color);
  font-size: 3rem;
  padding-bottom: 1rem
}

.product-info .description p {
  color: var(--grey);
  font-size: 1.5rem;
  line-height: 1.5
}

.product-info .additional-info .item {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 1rem
}

.product-info .additional-info h3 {
  color: var(--secondary-color);
  font-size: 1.8rem;
  width: 25rem
}

.product-info .additional-info h3 .icon {
  color: var(--main-color);
  font-size: 1.5rem;
  padding-right: .7rem
}

.product-info .additional-info span {
  color: var(--grey);
  font-size: 1.6rem
}

.product-single .reviews .comments {
  padding: 0
}

.product-single .leave-reply {
  margin-top: 2rem;
  width: 60rem
}

.related-items .box-container {
  grid-gap: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
  margin-top: 1rem
}

.product-single .product-des .product-image {
  align-items: center;
  display: flex;
  justify-content: center;
  max-width: 48rem
}

.image-gallery-slide-wrapper {
  align-items: center;
  border-radius: var(--border-radius-2);
  box-shadow: var(--box-shadow);
  display: flex;
  justify-content: center;
  max-height: 40rem;
  max-width: 100%;
  overflow: hidden
}

.image-gallery-slide-wrapper:hover .image-gallery-fullscreen-button,
.image-gallery-slide-wrapper:hover .image-gallery-left-nav,
.image-gallery-slide-wrapper:hover .image-gallery-play-button,
.image-gallery-slide-wrapper:hover .image-gallery-right-nav {
  display: block
}

.image-gallery-icon:hover {
  color: var(--main-color)
}

.image-gallery-left-nav,
.image-gallery-right-nav {
  display: none;
  padding: 0
}

.image-gallery-left-nav .image-gallery-svg,
.image-gallery-right-nav .image-gallery-svg {
  height: 6rem;
  width: 6rem
}

.image-gallery-fullscreen-button,
.image-gallery-play-button {
  display: none
}

.product-single .image-gallery-thumbnails .image-gallery-thumbnails-container {
  grid-gap: .5rem;
  display: grid;
  gap: .5rem;
  grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
  margin: .5rem 0
}

.image-gallery-thumbnail {
  background: #0000;
  border: 4px solid var(--secondary-color);
  border-radius: var(--border-radius-1);
  box-shadow: var(--box-shadow);
  cursor: pointer;
  display: inline-block;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  padding: 0;
  transition: border .3s ease-out;
  width: 100%
}

.image-gallery-thumbnail.active,
.image-gallery-thumbnail:hover {
  border-color: var(--main-color)
}

.wishlist-container {
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  overflow-x: auto;
  overflow-y: hidden
}

.wishlist-container::-webkit-scrollbar {
  height: .8rem
}

.wishlist .container {
  min-width: 90rem
}

.wishlist .box-container {
  padding: 0 1rem
}

.wishlist-item {
  align-items: center;
  border-bottom: .1rem solid #0000001a;
  display: flex;
  gap: 3rem;
  justify-content: center;
  padding: 1rem 0
}

.wishlist-item:last-child {
  border: none
}

.wishlist-item .box {
  flex: 1 1 20rem;
  font-size: 2rem;
  font-weight: 500;
  text-align: center
}

.wishlist-item .product {
  align-items: center;
  display: flex;
  flex: 1 1 30rem;
  gap: 1.5rem;
  text-align: left
}

.wishlist-item img {
  background-color: #f7f7f7;
  height: 8rem;
  width: 8rem
}

.wishlist-item .name {
  color: var(--secondary-color);
  font-weight: 600
}

.wishlist-item .name:hover {
  color: var(--main-color)
}

.wishlist-item .price {
  color: var(--grey);
  font-weight: 500
}

.wishlist-item .status.in-stock {
  color: green
}

.wishlist-item .status.out-of-stock {
  color: red
}

.wishlist-item .action {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: center
}

.wishlist-item button {
  background-color: initial;
  cursor: pointer
}

.wishlist-item .icon {
  font-size: 2.5rem
}

.wishlist-item .delete {
  color: red
}

.wishlist-item .cart {
  color: var(--secondary-color)
}

.wishlist-item .icon:hover {
  color: var(--main-color)
}

.wishlist-item button:disabled {
  cursor: not-allowed !important
}

.wishlist-item button:disabled .icon.cart {
  color: #8c8c8c
}

.cart .shop-btn {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem
}

.cart .shopping-cart {
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
  overflow-x: auto;
  overflow-y: hidden
}

.cart .shopping-cart::-webkit-scrollbar {
  height: .8rem
}

.cart .shopping-cart .container {
  min-width: 90rem
}

.cart .box-container {
  padding: 0 1rem
}

.cart-item {
  border-bottom: .1rem solid #0000001a;
  padding-bottom: 1rem
}

.cart-item-info {
  align-items: center;
  display: flex;
  gap: 3rem;
  justify-content: center;
  padding: 1rem 0
}

.cart-item:last-child {
  border: none
}

.cart-item .box {
  flex: 1 1 15rem;
  font-size: 2rem;
  font-weight: 400;
  text-align: center
}

.cart-item .product {
  align-items: center;
  display: flex;
  flex: 1 1 25rem;
  gap: 1.5rem;
  text-align: left
}

.cart-item img {
  background-color: #f7f7f7;
  height: 8rem;
  width: 8rem
}

.cart-item .name {
  color: var(--secondary-color);
  font-weight: 600
}

.cart-item .name:hover {
  color: var(--main-color)
}

.cart-item .price,
.cart-item .total {
  color: var(--grey)
}

.cart-item .action {
  align-items: center;
  display: flex;
  justify-content: center
}

.cart-item button {
  background-color: initial
}

.cart-item .icon {
  color: red;
  cursor: pointer;
  font-size: 2.5rem
}

.cart-item .icon:hover {
  color: var(--main-color)
}

.cart .cart-bottom {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -ms-grid-row-align: flex-start;
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
  justify-content: space-between
}

.cart .coupon-container {
  align-items: center;
  display: flex;
  flex: 1 1 50rem;
  gap: 1rem
}

.cart .coupon-container .box {
  background-color: initial;
  border: .15rem solid #0000001a;
  border-radius: var(--border-radius-1);
  color: var(--grey);
  flex: 1 1 30rem;
  font-size: 1.6rem;
  padding: 1.2rem 1.5rem;
  text-transform: none
}

.cart .coupon-container .box::placeholder {
  text-transform: capitalize
}

.cart .coupon-container .box:focus {
  border-color: var(--main-color)
}

.cart .coupon-container .btn {
  flex: 1 1 15rem;
  margin-top: 0
}

.cart .cart-total {
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  margin-left: auto;
  padding: 1.5rem;
  width: 45rem
}

.cart .cart-total .btn {
  margin-top: 1rem;
  text-align: center;
  width: 100%
}

.quantity {
  align-items: center;
  display: flex;
  justify-content: center
}

.quantity .input-text {
  background-color: initial;
  border: 1px solid #ccc;
  height: 4rem;
  padding: 0 5px;
  text-align: center;
  width: 6rem
}

.quantity .minus,
.quantity .plus {
  background-color: #fff;
  border: 1px solid #ccc;
  cursor: pointer;
  height: 4rem;
  padding: 7px 10px 8px
}

.quantity .minus {
  border-right: 0;
  color: var(--secondary-color)
}

.quantity .plus {
  border-left: 0;
  color: var(--secondary-color)
}

.quantity .plus:disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
  opacity: .6
}

.quantity .minus:hover,
.quantity .plus:hover {
  background: var(--main-color);
  color: var(--white)
}

.quantity input::-webkit-inner-spin-button,
.quantity input::-webkit-outer-spin-button {
  appearance: none;
  margin: 0
}

.quantity .minus:focus,
.quantity .plus:focus {
  outline: none
}

.checkout .heading h2 {
  font-size: 3.5rem
}

.checkout form {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem
}

.checkout .box-1 {
  flex: 1 1 55rem
}

.checkout .box-2 {
  flex: 1 1 35rem
}

.checkout-item {
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  margin-bottom: 1.5rem;
  padding: 2rem
}

.checkout .box-1 .checkout-item:last-child {
  margin-bottom: 0
}

.checkout .checkbox-label {
  color: var(--secondary-color) !important;
  cursor: pointer;
  line-height: 1.2;
  margin-bottom: 2rem
}

.checkout .checkbox-indicator {
  outline: .15rem solid var(--grey) !important
}

.checkout .checkbox-label input:checked~.checkout .checkbox-indicator {
  outline-color: var(--main-color) !important
}

.payment-methods .item {
  margin-bottom: 1.5rem;
  width: 100%
}

.payment-methods .item label {
  color: var(--secondary-color);
  cursor: pointer;
  font-size: 2rem;
  font-weight: 500;
  text-transform: uppercase
}

.payment-methods .item input {
  margin-right: .5rem
}

.payment-methods .item input:checked+label,
.payment-methods .item label:hover {
  color: var(--main-color)
}

input[type=radio] {
  appearance: none;
  background-clip: content-box;
  border: .2rem solid var(--secondary-color);
  border-radius: 50%;
  height: 1.6rem;
  padding: .2rem;
  width: 1.6rem
}

input[type=radio]:checked {
  background-color: var(--main-color);
  border-color: var(--main-color)
}

.payment-methods .item .payment-body {
  display: none
}

.payment-methods .item .payment-body p {
  color: var(--grey);
  font-size: 1.6rem;
  line-height: 2;
  padding-top: 1rem
}

.payment-body.active,
.payment-methods .item>input:checked~.payment-body {
  display: block
}

.checkout .btn-container {
  display: flex;
  justify-content: flex-end
}

.checkout form .btn {
  text-align: center;
  width: 100%
}

.order-details .order-details-item {
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  margin-bottom: 1rem;
  padding: 2rem;
  width: 100%
}

.order-details .order-message {
  align-items: center;
  background-color: var(--secondary-color);
  display: flex;
  gap: 1rem
}

.order-details .order-message .icon {
  align-items: center;
  color: var(--main-color);
  display: flex;
  height: 3rem;
  justify-content: center;
  width: 3rem
}

.order-details .order-message span {
  color: var(--white);
  font-size: 2rem;
  font-weight: 400
}

.address-details .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem
}

.address-details .address {
  flex: 1 1 22rem
}

.address .title {
  background-color: var(--main-color);
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  padding: 1rem .8rem
}

.address p {
  font-weight: 400;
  padding-bottom: .8rem;
  padding-left: .8rem;
  text-transform: none
}

.address p span {
  color: var(--secondary-color);
  font-weight: 700;
  padding-right: 1rem
}

.order-container {
  overflow-x: auto;
  overflow-y: hidden
}

.order-container::-webkit-scrollbar {
  height: .8rem
}

.order-items .container {
  min-width: 90rem
}

.order-items .box-container {
  padding: 0 1rem
}

.order-item {
  align-items: center;
  border-bottom: .1rem solid #0000001a;
  display: flex;
  gap: 3rem;
  justify-content: center;
  padding: 1rem 0
}

.order-item:last-child {
  border: none
}

.order-item .box {
  flex: 1 1 15rem;
  font-size: 2rem;
  font-weight: 400;
  text-align: center
}

.order-item .product {
  align-items: center;
  display: flex;
  flex: 1 1 25rem;
  gap: 1.5rem;
  text-align: left
}

.order-item img {
  background-color: #f7f7f7;
  height: 8rem;
  width: 8rem
}

.order-item .name {
  color: var(--secondary-color);
  font-weight: 600
}

.order-item .price,
.order-item .total {
  color: var(--grey)
}

.order-details .order-summary {
  border-top: .5rem solid var(--main-color);
  margin-left: auto;
  width: 50rem
}

.order-details .order-intro {
  border-bottom: .2rem solid var(--grey);
  margin-bottom: 2rem
}

.order-details .order-intro .order-id {
  color: var(--secondary-color);
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 1rem
}

.order-details .order-intro .delivery {
  color: var(--grey);
  font-size: 1.8rem;
  padding-bottom: 1rem
}

.order-details .cart-total {
  margin-left: auto;
  padding: 1.5rem;
  width: 45rem
}

.login form .info {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 2rem 0
}

.login form label {
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem
}

.register form .checkbox-label {
  display: flex;
  justify-content: flex-start;
  margin: 2rem 0
}

.register form label {
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem
}

.register form label span {
  color: var(--main-color)
}

.contact {
  padding: 2rem 0 0
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 2rem 5%
}

.contact .contact-info .info-item {
  align-items: center;
  background-color: var(--secondary-color);
  border-bottom: var(--custom-border);
  box-shadow: var(--box-shadow);
  display: flex;
  flex: 1 1 25rem;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  margin-top: 4rem;
  padding: 6rem 2rem 2rem;
  position: relative;
  text-align: center
}

.contact .contact-info .info-item .icon {
  align-items: center;
  background-color: var(--main-color);
  border-radius: var(--border-radius-3);
  color: var(--white);
  display: flex;
  font-size: 3rem;
  height: 8rem;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%);
  width: 8rem
}

.contact-info .info-item h4 {
  color: var(--white);
  font-size: 2.2rem;
  padding-bottom: .5rem
}

.contact-info .info-item p {
  color: var(--white);
  font-size: 1.8rem;
  text-transform: none
}

.contact-container {
  background: linear-gradient(#000000b3, #0009), url(/static/media/Contact.af30e2c209b437676896.jpg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6rem 4rem
}

.contact form .alert {
  color: var(--white);
  display: inline-block;
  font-size: 2rem;
  padding-left: 1rem;
  transition: none
}

.contact iframe {
  box-shadow: var(--box-shadow);
  height: 30rem;
  width: 100%
}


