@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
:root { 
    --bg-1: #231845;
    --bg-2: #231845;
    --bg-3: #3a1f58;
  --overlet-color:rgba(0, 0, 0, 0.3);
  --color-bg-1:#c6007b;  
  --color-bg-2:#8a8acc;
  --white: #fff;
  --black: #040807;
  --white-section:#fffef8;
  --accent-color:#c6007b;
  --hover-tranzitipn: all .5s cubic-bezier(.3,1,.35,1) 0s;  
}

body{
    direction: ltr;
    font-family: "Ubuntu", serif;
    font-size: 17px;
    margin: 0;
    padding: 0px;
    color: var(--white);
    background-color: var(--bg-2); 
}
h1,
h2,
h3,
h5,
p{
    padding: 0;
}
a{
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: var(--hover-tranzitipn);
}
a:hover,a:focus{
    color: var(--accent-color);
}
img{
    display: block;
    max-width: 100%;
    max-height: 100%;
}

ul{
    list-style: none;
    padding: 0;
}

.section{
    padding: 80px 0;
}
.pos{
    position: relative;
}
.moto-hed-bag{
    position: absolute;
    background: transparent;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.hero{
    display: flex;
    align-items: center;
    text-align: center;
    /* min-height: calc(100vh - 60px); */
}
.main-hero{
    padding: 300px 0 200px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: top;
    background-image: url(../assets/bg-light-0677ac5c40b17a.jpg); 
}
.main-hero::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background:rgba(0, 0, 0, 0.72);      
}
.hed-top{
    display: flex;
    align-items: center;
    padding-top: 15px;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.top-small-line{
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    justify-content: center;
    width: 50%;
}
.hed-top-line{
    max-width: 100%;
    width: 100%;
    box-sizing: content-box;
    height: 0;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #ffffff;
    margin: 0;
    display: inline-block;
}
.hed-nav{
    padding: 20px 0;
}
.name-hed{
    position: relative;
    padding: 0 15px;
    font-size: 40px;
    color: var(--white);
}
.name-hed::before,.name-hed::after{
    position: absolute;
    content: "";
    width: 14px;
    height: 2px;
    background: var(--white);
    top: 50%;
  

}
.name-hed::before{
    left: 0;
}
.name-hed::after{
    right: 0;
}
.nav-link{
    color: var(--white);
    font-weight: 600;
     
}

.hed-bottom-wrapper{
   
}
.hed-bottom-wrapper h1{
font-size: 60px;
font-weight: 800;
color: #fff;
-webkit-background-clip: text;
background-size: contain;
animation: fire 20s linear infinite;
margin-bottom: 10px;
}
.btn-box{
   margin-top: 50px;
}
.hed-bottom-wrapper p{
    font-size: 20px;
    margin-bottom: 20px;
}
.head-btn{
    border-radius: 20px;
    font-size: 20px;
    font-weight: 700;
    color: white !important;
    transition: .5s cubic-bezier(.22,.61,.36,1);
    -webkit-box-shadow: 0 3px 3px 0 rgba(1,1,1,.55);
    box-shadow: 0 3px 3px 0 rgba(1,1,1,.55);
    background-color: #c6007b;
    padding: 20px 50px;
}

@keyframes fire {
    0% {
        background-position: left 0 top 25px;
    }

    50% {
        background-position: left 130px top -35px;
    }

    100% {
        background-position: left 260px top 0;
    }
}


.navbar-toggler{
    width: 40px;
    height: 40px;
    padding: 0 8px;    
    background-color: #191d26;
}
.navbar-toggler svg{
    fill:  #fff;
}
.top-game-wrapper{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.top-game-blok{
    flex-grow: 1;
    flex-basis: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-game-item,.games-link{
    position: relative;
    width: 230px;
    height: 250px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: rgba(218, 57, 43, 0.1) 7px 7px 10px;
    transition: opacity 0.2s ease 0s;
    opacity: 1;
    display: block;
}
.top-game-item::before{
    content: " ";
    position: absolute;
    top: 0;
    transition: var(--hover-tranzitipn);
    filter: opacity(1);
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    box-sizing: border-box;   
    background: linear-gradient(180deg,rgba(218,57,43,0),rgba(218,57,43,0.8));
}
.top-game-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
   transition: var(--hover-tranzitipn);
}
.iner-geme{
    text-align: center;
    padding: 10px 15px;
    border-radius: 25px;
    opacity: 0;
    transition: var(--hover-tranzitipn);
    background: var(--accent-color);
    color: var(--black);
}

.top-game-item:hover:before{
    background: linear-gradient(180deg,rgba(218,57,43,0),rgb(81 80 80 / 80%));
}
.top-game-item:hover .games-title{
    opacity: 0;
}
.top-game-item:hover .iner-geme{
    opacity: 0.85;
}
.games-title{
    transition: opacity .4s ease;
    opacity: 1;
}
.top-game{
    position: relative;
    top: -70px;
    display: none;
}
.top-game-title{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    transition: var(--hover-tranzitipn);
}
.top-game-bg{
    background-color: rgb(252, 255, 114);
}
.games-link{
    align-items: center;
    text-align: center;
    gap: 10px;
    flex-direction: column;
    color: var(--black);
    justify-content: center;
}
.section-about-bg{
    position: relative;
    background: #48276c;
}
.section-about-bg::before{
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.58);
}
.title-section{
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    
}

.about-img img{
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: contain;
}

section.section.faq-section1 {
    /* background-image: url(../assets/1-3.png); */
    background-position: center right;
    background-size: auto;
    background-repeat: no-repeat;
}

.faq-wrapper{
    border-radius: 3px;
    border: 1px solid var(--white);
    width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.accordion{
    padding: 50px;
}
.accordion-button{
    border: none;
    border-radius: 0;
    font-weight: 600;
    color: var(--white);
    background-color: inherit; 
   
    
}
.accordion-button::after{
    content: "+";
    background-image: none !important;
    color: var(--accent-color);
    font-size: 22px;
}
.accordion-button:focus {
    border: none;
    border-radius: 0;
    box-shadow:none;
}
.accordion-button:not(.collapsed)::after {
    transform: none;
        content: "-";
  }
.accordion-item {
    border: none;    
    background-color: transparent;  
    border-radius: 7px;
    margin-bottom: 20px;
    border: 1px solid rgba(216, 216, 216, 0.2);
    background: #48276c;
   
}
.accordion-item:last-of-type .accordion-collapse,.accordion-item:last-of-type .accordion-collapse,.accordion-item:last-of-type,.accordion-item:first-of-type {
    border-radius: 7px;
   
}
.accordion-collapse{
    border: none;
}
.accordion-body{
    color: #ffffff;
}



.page-game-item{
    background-color: #48286b;
    border-radius:  20px;
    -webkit-box-shadow:  -5px -5px 5px -5px rgba(255, 193, 26, 0.6) inset;
    -moz-box-shadow:  -5px -5px 5px -5px rgba(255, 193, 26, 0.6) inset;
    box-shadow:  -5px -5px 5px -5px rgba(255, 193, 26, 0.6) inset;
    padding: 30px 20px;
   
}
.page-game-item-img{
    position: relative;
    overflow: hidden;   
}

.page-game-item-img img{
    width: 100%;
    height: 100%;   
    object-fit: cover;   
    transition: filter 0.5s ease;
    margin-bottom: 20px;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,rgba(218,57,43,0),rgb(81 80 80 / 80%));
    opacity: 1;
    border-radius:0;
    
    transition: opacity 0.5s ease,border-radius 0.5s ease; 
}

.page-game-item-img:hover img {
    filter: brightness(100%); 
}

.page-game-item-img:hover .overlay {
    opacity: 0; 
    border-radius: 50%;
}
.page-game-item-content{
 
    /* color: var(--bg-1); */
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
}
.step-bg{
    background-repeat: no-repeat;    
    background-position: center center;
    background-size: cover;
    overflow: hidden;    
    /* background-image: url(../assets/opacity_bg-0677ac5c40b396.png ); */
}
.page-game-item-title{
    font-weight: 700;
    font-size: 20px;
}
.page-game-item-content p{
    font-size: 16px !important;
}
.rating-item{
    display: flex;
    align-items: center;
    gap: 5px;
}
.rating-item svg{
 fill: var(--accent-color);
}
.cart-btn{
    width: 100% !important;
}
.revers{
    flex-direction: row-reverse;
}
.section-tow{   
    padding: 80px 0;
}

.footer{
    padding-top: 50px;
    background: #48276c; 
}
.footer-bottom{
    padding-top: 30px;
    padding-bottom: 20px;  
    display: flex;
    gap: 20px;
    justify-content: space-between;
    border-top: 1px solid #ffffff42;
    flex-direction: row-reverse;
   
}
.footer-iner{
    padding: 15px;
}
.copyright{
    display: flex;
    align-items: center;
    justify-content: center;  
    gap: 10px;
    flex-wrap: wrap;
    color: var(--white);
    font-size: 14px;
}
.disclaime-img{
    display: flex;
    align-items: center;
    justify-content: center;
}
.disclaime-img img{
    width: 100%;
    height: 40px;
    object-fit: contain;
}
.footer-nav{
    display: flex;
    gap: 20px;
    text-align: center;
}
.video-box{
    position: relative;
    width: 100%;
    height: 500px;
}
.section-video{
    position: relative;     
    padding: 80px 0;    
    background: url('../assets/bg-dark-2677ac5c40b2bd.jpg') no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.section-video::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.58);   

}
.video-text{
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%);
}
.button-play{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    transition: var(--hover-tranzitipn);
    background-color: var(--white);
    border-radius: 50%;
    color: var(--black);
    cursor: pointer;
    background-color: #cfe2ff;
}
.button-play > svg{
    width: 50px;
    height: 50px;
}
.button-play:hover,.button-play:focus,.button-play:active{
    background-color: var(--accent-color);
}
.button-video-close{
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    cursor: pointer;
}
.video-container{
    width: 100%;
    box-shadow: rgba(229, 223, 143, 0.4) 0px 7px 29px 0px;
    display: none;
    position: relative;
}
.video-player{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.video-box .title-section{
    justify-content: center;
}
.disclaimer-wrapper{
    width: 70%;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    border-radius: 8px;
    /* box-shadow: rgba(229, 223, 143, 0.4) 0px 7px 29px 0px; */
    background: #48276c;
    animation:  moveBorder 20s linear infinite;
    border: none;
    position: relative;
    transition-duration: .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: white;
    font-size: 20px;
    
}
.disclaimer-wrapper::before{
    content: '';
    position: absolute;
    left: -2px;
    top: -2px;
    border-radius: 10px;
    background: linear-gradient(45deg, #fb0094, #0000ff, #00ff00,#ffff00, #ff0000, #fb0094, 
          #0000ff, #00ff00,#ffff00, #ff0000);
    background-size: 400%;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    z-index: -1;
    animation: moveBorder 20s linear infinite;
}
.disclaimer-wrapper::after{
    content: '';
    position: absolute;
    left: -2px;
    top: -2px;
    border-radius: 10px;
    background: linear-gradient(45deg, #fb0094, #0000ff, #00ff00,#ffff00, #ff0000, #fb0094, 
          #0000ff, #00ff00,#ffff00, #ff0000);
    background-size: 400%;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    z-index: -1;
    animation: moveBorder 20s linear infinite;
}
.section-page {
    padding: 50px 0;
}



@keyframes moveBorder {
    0% {
        background-position: 0 0;
      }
    
      50% {
        background-position: 400% 0;
      }
    
      100% {
        background-position: 0 0;
      }
}


.playing {
    margin-bottom: 50px;
    padding-top: 50px;
    height: 450px;
    width: 100%;
}

.comment-wrapper {
    margin: 30px 0;
    gap: 20px;
}

.comment-item {
    background: #48276c;
    display: flex;
    border-radius: 8px;
    gap: 14px;
    flex-direction: column-reverse;
    padding: 20px;
    height: 100%;
}
.leftcol{
    flex: 1;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    flex-direction: row;
    opacity: 0.95;
    align-items: start;
}
.rightcol{
    float: left;
    flex: 2;
    position: relative;

}
.avatar{
    
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.avatar img{
    width: 50px;
    height: 50px;
    padding: 1px;
    border-radius:  50%;
    background: linear-gradient( to bottom, #515151 5%, #474747 95%);
}

.avatar__name h5{
    color: #c1dbf4;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
}
.review_box {
    margin: 8px 0 13px;
    display: flex;
    gap: 20px;
    align-items: center;
    background: #92a6c445;

}
.review_box h3{
    font-size: 16px;
    color: #d6d7d8;
    padding: 3px 0px 0px 0px;
    line-height: 19px;
    }
    .thumb{
    height: 40px;
    width: 40px;
    background: #231845;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    .thumb i{
        color: var(--accent-color); 
        font-size: 27px;   
    }
    .bi-hand-thumbs-up::before{
    transform: rotateY(180deg);
    }
    .rightcol_coment{
    font-size: 13px;
    color: #acb2b8;
    overflow-wrap: break-word;
    line-height: 17px;
    }
    .soft-testimotional-icon{
    display: flex;
    justify-content: space-between;
    font-size: 17px;
    font-weight: 800;
    color: #009A44;
    padding-top: 5px;
    }

    .page-img {
        max-height: 360px;
        object-fit: cover;
        border-radius: 15px;
        float: left;
        width: 40%;
        margin: 17px;
        margin-top: 0;
        margin-left: 0;
    }

    .page-content p {
        margin-bottom: 10px;
    }

    .soft-testimotional-icon {
        display: flex    ;
        justify-content: space-between;
        font-size: 17px;
        font-weight: 800;
        color: #009A44;
        padding-top: 5px;
    }

    .section-col-bg {
        padding: 50px 0;
        background: #231845;
    }

    .contact-row {
        display: flex    ;
        gap: 20px;
        flex-wrap: wrap;
    }

    .contact-col {
        flex-grow: 1;
        flex-basis: 200px;
    }

    .cont-item {
        display: flex    ;
        gap: 10px;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    
    .cont-item-icon {
        width: 78px;
        height: 78px;
        display: flex    ;
        align-items: center;
        justify-content: center;
        background: #cfe2ff;
        border-radius: 50%;
        transition: var(--hover-tranzitipn);
    }
    .cont-item-icon i {
        font-size: 34px;
        color: var(--black);
    }
    .contact-col:hover .cont-item-icon {
        background-color: var(--color-bg-1);
        border: 1px solid var(--white);
    }
    .cont-item:hover i {
        font-size: 34px;
        color: #cfe2ff;
      }
    .cont-item-content {
        font-size: 15px;
    }
    .cont-item-content h3 {
        font-size: 20px;
        font-weight: 700;
    }
    .cont-item-content a {
        transition: var(--hover-tranzitipn);
    }

@media (max-width: 575px){
    .name-hed{
        font-size: 25px;
    }
    .hed-bottom-wrapper h1{
        font-size: 30px;
    }
    .title-section{
        font-size: 25px;
    }
    .accordion-body,.accordion-button{
        
        padding-left: 5px;
        padding-right: 5px;
    }

    .disclaimer-wrapper{
        padding: 20px 5px; 
    }
    .page-game-item-content{
        font-size: 15px;
    }
    .page-game-item {
        border-radius: 20px;
    }
    .footer-bottom{
        flex-direction:  column-reverse;
    }
     .video-box{
        height: 400px;
     }
}
@media (max-width: 768px){
    .accordion{
        padding: 15px;
    }
    .accordion-button{
        font-size: 14px;
       
    }
    .accordion-body{
       font-size: 14px;
    }
    .page-game-item,.revers{
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .page-game-item-img,.page-game-item-content{
        width: 100%;

    }
    .page-img {
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
    }
    .section {
        padding: 50px 0;
      }
      element {
    }
    .footer-nav {
      display: block;
      text-align: left;
    
    }
}
@media (min-width: 575px) and (max-width: 768.98px){  
    .hed-bottom-wrapper h1{
        font-size: 45px;
    }
    .cart{
        padding: 0;
    }
    
}



@media (max-width: 992px){ 
    .hed-top{
        align-items: inherit;
        flex-direction: column-reverse;
        
    }
    .top-small-line{
        width: 100%;
    }
    .hed-top-item:last-child{
        text-align: end;
    }
    .hed-top-item:first-child{
        text-align: start;
    }
    .navbar-nav{       
        border: 1px solid #28313f; 
        margin-top: 10px;
    }
    .nav-item{
        background-color: #191d26;
        border-bottom: 1px solid #191d26;
    }
   .navbar-nav  .nav-link{
    color: #ffc11a;    
    background-color: #191d26;
    padding: 10px 50px 10px 20px;
    font-size: 16px;
    line-height: 1.2;
    text-align: left;
    }

    .navbar{
        flex-direction: column;
        gap: 10px;
        
    }
    .navbar-collapse{
    width: 100%;
    }
    .name-hed{
        text-align: center;
    }
    .section-page{
        padding: 120px 0;
    }
    .top-game{
        top: 0;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .disclaimer-wrapper{
        width: 100%;
    }
    .about-img img{
        max-height: 400px;
    } 
    
}
@media (min-width: 992px){ 
   .navbar-nav{
    width: 100%;
   }
   .navbar-expand-lg .navbar-nav{
    justify-content: end;
   }
   .nav-link:hover{
    color: var(--accent-color);
   }
   .hed-bottom-wrapper h1{
    font-size: 90px;
   }
   /* .about{
    flex-direction: row-reverse;
   } */

}
@media (min-width: 1200px){   
 .title-section{
    font-size: 60px;
 }
}


/* button css  */

.btn-1 {
 
    padding: 15px 20px;
    display: block;
    width: 100%; 
    text-align: center;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    transition: .5s cubic-bezier(.22,.61,.36,1);
    -webkit-box-shadow: 0 3px 3px 0 rgba(1,1,1,.55);
    box-shadow: 0 3px 3px 0 rgba(1,1,1,.55);
    background-color: #c6007b;
  }
  
  .btn-1:hover,.btn-1:focus {
    -webkit-filter: drop-shadow(1px 1px 10px rgba(255, 14, 31, .7));
    filter: drop-shadow(1px 1px 10px rgba(255, 14, 31, .7));
    color: white;
  }

.blok-text-page p{
  margin-bottom: 10px;
}


.section-smol{
    padding: 50px 0;
   
}
.top-title{
    font-size: 45px;
    font-weight: 700;
}

.bg-page-top {
    background-image: url(../assets/bg-dark-1677ac5c40b26a.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 250px 0px 50px;
}

.pege-nav{
    display: flex;
    gap: 5px;
    justify-content: end;
}
.pege-nav-item{
    font-size: 18px;

}
.moto-hed-bag {
    position: absolute;
    background: #48276c85;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.nav-link:focus, .nav-link:hover {
    color: #fe0051;
  }
  .contact-row{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.contact-col{
    flex-grow: 1;
    flex-basis: 200px;
    background: #48276c;
  padding: 30px;
  border-radius: 20px;
  box-shadow: -5px -5px 5px -5px rgba(255, 193, 26, 0.6) inset;
}
.contact-col:hover .cont-item-icon{
 background-color: var(--color-bg-1);
 border: 1px solid var(--white);
}
.cont-item{
    display: flex;
    gap: 10px;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.cont-item-content a{
    transition: var(--hover-tranzitipn);
}
.cont-item-content a:hover,.cont-item-content a:focus{
    color: var(--color-bg-1);
}
.cont-item-content{
    font-size: 15px;
}
.cont-item-content h3{
    font-size: 20px;
    font-weight: 700;
}
.cont-item-icon{
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    transition: var(--hover-tranzitipn);
}
.cont-item-icon i{
    font-size: 38px;
    color:  #c6007b;
}
.contact-form form{
    background: #48276c;
    padding: 30px;
    border-radius: 20px;
    box-shadow: -5px -5px 5px -5px rgba(255, 193, 26, 0.6) inset;
  }
.subscribe-form{
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: rgba(229, 223, 143, 0.4) 0px 7px 29px 0px;
    background: linear-gradient(0deg, rgba(155,160,190,0.9243346997001926) 29%, rgba(26,105,133,1) 79%);
    animation: moveBorder 2s linear infinite;
}
.form-input,.form-textarea,.input-form-column__element,.textarea-form-column__element{
    width: 100%;
    outline: none;
    padding: 11px 15px;
    color: var(--white);
    height: 45px;
    background-color: transparent;
    font-style: normal;
    border-radius: 7px;
    font-weight: 400;
   border: 1px solid var(--white);
}
.form-input::placeholder,.form-textarea::placeholder,.input-form-column__element::placeholder,.textarea-form-column__element::placeholder{
    color: var(--white);
}
.form-textarea,.textarea-form-column__element{
    height: 140px;
}
.form-img{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.form-img img{
    width: 100%;
    max-height: 500px;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 992px){ 

    .hed-top-item:last-child{
        text-align: end;
    }
    .hed-top-item:first-child{
        text-align: start;
    }
    .navbar-nav{       
        border: 1px solid #28313f; 
        margin-top: 10px;
    }
    .nav-item{
        background-color: #191d26;
        border-bottom: 1px solid #191d26;
    }
   .navbar-nav  .nav-link{
    color: #c6007b;    
    background-color: #191d26;
    padding: 10px 50px 10px 20px;
    font-size: 16px;
    line-height: 1.2;
    text-align: left;
    }

    .nav-link:hover,.nav-link:focus,.nav-link:active{
        color: var(--white);
    }
    .navbar{
        flex-direction: column;
        gap: 10px;
        flex-direction: row;
        gap: 10px;
        padding: 0px 30px;        
    }
    .navbar-collapse{
    width: 100%;
    }
    .top-title {
        font-size: 38px;
        line-height: 40px;
        margin-bottom: 20px;
      }
    
    
}
@media (min-width: 992px){ 
   .navbar-nav{
    width: 100%;
   }
   .navbar-expand-lg .navbar-nav{
    justify-content: end;
    gap: 15px;
   }
   .nav-link:hover{
    color: var(--accent-color);
   }

}

.blok-text-page h2 {
    font-weight: 600;
    margin-bottom: 17px;
}

.section-page-bottom {
    padding: 35px 0 20px;
}
.hed-nav {
    padding: 20px 0;
}
.accordion-button:not(.collapsed) {
    background-color: #48276c;
    color: #fff;
  }