/*   
Theme Name: defaults
Version: bet
*/

/* =WordPress Core */

   
.alignnone {
    margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}
.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}
a img.alignnone {
    margin: 5px 20px 20px 0;
}
a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}
.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}
.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}
.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}
.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

ul.nav li.dropdown.show-on-hover:hover > ul.dropdown-menu {
		display: block;
	}


/* ===================
general css
====================== */

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

html,
body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
   padding-right: 0 !important;
}

body {
 font-family: var(--font-primary), sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  color: var(--color-text);
  background:  var(--background-main);
  line-height: 1.8;
}

a {
 color: var(--link-color);
  display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

a:hover {
color: var(--link-color-hover);
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-text);

  margin: 0px;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 44px;
  font-family: var(--font-secondary);
}

h2 {
  font-size: 32px;
  font-family: var(--font-secondary);
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 0px;
}

.hentry h2{
  font-size: 32px;
  margin-bottom: 20px;
  font-family: var(--font-secondary);
}

.hentry h3 {
 margin-bottom: 20px;
font-size: 28px;
font-weight: 400;
line-height: 33.6px;
font-family: var(--font-secondary);
}
.hentry h4 {
 margin-bottom: 20px;
font-size: 26px;
font-weight: 400;
line-height: 30px;
font-family: var(--font-secondary);
}
.hentry h5 {
 margin-bottom: 20px;
font-size: 22px;
font-weight: 400;
line-height: 30px;
font-family: var(--font-secondary);
}
.hentry h6 {
 margin-bottom: 20px;
font-size: 20px;
font-weight: 400;
line-height: 30px;
font-family: var(--font-secondary);
}

blockquote {
    margin: 0 0 1rem;
    padding-left: 30px;
    border-left: 2px solid #4a4a4a;
}
blockquote p{
   opacity: 0.7;
}


.img,
img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  height: auto;
}

label {
  color: var(--color-text);
  cursor: pointer;
  font-weight: 400;
}



.pt-80 {
  padding-top: 80px;
}
.pb-90{
   padding-bottom: 90px;
}


/* ===================
theme button
====================== */

.btn {
 font-size: 16px;
    width: 100%;
    min-width: 180px;
    max-width: 300px;
    position: relative;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: inline-flex;
    justify-content: space-between;
    padding: 6px 16px;
    font-weight: 700;
    text-align: left;
    -webkit-transition: .3s;
    transition: .3s;
    align-items: center;
}


.btn-primary {
  background: var(--bg-button-primary);
  color: var(--color-button-primary);
}

.btn-primary:hover,  .btn-primary:focus, .btn-primary:active  {
 color: var(--color-button-primary-hover)!important;
 background: var(--bg-button-primary-hover)!important;
   transition: all 0.5s;
}

.btn-green{
  background: var(--bg-button-green);
  color: var(--color-button-green);
}

.btn-green:hover,  .btn-green:focus, .btn-green:active  {
 color: var(--color-button-green-hover)!important;
 background: var(--bg-button-green-hover)!important;
   transition: all 0.5s;
}

.btn-outline{
 background: var(--bg-button-black);
  color: var(--color-button-outline);
 border: 1px solid var(--color-border-outline);
}

.btn-outline:hover,  .btn-outline:focus, .btn-outline:active  {
 color: var(--color-button-outline-hover)!important;
  border: 1px solid var(--color-border-outline-hover)!important;
  background: var(--bg-button-black-hover);
  transition: all 0.5s;
}


.btn-black{
  background: var(--bg-button-black);
  color: var(--color-button-black);
}

.btn-black:hover,  .btn-black:focus, .btn-black:active  {
 color: var(--color-button-black-hover)!important;
 background: var(--bg-button-black-hover)!important;
   transition: all 0.5s;
}

.btn-black4{
  background: var(--bg-button-black4);
  color: var(--color-button-black4);
}

.btn-black4:hover,  .btn-black4:focus, .btn-black4:active  {
 color: var(--color-button-black4-hover)!important;
 background: var(--bg-button-black4-hover)!important;
   transition: all 0.5s;
}

.btn-orange{
  background: var(--bg-button-orange);
  color: var(--color-button-orange);
}

.btn-orange:hover,  .btn-orange:focus, .btn-orange:active  {
 color: var(--color-button-orange-hover)!important;
 background: var(--bg-button-orange-hover)!important;
   transition: all 0.5s;
}

.btn-login{
  background: var(--bg-button-black5);
  color: var(--color-button-black5);
}

.btn-login:hover,  .btn-login:focus, .btn-login:active  {
 color: var(--color-button-black5-hover)!important;
 background: var(--bg-button-black5-hover)!important;
   transition: all 0.5s;
}


/* ===================
container
====================== */

@media (min-width: 1200px) {

  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1260px;
  }
}

/* ===================
header
====================== */


header{
  position: relative;
    padding: 16px 0;
   background: var(--background-header);
}

header.fixed-top {
    background: var(--background-fixed-top);
}

.header_container{
      display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
      gap: 80px;
}
.header_container .brand{
       display: flex;
    align-items: center;

}
.header_container .instrument{
     display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.logo img{
  width: 200px;
}

.header_buttons {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 35%;
    flex: 0 0 35%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
      display: flex;
  gap: 20px;
}
.header_buttons i{
 font-size: 20px;
}


.btn span{
      display: block;
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
}

/* ===================
nav menu
====================== */


/*bootstrap nav*/


.navbar-nav {
display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: column;
    flex-direction: row;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    justify-content: flex-start;
    width: 100%;
    gap: 30px;
    flex-wrap: wrap;
}
b.caret{
    line-height: 0;
    padding-left: 0px;
   color: var(--color-menu);
    margin-left: 5px;
    transition: all 0.3s;
}

b.caret i {
    transition: all 0.3s;
   color: var(--color-menu);
}

   .navbar {
    padding: 0;
  

}
.navbar-nav li a:hover b.caret{
  transform: rotate(180deg);
  transition: all 0.3s;
}

.navbar-nav li {
    transition: all 0.3s;
}
.navbar-nav>li>a {
   padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    margin-right: 0;
    display: flex;
    position: relative;
    font-style: normal;
   color: var(--color-menu);
    align-content: center;
    align-items: center;
       font-size: 16px;
    font-weight: 600;
    line-height: 23px;
   
}

.navbar-nav>li>a:before {
   display: none;
}
.navbar-nav>li:last-child a:before {
  display: none;
}
.navbar-nav>li:last-child a {
  margin-right: 0px;
}
li.current-menu-item a{
  color: var(--color-menu-current);
}
li.current-menu-parent a{
}
.navbar-nav>li>a:hover, .navbar-nav>li>a:focus, .navbar-nav>li>a:active{
   text-decoration: none;
   color: var(--color-menu-hover);
}

.navbar-nav>li>a:not([href]):not([tabindex]):focus, .navbar-nav>li>a:not([href]):not([tabindex]):hover {
 color: var(--color-menu-hover);
    text-decoration: none;
}

.dropdown-menu {
       width: 300px;
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 50px 0px 10px 10px;
    margin: 0;
    color: #fff;
    text-align: left;
    list-style: none;
    transition: all 0.3s;
    box-shadow: none;
    border-radius: 0;
    border: 0;
    background: var(--bg-dropdown);
}
.dropdown-menu li:hover {
    transition: all 0.3s;
   
}
.dropdown-menu li a {
    transition: all 0.3s;
    color: var(--color-menu);
    font-size: 17px;
    padding: 0px 20px 15px 20px;
    border-radius: 0px;
    width: 100%;
    display: block;
    font-weight: 500;
}
.dropdown-menu li a:hover {
  text-decoration: none!important;
 color: var(--color-menu-hover);
    opacity:1;
}
.dropdown-menu li:hover a{
  text-decoration: none!important;
 color: var(--color-menu-hover);
    opacity:1;
}
.dropdown-menu  li {
    transition: all 0.3s;
  padding: 0px;
  border-radius: 0px;
}
.dropdown-menu  li.current-menu-item a{
       text-decoration: none;
 color: var(--color-menu-current);
    opacity:1;
    box-shadow: none;
}
.dropdown-menu  li.current-menu-item a:hover{
       text-decoration: none;
   color: var(--color-menu-hover);
    opacity:1;
}

/*breadcrumb*/

.site-breadcrumb{
 padding: 50px 0px;
    height: auto;
    display: flex;
    align-items: flex-end;
    background-size: cover !important;
 
}

.site-breadcrumb h1{
   color: var(--color-white);
    margin-bottom: 0px;
    font-size: 44px;

}

p#breadcrumbs{
font-size: 14px;
    padding-bottom: 20px;
  opacity: 0.7;
}
p#breadcrumbs a{
 color: var(--color-white);
}


.page_header_container{
  display: flex;
    justify-content: space-between;
}
.page_header_container .left_content{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.page_header_container .right_content{
   width: 45%;
   
}
.page_header_container .right_content .img{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0px;
}


.page_header_container .rate{
     display: flex;
    gap: 20px;
    margin-top: 0;
}
.page_header_container .rate .rate_item{
  display: flex;
    background: var(--background-white);
    padding: 12px 30px;
    border-radius: 0.8rem;
    justify-content: space-between;
    align-items: center;
}

.page_header_container .rate .rate_left{
 width: 55%;
}
.page_header_container .rate .rate_right{
  width: 42%;
}

.page_header_container .rate .rate_left span{
 font-size: 22px;
  color: var(--color-star);
    line-height: 1;
}

.page_header_container .rate .rate_right span{
      font-size: 25px;
    color: var(--color-apps);
    line-height: 1;
}
.page_header_container .rate .rate_right{
    justify-content: space-around;
}

.page_header_container .rate .logo{
      
    display: flex;
    align-items: center;
    padding: 0px 30px;
}

.page_header_container .bonus_deposite {
      padding: 27px 32px 32px 32px;
    background-color: #fff;
    border-radius: 0.8rem;
    background: var(--background-white);
    display: flex;
    flex-direction: column;
     gap: 0px;
    margin-top: 25px;
}
.page_header_container .bonus_deposite .text{
  color: var(--color-dark);
  font-size: 16px;
  font-weight: 400;
}
.page_header_container .bonus_deposite .text span{
    color: var(--color-green);
    margin-right: 8px;
    margin-bottom: 24px;
    font-size: 32px;
    font-weight: 700;
}

.page_header_container .bonus_deposite .block_buttons {
     -webkit-box-flex: 0;
    -ms-flex: 0 0 35%;
    flex: 0 0 35%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    display: flex;
    gap: 10px;
}

.page_header_container .bonus_deposite .block_buttons i{
  font-size: 30px;
}

.page_header_container .bonus_deposite .block_buttons .btn {
     display: flex;
    justify-content: center;
    gap: 10px;
}

.page_header_container .left_content .text_block {
    margin-top: 30px;
}
.page_header_container .text_block p{
   color: var(--color-white);
   font-weight: 400;
   font-size:16px;
   line-height: 1.42;
}

/*page*/

section.page_section{
  padding: 30px 0px;
}

table {
    caption-side: bottom;
    border-collapse: collapse;
    width: 100%;
}

 td,  th {
    word-break: break-word;
}
tr td {
    padding: 16px 24px;
    color: var(--color-text);
    border-color: #303336;
}
 td,  th {
    border: 1px solid;
    padding: .5em;
}

.columns_item{

}
.columns_item .alignnone {
    margin: 0px 0px 0px 0;
}
.columns .column{
      display: flex;
    align-items: center;
}

.manual_item{
   display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: calc(100% - 40px);
    margin-bottom: 40px;
      border-bottom: 1px solid #898989;
}
.manual_item .title{
  display: flex;
      margin-bottom: 0px;
}

.manual_item .title h3{
      font-weight: 700;
    font-size: 24px;
    margin-bottom: 0;
}
.manual_item .img{
       min-height: 443px;
    padding: 40px;
    display: flex;
    align-items: center;
}
.manual .number {
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: 16px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    line-height: 32px;
    color: var(--color-white);
    background-color: var(--background-green);
}
.manual .container {
        max-width: 1140px;
    }

.bg-tabs{
   background: var(--bg-tabs);
}
.bg-tabs h2, .bg-tabs h3, .bg-tabs h4, p{
  color: var(--bg-tabs-text);
}

.slots_container{
  padding: 30px;
  border-radius: 0.8rem;
}

.slot_item{
     position: relative;
    border-radius: 0.8rem;
    overflow: hidden;
    font-weight: 700;
    -webkit-transition: .3s;
    transition: .3s;
}
.slot_item img {
    vertical-align: bottom;
    width: 100%;
    position: relative;
    height: 100%;
}

.slot_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.slot_bottom {
  opacity: 0;
    position: absolute;
    top: 0px;
  text-align: center;
    padding-top: 20px;
    z-index: 1;
    height: 100%;
    width: 100%;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), to(#000));
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0, #000 100%);
    color: #fff;
   transition: 0.3s;
}

.slot_item:hover{
   transform: scale(1.05);
      transition: 0.3s;
}

.slot_item:hover .slot_bottom {
      opacity: 1;
   transition: 0.3s;
    }

/* ===================
footer css 
====================== */

footer {
  background: var(--background-footer);
  padding: 40px 0px;
  margin-top: 0px;
}

.footer_container{
       padding: 40px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer_container .brand{
       display: flex;
    align-items: center;
    gap: 112px;
}
footer p{
  opacity: .7;
  color: var(--footer-color);
}
.footer_menu{
  margin-bottom: 60px;
}

.footer_menu_wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tech_menu li a{
  opacity: .7;
  font-weight: 400;
}

.footer_buttons{
 -webkit-box-flex: 0;
    -ms-flex: 0 0 35%;
    flex: 0 0 35%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: space-between;
    display: flex;
    gap: 20px;
    align-items: center;
  margin-bottom: 30px;
}

footer .brand{
    display: flex;
    align-items: center;
    gap: 20px;
}

footer .age img{
   width: 40px;
}

.footer_copy{
  
  margin-bottom: 30px;
}

.footer_copy p{
    text-align: left;
    opacity: .7;
    font-weight: 300;
    font-size: 10px;
 
}

.footer_copy_info p{
    opacity: .7;
    line-height: 1.1;
    font-size: .9rem;
 
}

/* ===================
modal
====================== */

.modal-title {
    font-size: 28px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}
.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 0;
}
.modal-content {
    background-color: transparent;
}

.btn-close {
    color: #fff;
    background: none;
    opacity: 1;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 9;
}
.wpcf7-not-valid-tip {
  color: #ef233c;
    font-size: 13px;
    position: absolute;
    top: 0;
    right: 0;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #fff;
       color: #fff;
    font-size: 13px;
    border-radius: 0px;
}

.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
    border-color: #ffffff;
    color: #fff;
}

.hentry p{
    margin-bottom: 20px;
}

/*lists*/

.hentry ul {
    list-style: none;
    padding-left: 20px !important;
    margin-bottom: 10px;
    margin-top: 10px;
    margin-left: 0px;
}
.hentry ul li {
        position: relative;
    padding: 0px 0 14px 20px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    color: var(--color-text);
}
.hentry ul li:before {
     content: "\f70a";
    font-family: "Material Design Icons";
    color: var(--background-green);
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 10px;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hentry ol {
  list-style: none;
    padding: 0;
    margin: 20px 0px 20px 20px;
    counter-reset: item;
}
.hentry ol li {

    display: table;
    position: relative;
    padding: 0px 0 5px 30px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
  color: var(--color-text);
}
.hentry ol li:before{
       content: counter(item)".";
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 2px;
    line-height: 18px;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    text-align: center;
    height: 20px;
    padding-top: 0px;
    padding-left: 3px;
    line-height: 24px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    font-weight: 700;
    margin-right: 8px;
    font-size: 17px;
   color: var(--background-green);
}

.modal {
    z-index: 999999;
}


/*to top */

.totop {
       position: fixed;
    bottom: 30px;
    background: transparent;
    right: 30px;
    height: 45px;
    width: 45px;
    display: flex;
    color: var(--red-color);
    font-size: 30px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid var(--red-color);
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    z-index: 99;
    opacity: 0;
}
.totop.status {
  opacity: 1;
}
.totop:hover {
  opacity: 0.8;
  transition: all 0.2s;
}
.scrolltop {
    opacity: 0;
    transition: all 0.2s;
}




/*pagination*/

.pagination {
     display: flex;
    padding-left: 0;
    margin: 60px auto 0px auto;
    border-radius: 10px;
    padding: 0px 0px 0px 0px;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.pagination>li {
  display: inline;
}
.pagination > li:first-child > a, .pagination > li:first-child > span {
  margin-left: 0;
  border-radius: 0px;
}
.pagination>li:last-child>a, .pagination>li:last-child>span {
border-radius: 0px;
}
.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
       color: var(--white-color);
  background: #484951;
    border: 1px solid #484951;
}
.pagination>li>a:focus, .pagination>li>a:hover, .pagination>li>span:focus, .pagination>li>span:hover {
  z-index: 2;
  text-decoration: none;
      color: var(--white-color);
   background: #484951;
    border: 1px solid #484951;
}
.pagination > li > a, .pagination > li > span {
  position: relative;
  float: left;
  font-weight: 500;
}
.pagination > li > a, .pagination > li > span {
  text-align: center;
    width: 46px;
    height: 46px;
    background-color: #F7F7F7;
    border-radius: 0px;
       border: 1px solid #F7F7F7;
     color: #202020;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    font-weight: 400;
    font-size: 18px;
  font-family: var(--font-secondary);
}


.accordion-body {
   padding: 10px 30px 10px 0px;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-radius: 0;
}

.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
    border-radius: 0;
}

.accordion-button:not(.collapsed) {
   color: var(--color-text);
    box-shadow: none;
    background-color: transparent;
}

.accordion-button {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
}

.accordion-button span {
   color: var(--color-text);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button,
.accordion-button:not(.collapsed) {
    background-color: transparent;
    padding: 10px 30px 10px 0px;
    margin-top: 20px;
}

.accordion-button::after {
       content: '\f140';
    font: normal normal normal 24px / 1 "Material Design Icons";
    color: var(--color-text);
    background: var(--background-green);
    width: 40px;
    height: 40px;
    font-size: 40px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.accordion-button:not(.collapsed)::after {
    background-image: none;
  
}
.accordion-item:last-of-type {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  border: 0;
}

.accordion-item {
    color: var(--color-text);
  border: 0;
     border-bottom: 1px solid #7c7c7c;
      background: rgb(0 0 0 / 0%);
  padding-bottom: 20px;
}

header.fixed-top {

  animation: slide-down 0.7s;
}

@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.meta{
     border-bottom: 1px dashed #7c7c7c;
    padding-bottom: 20px;
}
.meta p{
  font-size: 13px;
    opacity: 0.7;
}

.thumbnail_single{
  width: 100%;
  margin: 50px 0px 30px 0px;
}

.cat .slot_bottom {
    opacity: 1;
    position: relative;
    top: 0px;
    text-align: left;
    padding-top: 20px;
    background: transparent;
     color: var(--color-text);
    transition: 0.3s;
  height: auto;
}

 .slot_item.cat img {
    
    border-radius: 10px;
}

 .slot_item.cat .img img {
    
    border-radius: 10px;
}
.content-slider{
      overflow: hidden;
    position: relative;
    padding-bottom: 40px;
}

.swiper-horizontal>.swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
        left: 0 !important;
    bottom: 20px !important;
    top: inherit !important;
    width: 100% !important;
      height: 2px!important;
      z-index: 1!important;
}

.swiper-scrollbar {

    background: var(--color-text)!important;
  opacity: 0.7;
}

.content-slider .text{
    margin-top: 20px;
  font-size: 15px;
  opacity: 0.8;
}

.content-slider img{
    width: 100%;
  min-height: 200px;
  object-fit: cover;
}
.content-slider a{
display: block;
}
.page_header_container p {
  color: #ffffff;
  }
  .menu_wrapper {
    height:80px;
    }