:root {
  --header-height: 94px;
}

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
}

.header {
  align-items: center;
  background: #fff;
  border-bottom: 4px solid #f7f7f7;
  display: flex;
  position: fixed;
  padding: 0 1.25rem;
  left: 0;
  top: 0;
  height: var(--header-height);
  width: 100%;
  z-index: 99;
}
.header-open-menu {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  height: 28px;
  width: 28px;
}
.header-open-menu span {
  transition: 0.2s ease-in-out;
}
.header.js-header-opened .header-open-menu {
  background: #000;
  border-radius: 50%;
  position: relative;
}
.header.js-header-opened .header-open-menu span {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 18px;
}
.header.js-header-opened .header-open-menu span:nth-child(1) {
  rotate: 45deg;
}
.header.js-header-opened .header-open-menu span:nth-child(2) {
  rotate: -45deg;
}
.header.js-header-opened .header-open-menu span:last-child {
  opacity: 0;
}
.header-open-menu span {
  background: #484848;
  border-radius: 1px;
  pointer-events: none;
  height: 4px;
  width: 24px;
}
.header-logo {
  margin: 0 auto 0 auto;
  transform: translateX(-24px);
}
.header-menu {
  background: inherit;
  position: absolute;
  top: var(--header-height);
  transform: translateX(100%);
  transition: 0.2s ease-in-out;
  left: 0;
  overflow-y: auto;
  height: calc(100dvh - var(--header-height));
  width: 100%;
}
.header.js-header-opened .header-menu {
  transform: translateX(0%);
}
.header-menu-list-child-list,
.header-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-menu-list a,
.header-menu-list button {
  color: #000814;
  display: flex;
  font-weight: 600;
  padding: 1rem 20px;
  justify-content: space-between;
  margin-right: 0;
  width: 100%;
}
.header-menu-list a:hover,
.header-menu-list button:hover {
  background: #f7f7f7;
  color: #4d6cfa;
  text-decoration: none;
}
.header-menu-list a,
.header-menu-list button {
  align-items: center;
  display: flex;
  transition: 0.2s ease-in-out;
}
.header-menu-list button.js-active::after {
  rotate: 180deg;
}
.header-menu-list > li > button::after {
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.header-menu-list-child-list {
  display: none;
}
.header-menu-list-child-list.js-active {
  display: block;
}
.header-menu-list-child-list a {
  padding-left: 40px;
}
@media (min-width: 768px) {
  .header-logo img {
    width: 200px;
  }
}
@media (min-width: 1200px) {
  .header {
    gap: 20px;
    justify-content: space-between;
    padding: 0 2.25rem;
  }
  .header-open-menu {
    display: none;
  }
  .header-logo {
    margin: initial;
    transform: initial;
  }
  .header-menu {
    background: initial;
    position: initial;
    transform: initial;
    overflow-y: initial;
    height: initial;
    width: initial;
  }
  .header-menu-list {
    display: flex;
    gap: 25px;
  }
  .header-menu-list > li > button,
  .header-menu-list > li > a {
    gap: 5px;
    height: var(--header-height);
    padding: initial;
  }
  .header-menu-list > li > a:hover,
  .header-menu-list > li > button:hover {
    background: initial;
  }
  .header-menu-list > li {
    position: relative;
  }
  .header-menu-list-child-list {
    background-color: #fff;
    border-radius: 0.25rem;
    border: 1px solid #00000026;
    display: none;
    position: absolute;
    top: 70%;
    left: 0;
    float: left;
    color: #212529;
    text-align: left;
    min-width: 10rem;
  }
  .header-menu-list-child-list a {
    padding: 0.9375rem 0.625rem;
    white-space: nowrap;
  }
  .header-menu-list > li:hover .header-menu-list-child-list {
    display: block;
  }
}
body {
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #484848;
  overflow-x: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body,
html {
  overflow-x: hidden;
  max-width: 100%;
}
.site-main {
  padding: calc(var(--header-height) + 5rem) 0 2.5rem 0;
}
.navbar-light .navbar-nav .nav-link {
  font-style: normal;
  font-weight: 600;
  color: #000814;
  transition: all 0.3s;
}
.navbar-light .navbar-nav .nav-link:hover {
  color: #4d6cfa;
  transition: all 0.3s;
}
.navbar {
  background-color: #fff !important;
  border-bottom: 4px solid #f7f7f7;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Josefin Sans", sans-serif;
  color: #c20000;
  font-weight: 700;
}
h1 {
  font-size: 3.125rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 2.25rem;
}
.set-pad-full {
  margin-right: 2.5rem;
}
.offcanvas-menu .site-wrap {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 2;
  overflow: hidden;
}
.offcanvas-menu .site-wrap:before {
  opacity: 1;
  visibility: visible;
}
.icons-btn {
  display: inline-block;
  text-align: center;
  margin: auto;
}
.icons-btn span {
  display: block;
  height: 40px;
  width: 40px;
  line-height: 40px;
}
.full-page h1 {
  margin-bottom: 1.25rem;
}
.welcome-sec .another-header {
  font-size: 3.125rem;
  font-family: "Josefin Sans", sans-serif;
  color: #c20000;
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 4rem;
}
.full-page h2 {
  margin-bottom: 1.25rem;
}
.full-page h3 {
  margin-bottom: 1.25rem;
}
.blog-set {
  border: 2px solid #f7f7f7;
  box-sizing: border-box;
  border-radius: 20px;
  background: #fff;
  padding: 1.25rem;
  justify-content: space-between;
}
.blog-div {
  margin-bottom: 2.5rem;
}
.blog-div a {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.5rem;
  color: #000814;
  align-items: center;
}
.blog-div a:hover {
  color: #4d6cfa;
  text-decoration: none;
  transition: all 0.3s;
}
.top-list-sec {
  padding: 0;
}
.top-list {
  background: #fff;
  border: 2px solid #f7f7f7;
  box-sizing: border-box;
  border-radius: 20px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.top-list span {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 36px;
}
.top-list img {
  margin-right: 0.813rem;
}
.top-list .border-bot {
  border-bottom: 2px solid #f7f7f7;
  padding-bottom: 0.75rem;
}
.top-list a {
  font-weight: 600;
  color: #484848;
  margin: 1.25rem 0;
}
.top-list a:hover {
  color: #4d6cfa;
  text-decoration: none;
  transition: all 0.3s;
}
.top-list .marg-set {
  margin: 1.25rem 0;
}
.top-best {
  margin-bottom: 2.5rem;
}
.top-best h2 {
  color: #000814;
}
.card-full {
  background: #fff;
  border: 2px solid #f7f7f7;
  box-sizing: border-box;
  border-radius: 20px;
  padding: 1.25rem !important;
  transition: all 0.3s;
  margin-bottom: 1.25rem;
}
.left-m {
  margin-bottom: 1.25rem;
}
.card-full:hover {
  box-shadow: 0 10px 20px rgba(77, 108, 250, 0.39);
  transition: all 0.3s;
}
.card-full:hover .card-part:nth-child(1) p {
  display: block;
  transition: all 0.3s;
}
.card-full:hover .card-part:nth-child(1) span {
  background: #4d6cfa;
  color: #fff;
  transition: all 0.3s;
}
.card-part:nth-child(1) {
  text-align: center;
  margin: auto;
}
.card-part:nth-child(1) p {
  color: #4d6cfa;
  font-weight: 700;
  text-align: center;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  top: 2.5rem;
  left: 0;
  right: 0;
  text-align: center;
}
.card-part:nth-child(1) span {
  font-weight: 600;
  color: #000814;
  padding: 0.813rem 1.25rem;
  background: #f7f7f7;
  border-radius: 10px;
  position: relative;
}
.card-part:nth-child(1) p {
  display: none;
}
.card-part:nth-child(2) {
  margin: auto;
  text-align: center;
  padding: 0;
}
.card-part:nth-child(2) .card-stars {
  margin: 1rem auto;
}
.card-part:nth-child(2) .card-logo {
  margin-bottom: 1.375rem;
  width: 200px;
  height: 100px;
  margin: auto;
}
.card-part:nth-child(2) .star {
  margin-right: 0.5rem;
}
.card-part:nth-child(3) {
  margin: auto;
}
.card-part:nth-child(3) span {
  color: #4d6cfa;
  font-weight: 600;
}
.card-part:nth-child(3) .card-price {
  background: #fff;
  border: 3px solid #4d6cfa;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 0.5rem;
}
.card-part:nth-child(3) img {
  margin-right: 0.5rem !important;
}
.card-part:nth-child(3) p {
  font-weight: 600;
  color: #4d6cfa;
  text-align: center;
  background: #f7f7f7;
  border-radius: 10px;
  padding: 0.313rem 0;
}
.card-part:nth-child(3) .bonus {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 18px;
  text-transform: uppercase;
  color: #888;
  background: #fff;
  text-align: start;
}
.card-part:nth-child(4) {
  margin: auto;
}
.card-part:nth-child(4) button {
  width: 100%;
  border-radius: 10px;
  font-weight: 600;
  padding: 0.813rem 0;
  border: none;
}
.card-part:nth-child(4) a:hover {
  text-decoration: none;
}
.card-part:nth-child(4) .card-but {
  color: #fff;
  background: #c20000;
  margin-bottom: 0.625rem;
}
.card-part:nth-child(4) a {
  color: #000814;
  background: #f7f7f7;
  width: 100%;
}
.top-best.slots .card-part:nth-child(4) {
  margin: auto;
  text-align: center;
}
.top-best.slots .card-part:nth-child(4) span {
  color: #4d6cfa;
  font-weight: 600;
}
.top-best.slots .card-part:nth-child(4) .card-price {
  background: #fff;
  border: 3px solid #4d6cfa;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 0.5rem;
}
.top-best.slots .card-part:nth-child(4) img {
  margin-bottom: 1.375rem;
  width: 150px;
  height: 85px;
  margin: auto;
}
.top-best.slots .card-part:nth-child(4) p {
  font-weight: 600;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 0;
}
.top-best.slots .card-part:nth-child(4) .bonus {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 18px;
  text-transform: uppercase;
  color: #888;
  background: #fff;
  text-align: start;
}
.top-best.slots .card-part:nth-child(3) {
  margin: auto;
}
.top-best.slots .card-part:nth-child(3) button {
  width: 100%;
  border-radius: 10px;
  font-weight: 600;
  padding: 0.813rem 0;
  border: none;
}
.top-best.slots .card-part:nth-child(3) a:hover {
  text-decoration: none;
}
.top-best.slots .card-part:nth-child(3) .card-but {
  color: #fff;
  background: #c20000;
  margin-bottom: 0.625rem;
}
.top-best.slots .card-part:nth-child(3) a {
  color: #000814;
  background: #f7f7f7;
  width: 100%;
}
.about-sec h1 {
  text-align: center;
}
.about-sec h2,
.about-sec h3,
.about-sec h4 {
  color: #000814;
}
.about-sec li {
  padding-left: 0.625rem;
}
.about-sec li::marker {
  font-weight: 600;
}
.blog-list .blog-item h4 {
  color: #000814;
}
.blog-list h1 {
  text-align: center;
}
.blog-list .blog-item small {
  color: #888;
}
.blog-list .blog-item p {
  color: #484848;
  margin-top: 0.625rem;
}
.site-footer {
  background-color: #000;
  padding: 2.5rem 3.125rem;
  font-size: 1rem;
  line-height: 24px;
  color: #fff;
}
.site-footer p {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  padding-right: 2.5rem;
}
.site-footer h6 {
  color: #fff;
  font-size: 1.5rem;
  font-family: "Josefin Sans", sans-serif;
  margin-bottom: 2.4rem;
}
.site-footer a {
  color: #737373;
}
.site-footer a:hover {
  color: #36c;
  text-decoration: none;
}
.footer-links {
  padding-left: 0;
  list-style: none;
}
.footer-links li {
  display: block;
  margin-bottom: 1rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.85);
}
.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
  color: #36c;
  text-decoration: none;
}
.footer-links.inline li {
  display: inline-block;
}
.copyright-text {
  margin: 0;
}
@media (max-width: 991px) {
  .site-footer [class^="col-"] {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .site-footer {
    padding-bottom: 0;
  }
  .site-footer .copyright-text,
  .site-footer .social-icons {
    text-align: center;
  }
}
.faq-sec .another-header {
  font-size: 3.125rem;
  font-family: "Josefin Sans", sans-serif;
  color: #c20000;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.25rem;
  width: 100%;
  line-height: 4rem;
}
.faq-sec {
  margin: 2.5rem 0 1.25rem 0;
}
.faq .faq-list {
  padding: 0;
}
.faq .faq-list ul {
  padding: 1.25rem;
  list-style: none;
  margin-bottom: 0;
}
.faq .faq-list li + li {
  margin-top: 15px;
}
.head-faq {
  font-size: 22px;
  color: #00bfff;
}
.faq .faq-list li {
  padding: 0;
  background: #fff;
  border-radius: 4px;
  position: relative;
}
.faq .faq-list a {
  display: block;
  position: relative;
  font-size: 1rem;
  line-height: 24px;
  font-weight: 600;
  outline: 0;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 10px;
  padding: 1rem 2rem 1rem 1rem;
  color: #000814;
  text-decoration: none;
}
.faq .faq-list .icon-close,
.faq .faq-list .icon-show {
  font-size: 1rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 0 1rem;
  width: 100%;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list a.collapsed {
  color: #000814;
  transition: 0.3s;
}
.faq .faq-list a.collapsed:hover {
  color: #000814;
  text-decoration: none;
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}
@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}
.blog-sec .another-header {
  font-size: 3.125rem;
  font-family: "Josefin Sans", sans-serif;
  color: #c20000;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.25rem;
  line-height: 4rem;
}
.blog-sec h1 {
  text-align: center;
}
.blog-list .marg-b {
  margin-bottom: 2.5rem;
}
.blog-sec h4 {
  color: #fff;
  font-weight: 700;
}
.blog-sec small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}
.blog-sec p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}
.caption-blog {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
}
.caption-blog button {
  padding: 0.813rem 1.125rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  border: none;
  color: #fff;
  font-weight: 600;
}
.addit-sec {
  margin-bottom: 2.5rem;
}
.addit-sec:hover h4 {
  color: #4d6cfa;
  transition: all 0.3s;
  cursor: pointer;
}
.addit-sec a:hover {
  text-decoration: none;
}
.addit-sec h4 {
  color: #000814;
  font-weight: 700;
}
.addit-sec small {
  font-size: 0.875rem;
  color: #888;
}
.addit-sec p {
  color: #484848;
  font-size: 1rem;
  margin-top: 0.625rem;
}
.blog-sec .img-blog {
  margin-bottom: 2.5rem;
}
.top-slots-sec {
  margin-top: 2.5rem;
}
.slot-card .card-part:nth-child(2) {
  margin: auto;
  text-align: center;
}
.slot-card .card-part:nth-child(2) .star {
  margin: 0 0 1.5rem 0;
}
.slot-card .card-part:nth-child(2) p {
  margin-top: 1.25rem;
  font-weight: 600;
  font-size: 1rem;
  color: #000;
}
.top-slots-sec h1 {
  text-align: center;
  margin-bottom: 2.5rem;
}
.top-slots-sec .card-slot {
  padding: 1.5rem;
  border: 2px solid #f7f7f7;
  box-sizing: border-box;
  border-radius: 24px;
  width: 32%;
}
.top-slots-sec .card-slot img {
  margin-bottom: 1.5rem;
}
.top-slots-sec .card-slot button {
  width: 100%;
  background: #c20000;
  border-radius: 10px;
  font-weight: 600;
  color: #fff;
  border: none;
  padding-top: 0.813rem;
  padding-bottom: 0.813rem;
}
.set-error {
  width: 23.75rem;
  margin: auto;
  height: 9rem;
  color: #000814;
}
.set-error {
  margin-bottom: 2.5rem;
}
.error-div p {
  font-weight: 600;
  margin-bottom: 2.5rem;
}
.play-but {
  background: #c20000;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.813rem 1.125rem;
  border: none;
  border-radius: 10px;
  margin-bottom: 2.5rem;
  margin-top: 2.5rem;
}
.plus-minus ul {
  padding-left: 1rem;
}
.plus-minus li {
  margin-bottom: 0.625rem;
  font-weight: 400;
}
.plus-minus .plus li::marker {
  color: #83cf60;
}
.plus-minus .minus li::marker {
  color: #c20000;
}
.plus-minus h4:nth-child(1) {
  color: #83cf60;
}
.plus-minus h4:nth-child(3) {
  color: #c20000;
}
.plus-minus .plus {
  margin-bottom: 2.5rem;
}
.test-card {
  background: #fff;
  border: 2px solid #f7f7f7;
  box-sizing: border-box;
  border-radius: 20px;
  padding: 1.25rem;
}
.test-card-head img {
  margin-right: 0.625rem;
  border-radius: 50%;
  width: 70px;
  height: 70px;
}
.test-card-head p {
  font-weight: 700;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.5rem;
  color: #000814;
}
.test-card-head small {
  font-size: 0.875rem;
  line-height: 20px;
  color: #888;
}
.test-card-head {
  margin-bottom: 1.25rem;
}
.test-card-body p {
  color: #484848;
  background: #f7f7f7;
  border-radius: 10px;
  padding: 0.625rem;
}
#module {
  width: 100%;
  transition: all 0.3s;
}
#module p.collapse[aria-expanded="false"] {
  display: block;
  height: 90px !important;
  overflow: hidden;
  transition: all 0.3s;
}
#module a {
  width: 100%;
  text-decoration: none;
  color: #000814;
}
#module .show-set {
  width: 100%;
  text-align: center;
  background: #f7f7f7;
  border-radius: 10px;
  padding: 0.813rem;
  font-weight: 600;
}
#module .collapsing {
  transition: all 0.3s;
}
#module p.collapse.show {
  display: block;
  height: 100% !important;
  overflow: hidden;
  transition: all 0.3s;
}
#module a.collapsed:after {
  content: "Show More";
  transition: all 0.3s;
}
#module a:not(.collapsed):after {
  content: "Show Less";
  transition: all 0.3s;
}
.set-slot-buttons {
  width: 100%;
  justify-content: center;
  position: absolute;
  bottom: 3.75rem;
}
.slot-button,
.slot-button-2 {
  padding: 0.813rem 1.125rem;
  border: none;
  border-radius: 10px;
}
.set-slot-buttons .slot-button {
  margin-right: 1.25rem;
  background: #c20000;
  color: #fff;
}
.set-slot-buttons .slot-button-2 {
  background: #6d6d6d;
  color: #fff;
}
.search-block {
  border-radius: 10px;
  border: 2px solid #f7f7f7;
  padding: 20px;
  margin-bottom: 2.5rem;
}
.search-block:hover {
  box-shadow: 0 10px 20px rgba(77, 108, 250, 0.39);
  transition: all 0.3s;
}
.search-block .price-search {
  color: #4d6cfa;
  font-weight: 600;
}
.search-block img {
  width: 100%;
  height: auto;
  margin: auto;
}
.search-block h2 {
  font-size: 1.3rem;
}
.search-block a {
  color: #484848;
}
.search-block a:hover {
  color: #4d6cfa;
  transition: all 0.3s;
  text-decoration: none;
}
.go-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 600;
  display: none;
}
.go-top a,
.go-top a:visited {
  text-decoration: none;
  border: 0 none;
  display: block;
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  background: #c20000;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
}
.go-top a i,
.go-top a:visited i {
  font-size: 25px;
  line-height: inherit;
}
.go-top a:focus,
.go-top a:hover {
  color: #fff;
}
@media only screen and (max-width: 600px) {
  .card-full:hover .card-part:nth-child(1) p {
    display: none;
    transition: all 0.3s;
  }
  .top-best.slots .card-part:nth-child(3) button {
    margin-bottom: 1rem;
    background: #efefef;
  }
  .card-part:nth-child(2) {
    text-align: center;
    padding: 1rem 0;
  }
  .card-part:nth-child(2) .card-stars {
    text-align: center;
    margin: 1rem auto;
  }
  .search-wrap {
    width: 92%;
  }
  .site-mobile-menu .site-nav-wrap a:hover {
    color: #4d6cfa;
    background: #f7f7f7;
  }
  .dropdown-menu {
    position: static;
    border: none;
    float: none;
  }
  .set-pad-full {
    margin-right: 0;
  }
  .container {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-right: 0;
    margin-left: 0;
    margin: auto;
  }
  .faq .faq-list ul {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
    padding: 0;
    margin-bottom: 15px;
  }
  section {
    width: 100%;
    padding-right: 15px !important;
    padding-left: 15px !important;
    margin-right: auto;
    margin-left: auto;
  }
  .special-block {
    width: 100%;
    padding-right: 15px !important;
    padding-left: 15px !important;
    margin-right: auto;
    margin-left: auto;
  }
  .navbar-collapse {
    height: 100vh;
  }
  .set-error {
    width: 100%;
    height: 100%;
  }
  .dropdown-item {
    padding: 1rem 0.938rem;
  }
  .blog-set {
    margin-bottom: 1.25rem;
  }
  .top-list-sec {
    padding: 0;
    margin-top: 1.25rem;
  }
  .top-best h2 {
    width: 50%;
    margin-bottom: 1.25rem !important;
    margin-top: 1.25rem !important;
  }
  .left-m {
    justify-content: start !important;
  }
  .sidebar-set {
    padding: 0;
  }
  .site-main {
    padding: calc(var(--header-height) + 2.5rem) 0 2.5rem 0;
  }
  .addit-sec p {
    width: 100%;
    padding-right: 15px !important;
    padding-left: 15px !important;
    margin-right: auto;
    margin-left: auto;
  }
  .addit-sec small {
    width: 100%;
    padding-right: 15px !important;
    padding-left: 15px !important;
    margin-right: auto;
    margin-left: auto;
  }
  .site-footer {
    padding: 2.25rem 1.625rem;
    padding-bottom: 1.25rem;
  }
  .site-footer .copyright-text,
  .site-footer .social-icons {
    text-align: left;
  }
  .top-slots-sec .card-slot {
    margin-bottom: 1.25rem;
    width: 100%;
  }
  .card-part:nth-child(3) {
    margin-bottom: 1.25rem;
  }
  .card-part:nth-child(4) div {
    padding: 0;
  }
  .blog-list img {
    margin-bottom: 0.625rem;
  }
  .dropdown-menu {
    filter: none;
  }
  .test-card {
    margin-bottom: 1.25rem;
  }
  .set-slot-buttons .slot-button {
    width: 100%;
    margin-bottom: 1.25rem;
  }
  .set-slot-buttons .slot-button-2 {
    width: 100%;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .card-full:hover .card-part:nth-child(1) p {
    display: none;
    transition: all 0.3s;
  }
  .search-wrap {
    width: 92%;
  }
  .search-wrap-2 {
    width: 100%;
    right: 0;
  }
  .site-mobile-menu .site-nav-wrap a:hover {
    color: #4d6cfa;
    background: #f7f7f7;
  }
  .dropdown-menu {
    position: static;
    border: none;
    float: none;
  }
  .set-pad-full {
    margin-right: 0;
  }
  .container {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-right: 0;
    margin-left: 0;
    margin: auto;
  }
  .faq .faq-list ul {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
    padding: 0;
  }
  section {
    width: 100%;
    padding-right: 15px !important;
    padding-left: 15px !important;
    margin-right: auto;
    margin-left: auto;
  }
  .special-block {
    width: 100%;
    padding-right: 15px !important;
    padding-left: 15px !important;
    margin-right: auto;
    margin-left: auto;
  }
  .navbar-collapse {
    height: 100vh;
  }
  .set-error {
    width: 100%;
    height: 100%;
  }
  .dropdown-item {
    padding: 1rem 0.938rem;
  }
  .blog-set {
    margin-bottom: 1.25rem;
  }
  .top-list-sec {
    padding: 0;
    margin-top: 1.25rem;
  }
  .top-best h2 {
    width: 50%;
    margin-bottom: 1.25rem !important;
    margin-top: 1.25rem !important;
  }
  .left-m {
    justify-content: start !important;
  }
  .sidebar-set {
    padding: 0;
  }
  .site-main {
    padding: calc(var(--header-height) + 2.5rem) 0 2.5rem 0;
  }
  .addit-sec p {
    width: 100%;
    padding-right: 15px !important;
    padding-left: 15px !important;
    margin-right: auto;
    margin-left: auto;
  }
  .site-footer {
    padding: 2.25rem 1.625rem;
    padding-bottom: 1.25rem;
  }
  .site-footer .copyright-text,
  .site-footer .social-icons {
    text-align: left;
  }
  .top-slots-sec .card-slot {
    margin-bottom: 1.25rem;
    width: 100%;
  }
  .card-part:nth-child(3) {
    margin-bottom: 1.25rem;
  }
  .card-part:nth-child(4) div {
    padding: 0;
  }
  .blog-list img {
    margin-bottom: 0.625rem;
  }
  .dropdown-menu {
    filter: none;
  }
  .test-card {
    margin-bottom: 1.25rem;
  }
  .set-slot-buttons .slot-button {
    width: 100%;
    margin-bottom: 1.25rem;
  }
  .set-slot-buttons .slot-button-2 {
    width: 100%;
  }
}
