* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: "Risque", serif;
    font-weight: 400;
    font-style: normal;
}
html {
    font-size: 60%;
    overflow-x: hidden;
}
:root {
    --bg-color:black;
    --second-bg-color:black;
    --text-color:white;
    --main-color:#00ff51;
}


body {
    background-color: var(--bg-color);
    color: var(--text-color);
}

body {
    cursor: url(cr3.png), auto;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 2rem 12%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur (10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    background-image: url(b1.jpg);
}



#menu-icon {
    font-size: 3.6rem;
    color: var(--main-color);
    display: none;
}
.logo {
    font-size: 2rem;
    color: var(--text-color);
    font-weight: 800;
    transition: 0.3s ease;
}
.logo:hover {
    transform: scale(1.1);
}

span {
    color: var(--main-color);
    background-clip: text;
    text-shadow: 0 0 12px var(--main-color);
}

.navbar a {
    font-size: 1.7rem;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 40px;
    margin-left: 4rem;
    font-weight: 500;
    transition: 0.3s ease;
    border: none;
    padding: 7px;
    color: whitesmoke;
}
.navbar a:hover {
    border: none;
    color: #00ff51;
}

.navbar .male {
    font-size: 12px;
    color: whitesmoke;
    background-color: red;
    width: 42px;
    height: 20px;
    border-radius: 7px;
    text-align: center;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 15px;
    right: 215px;
    transform: rotate(25deg);
    font-weight: 700;
}



@media (max-width: 570px) {
    .navbar .male {
        top: 179px;
        left: 117px;
    }
}    

@media (max-width: 712px) {
    .navbar .male {
       top: 179px;
       left: 117px;
    }
}


.navbar a:nth-child(2) {
    color: whitesmoke;
    border: none;
    width: 30px;
}

.navbar a:nth-child(3) {
    color: #00ff51;
    border: none;
    width: 30px;
}

.navbar a:nth-child(2):hover {
    color: #00ff51;
    border: none;
    width: 30px;
}

.navbar a:nth-child(5) {
    color: gold;
    border: none;
    width: 30px;
}

.navbar a:nth-child(5):hover {
    color: #00ff51;
    border: none;
    width: 30px;
}





section {
    min-height: 100vh;
    padding: 10rem 12px;
}
.home {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15rem;
}

/*home background*/
.home {
    background: url(2.jpg);
}


.home-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}
.home-content h1 {
    font-size: 8rem;
    font-weight: 700;
    margin-top: 1.5rem;
    line-height: 1;
}
.home-content h3 {
    font-size: 4rem;
    margin: 1rem 0;
}
.home-content p {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.8;
}



/* || project */ 

.projects {
    background-color: var(--second-bg-color);
}
.projects-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    place-items: center;
    gap: 3rem;
    row-gap: 5rem;
}


.project-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-color);
    border: 2px solid var(--main-color);
    border-radius: 3rem;
    gap: 2rem;
    padding: 5rem 2rem;
    overflow: hidden;
    box-shadow: 0 0 5px var(--main-color);
    transition: 0.3s ease;
}

.project-card:hover {
    box-shadow: 0 0 25px var(--main-color);
    transform: scale(1.02);            
}


.project-card img {
   max-width: 270px;
   border-radius: 1rem;
   object-fit: cover; 
}

.projects-box .popup-image {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    height: 100%;
    width: 100%;
    z-index: 1000;
    display: none;
}

.projects-box .popup-image span {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 60px;
    font-weight: bolder;
    color: #00ff51;
    cursor: pointer;
    z-index: inherit;
}


.projects-box .popup-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid black;
    box-shadow: 8px 7px 9px #00ff51;
    border-radius: 15px;
    width: 400px;
    object-fit: cover;
}


.project-card h3 {
    font-size: 2rem;
    color: rgb(17, 252, 0);
}
.project-card a {
    font-size: 19px;
} 
/* || services */
.services {
    background-color: var(--second-bg-color);
}


.services-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    place-items: center;
    gap: 3rem;
    row-gap: 5rem;
}
.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-color);
    border: 2px solid var(--main-color);
    border-radius: 3rem;
    gap: 2rem;
    padding: 3rem 4rem;
    overflow: hidden;
    box-shadow: 0 0 5px var(--main-color);
    transition: 0.3s ease;
}
.service-card:hover {
    box-shadow: 0 0 25px var(--main-color),
                0 0 50px var(--main-color);
    transform: scale(1.02);            
}
.service-card img {
   max-width: 300px;
   border-radius: 2rem;
   object-fit: cover; 
}
.service-card p {
    font-size: 1.9rem;
}
.service-card .deluxe {
    color: rgb(255, 255, 255);
}
::-webkit-scrollbar {
    width: 17px;
}
::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
}
::-webkit-scrollbar-track {
    background-color: rgb(2, 99, 1);
}
.heading {
    text-align: center;
    font-size: 4rem;
    margin: 3rem 0;
}
/* || skills */
.skills-box {
    padding: 16px 16px;
}

.skills-content {
    background-image: url(brbg.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
}

.skills {
    min-height: auto;
    padding-bottom: 7rem;
    background: var(--second-bg-color);
}
.skills .skills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
}
.skills-row .skills-column {
    flex: 1 1 40rem;
}
.skills-column .title {
    font-size: 2.5rem;
    margin: 0 0 1.5rem;
    padding-left: 15px;
}

.skills-box .skills-content {
    position: relative;
    border: .2rem solid var(--main-color);
    border-radius: .7rem;
    padding: .5rem 1.5rem;
    z-index: 2;
    overflow: hidden;
}


.skills-box .skills-content:hover:before {
    width: 100%;
}

.skills-content .progress {
    padding: 1rem 0;
}

.skills-content .progress h3 {
   font-size: 1.7rem;
   display: flex;
   justify-content: space-between;
}


.skills-content .progress h3 {
    color: #00ff51;
}

.skills-content .progress h3 .num {
    color: whitesmoke;
}


.skills-content .progress .bar {
    display: block;
    height: 100%;
    border-radius: .3rem;
}

.skills-content .catseg {
    color: gold;
    font-size: 15px;
    position: absolute;
    transition: 0.3s ease;
    top: 57px;
    left: 50px;
}

.skills-content .catseg:hover {
    color: #00ff51;
    font-size: 15px;
}

/* || contact */
.contact {
    background-color: var(--second-bg-color);
}
.contact h2 {
    margin-bottom: 3rem;
    color: var(--text-color);
}
.contact form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin: 5rem 0;
    text-align: center;
}
.contact form .input-box input,
.contact form textarea {
    width: 100%;
    padding: 2.5rem;
    font-size: 1.8rem;
    color: var(--text-color);
    background-color: var(--bg-color);
    border-radius: 2rem;
    border: 2px solid var(--main-color);
    margin: 1.5rem 0;
    resize: none;
}

.contact form .input-box input:focus {
    background-color: #085c09;
}
.contact form textarea:focus {
    background-color: #085c09;
}


::selection {
    background-color: #1c6715;
    color: rgb(0, 255, 30);
}

/* || footer */
.footer {
    background-color: var(--bg-color);
    padding: 50px 0;
}
.footer .social-icon {
    text-align: center;
}



.footer .social-icon p {
    text-align: center;
    font-size: 1.6rem;
    color: whitesmoke;
}

.footer .social-icon img {
    width: 180px;
    height: 60px;
    margin: 1rem;
}



.footer ul {
    text-align: center;
    font-size: 1.8rem;
}
.footer ul li {
    display: inline-block;
    margin-left: 20px;
    background: linear-gradient(45deg,rgb(20, 108, 0), rgb(47, 255, 0));
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 1rem;
    transition: all 0.5s ease-in-out;
}

.footer ul li:hover {
    transform: scale(1.2);
}

.footer .copyright {
    text-align: center;
    margin-top: 40px;
    font-size: 16px;
    background: linear-gradient(45deg, rgb(255, 0, 0), rgb(255, 247, 0));
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* || rensponsive */
@media screen and (max-width:1024px) {
    #menu-icon {
        display: block;
    }
    .navbar {
    position: absolute;
    top: 100%;
    right: 0;
    width: 50%;
    padding: 1rem 3rem;
    background-color: rgba(0, 0, 0, 0.8);
    border-left: 2px solid var(--main-color);
    border-bottom: 2px solid var(--main-color);
    border-bottom-left-radius: 2rem;
    display: none;
}
   .navbar a {
    display: block;
    font-size: 2rem;
    margin: 3rem 0;
    color: var(--text-color);
}
.navbar.active {
    display: block;
}
.home {
    flex-direction: column-reverse;
    margin: 5rem 0;
    gap: 5rem;
}
.home-content {
    align-items: center;
    text-align: center;
}
.home-img img {
    width: 52vw;
}
.about {
    flex-direction: column-reverse;
    text-align: center;
}
.about h2 {
    text-align: center;
    margin: 2rem 0;
}
.about img {
    width: 52vw;
}
.contact form {
    flex-direction: column;
}
.project-card {
    margin: 0 auto;
}

}



.container {
    max-width: 1170px;
    margin: auto;
    padding: 0 15px;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header .title {
    font-size: 35px;
    font-weight: 600;
    text-transform: capitalize;
    color: #fdfdfd;
    line-height: 1.2;
}

.review {
    padding: 100px 0;
}
.review-item {
    background-color: #000000;
    padding: 30px;
    border-radius: 20px;
}
.review-item .info {
    display: flex;
    align-items: center;
}
.review-item img {
    max-width: 90px;
    border-radius: 2rem;
    margin-right: 20px;
}
.review-item .name {
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 600;
    color: rgb(0, 255, 34);
    line-height: 1.2;
}
.review-item .name1 {
    color: orange;
    font-size: 24px;
}

.review-item .name2 {
    color: blue;
    font-size: 24px;
}

.review-item .job {
    text-transform: capitalize;
    color: rgb(255, 255, 255);
    font-size: 13px;
}


.review-item p {
    margin-top: 20px;
    color: rgb(255, 255, 255);
    font-size: 15px;
}
.review-item .rating {
    margin-top: 15px;
    font-size: 14px;
    color: hsl(127, 100%, 50%);
}
.review-item .rating {
    margin-top: 15px;
    font-size: 14px;
    color: orange;
}
.review .swiper-pagination {
    position: relative;
    margin-top: 40px;
    bottom: auto;
}
.review .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    background-color: rgb(2, 254, 15);
}

/* || scroll and details */
#neww {
    color: red;
    font-size: 17px;
}

details {
    color: #00ff51;
    font-size: 17px;
}
summary::marker {
    content: '';
}

.included {
    color: rgb(252, 252, 252);
}
.standart {
    color: whitesmoke;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
}

@supports (background-clip: text) or 
(-webkit-background-clip: text) {}

.standart {
    background-image: 
    linear-gradient(
        to left,
        #00ff51,
        whitesmoke,
        whitesmoke,
        whitesmoke,
        whitesmoke,
        whitesmoke,
        whitesmoke,
        whitesmoke,
        #00ff51
    ) ;

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
    background-size: 200%;
    animation: animate 2s steps(7) infinite;
    animation: animate 2s linear infinite;
}

@keyframes animate {
    to {
        background-position: 200%;
    }
}




.standartnew {
    color: red;
    font-size: 12px;
}

.vip {
    color: rgb(255, 255, 255);
}
.vipnam {
    color: #ffffff;
}
 
.title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 5rem;
}


/*pagination*/

#back {
    font-size: 17px;
    color: #00ff51;
}

#next {
    font-size: 17px;
    color: #00ff51;
}

.pagination {
    text-align: center;
    font-size: 2rem;
}
.pagination a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 8px 15px;
    display: inline-block;
}
.pagination a.active {
    background-color: #00ff51;
    font-weight: bold;
    border-radius: 5px;
}
.pagination a:hover:not(.active) {
    background-color: rgb(30, 106, 0);
    border-radius: 5px;
}

/* img*/

.brands_img {
    width: 100px;
    opacity: 0.4;
    transition: 0.3s;
}

.brands_container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.brands_img:hover {
    opacity: 1;
}

@media (max-width: 715px) {
    .brands_container {
        display: grid;
    }
    #gif {
        width: 100%;
    }
}


.link {
    color: #00ff51;
}

.link:hover {
   color: rgb(255, 0, 0);
   transition: 0.5s ease;
}

.social-icon img {
    border: 2px solid var(--main-color);
    border-radius: 2rem;
    transition: 0.5s ease;
}
.social-icon img:hover {
    transform: scale(1.1);            
}

#newww {
   color: red;
}

#newwww {
    color: red;
}



.project-card .rating {
    position: absolute;
    top: 15px;
    padding: 6px;
    border-radius: 10px;
    color: #00ff51;
    transform: scale(1.1);
}

.project-card video {
    padding: 5px 5px;
    width: 320px;
}

.project-card .rating {
    display: flex;
    align-items: center;
    right: 15px;
    background: transparent;
}

.project-card .rating span { 
    color: rgb(255, 255, 255);
    font-size: 13px;
    font-weight: 500;
    margin-left: 5px;
}

.project-card i {
    font-size: 16px;
    display: block;
    --i-stroke-width: 50px;
}

.project-card:hover :is(.rating) {
    --scale: 1;
}



.modal {
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.3s ease-in-out;
    z-index: -1;

    display: flex;
    align-items: center;
    justify-content: center;
}

.modal.open {
    opacity: 1;
    z-index: 999;
}

.modal-inner {
    background-color: #000000d6;
    border-radius: 5px;
    box-shadow: 0 1px 4px rgba(4, 92, 4, 0.774);
    padding: 15px 25px;
    text-align: center;
    width: 450px;
    border: 2px solid #00ff51;
    box-shadow: 3px 3px 15px #00ff51;
}

.modal-inner h3 {
    margin: 0;
    color: rgb(254, 1, 1);
    font-size: 17px;
}

.modal-inner p {
    line-height: 24px;
    margin: 10px 0;
    color: whitesmoke;
    font-size: 15px;
}

button {
    background-color: gold;
    border-radius: 20px;
    border: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    color: rgb(0, 0, 0);
    padding: 10px 25px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    color: rgb(0, 0, 0);
    background-color: goldenrod;
}



#new {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-color);
    border: 2px solid red;
    border-radius: 3rem;
    gap: 2rem;
    padding: 5rem 2rem;
    overflow: hidden;
    box-shadow: 0 0 5px red;
    transition: 0.3s ease;
}
 #new:hover {
    box-shadow: 0 0 25px red,
                0 0 50px red;
    transform: scale(1.02);            
}

.project-card .resolucion {
    position: absolute;
    top: 10px;
    padding: 6px;
    border-radius: 10px;
}

.project-card .resolucion {
    left: 17px;
}

.project-card .resolucion {
    display: flex;
    align-items: center;
    left: 18px;
}
.project-card .resolucion span {
    color: rgb(255, 0, 0);
    font-size: 18px;
    font-weight: var(--fw-4);
    margin-left: 2px;
}




#snackbar {
  visibility: hidden; 
  min-width: 230px; 
  margin-left: -122px; 
  background-color: #000000; 
  color: #00ff51; 
  text-align: center;
  border-radius: 7px; 
  padding: 16px; 
  position: fixed; 
  z-index: 1000; 
  left: 50%; 
  bottom: 30px; 
  font-size: 17px;
  font-weight: 600;
  border: 2px solid #00ff51;
}


#snackbar.show {
  visibility: visible; 
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}


@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}







.callout {
  position: fixed;
  bottom: 90px;
  right: 20px;
  margin-left: 20px;
  max-width: 300px;
  z-index: 999;
}


.callout-header {
  padding: 25px 15px;
  background: rgba(0, 0, 0, 0.79);
  font-size: 30px;
  color: #00ff51;
}


.callout-container {
  padding: 15px;
  background-color: #00ff51;
  color: black;
  font-size: 12px;
}


.closebtn {
  position: absolute;
  top: 5px;
  right: 15px;
  color: #00ff51;
  font-size: 30px;
}


.closebtn:hover {
  color: gold;
}




.accordion {
    max-width: 1170px;
    margin: auto;
    padding: 0 15px;
}

.containerr {
    position: relative;
    margin: 10px 20px;
}

.label {
    position: relative;
    padding: 10px;
    color: #000000;
    font-weight: bold;
    background-image: linear-gradient(to right, #00ff51,#5c8e05);
    font-size: 17px;
}

.label::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 27px;
}


.content {
    position: relative;
    background-color: green;
    overflow: auto;
    height: 0;
    transition: 0.5s;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.4);
    color: whitesmoke;
    font-size: 14px;
}

.containerr.active .content {
    height: 170px;
    padding: 10px;
}

.containerr.active .label::before {
    content: '';
    font-size: 27px;
}

.containerr .content #download i {
    color: #00ff51;
    font-size: 30px;
    margin-left: 1rem;
    transition: 0.4s ease-in-out;
}

.containerr .content #download i:hover {
    transform:rotate(87deg);
    font-size: 30px;
}

.containerr .content #pp {
    color: whitesmoke;
    font-size: 17px;
    text-align: center;
}

.container-about {
    border: 2px solid #00ff51;
    margin: 25px;
    border-radius: 15px;
}

.container-about .par {
    padding: 19px;
    color: whitesmoke;
    font-size: 13px;
}

.container-about .par .pp {
    color: #00ff51;
    font-weight: 700;
    font-size: 19px;
}

.container-about .par .pp1 {
    color: #00ff51;
    font-weight: 700;
    font-size: 23px;
}

.container-about .par .line {
    border-bottom: 1px solid #00ff51;
    margin-top: 2rem;
}

#gif {
    border: 2px solid #00ff51;
    padding: 5px 5px;
}



/* news*/

.blog-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0px;
    flex-wrap: wrap;
}

.blog-box {
    width: 350px;
    background-color: #000000;
    border: 1px solid #00ff51;
    margin: 20px;
    box-shadow: 2px 2px 17px #00ff51;
}

.blog-img {
    width: 100%;
    height: auto;
}

.blog-img video {
    padding: 5px 5px;
    width: 350px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    padding: 5px 5px;
}

.blog-text {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.blog-text p {
    margin-top: 5px;
    font-size: 12px;
}

.blog-text span {
    color: whitesmoke;
    font-size: 1.2rem;
}

.blog-text .blog-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: gold;
    margin-top: 5px;
}

.blog-text #more {
    display: none;
}

.modal-inner #linki {
    text-decoration: underline;
    color: #00ff51;
    font-size: 15px;
}

.blog-text #linki {
    text-decoration: underline;
    color: #00ff51;
}

@media (max-width: 1250px){
    .blog-box {
        width: 300px;
    }
}

@media (max-width: 1100px){
    .blog-box {
        width: 70%;
    }
    .blog-img video {
       width: 100%;
    }
}

@media (max-width: 550px){
    .blog-box {
        width: 100%;
        margin: 20px 10px;
    }
}




.count {
    padding: 50px 0;
}

.count h3 {
    color: var(--text-color);
    text-align: center;
    font-size: 17px;
    color: #00ff51;
    display: grid;
}

.count .num {
    padding: 5px;
    color: gold;
    margin-top: 1rem;
    font-size: 20px;
}



.loader {
    position: fixed;
    top: 0;
    left: 0;
    background: #000000;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.disppear {
    animation: cool 2s forwards;
}

@keyframes cool {
    100% {
        opacity: 0;
        visibility: hidden;
    }
}


@media (min-width: 412px) {
    .skills-content .progress h3 .num {
        font-size: 20px;
    }
}


.popup-container {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: grid;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    z-index: 1100;
}

.popup-container.active {
    opacity: 1;
    pointer-events: auto;
    transition: .4s ease;
} 

.popup-container .popup-box {
    width: 500px;
    background: black;
    border-radius: 7px;
    border: 2px solid #00ff51;
    padding: 7px;
    transform: scale(0);
}

.popup-container.active .popup-box {
    transform: scale(1);
    transition: .4s ease;
    transition-delay: .25s;
}

.popup-box p {
    color: whitesmoke;
    margin: 12px 0 20px;
    font-size: 17px;
}

.popup-box .line {
    border-bottom: 2px solid #00ff51;
}

.popup-box .green {
    color: #00ff51;
    font-size: 17px;
}

.popup-box #close-btnn {
    width: 100%;
    height: 45px;
    background: #00ff51;
    border-radius: 7px;
    border: none;
    outline: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    font-size: 17px;
    color: black;
    font-weight: 700;
}



.danger {
  border: 1px solid #00ff51;
  border-left: 6px solid #00ff51;
  width: 600px;
  height: 40px;
  text-align: center;
  align-items: center;
  font-size: 15px;
  border-radius: 7px;
  display: flex;
  padding: 7px;
  margin-left: 15px;
}

.danger strong {
    color: #00ff51;
    font-size: 18px;
}

@media screen and (max-width: 700px) {
    .danger {
        width: 360px;
        height: 90px;
    }
}



/*start*/


.open-button {
  background-color: black;
  color: #00ff51;
  padding: 16px 20px;
  border: 2px solid #00ff51;
  cursor: pointer;
  position: fixed;
  bottom: 23px;
  right: 28px;
  width: 150px;
}

.open-button:hover {
    background-color: black;
    color: gold;
    border: 2px solid gold;
}

.form-popup {
  display: none;
  position: fixed;
  bottom: 7px;
  right: 15px;
  border: 2px solid #00ff51;
  z-index: 9;
  border-radius: 15px;
  background-color: black;
}

.form-popup h1 {
    display: flex;
    font-size: 17px;
    padding: 10px;
}

.form-container {
  max-width: 300px;
  padding: 10px;
}


.form-container input[type=text] {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: 2px solid #00ff51;
  background: #000000;
  border-radius: 17px;
  color: whitesmoke;
}


.form-container input[type=text]:focus {
  background-color: #085c09;
  outline: none;
  color: whitesmoke;
}

.form-container input[type=number] {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: 2px solid #00ff51;
  background: #000000;
  border-radius: 17px;
  color: whitesmoke;
}


.form-container input[type=number]:focus {
  background-color: #085c09;
  outline: none;
  color: whitesmoke;
}



.input-group-2 textarea:focus {
    background-color: #085c09;
    color:whitesmoke;
}

.input-group-2 textarea {
    resize: none;
    background: black;
    border: 2px solid #00ff51;
    border-radius: 17px;
    padding: 15px;
    color: whitesmoke;
}


.btn-group {
    display: flex;
    gap: 1.5rem; 
}

.btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: black;
    margin-top: 1rem;
    border-radius: 9rem;
    border: 2px solid var(--main-color);
    font-size: 1.7rem;
    color: var(--main-color);
    font-weight: 600;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.btn:hover {
    background: black;
    border-radius: 9rem;
    border: 2px solid gold;
    font-size: 1.7rem;
    color: gold;
    cursor: pointer;
}

.btn-group .btn:nth-of-type(2) {
    background-color: rgba(0, 0, 0, 0.096);
    color: var(--main-color);
    border: 2px solid var(--main-color);
}
.btn-group .btn:nth-of-type(2):hover {
    background-color: black;
    color: red;
    border: 2px solid red;
}

/*end*/


/*categories*/


.category-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    justify-content: center;
    gap: 30px;
}

.category-card {
    background-image: url(bg13.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 17px 40px 17px;
    border: 2px solid #00ff51;
    flex: 1 1 300px;
    max-width: 350px;
    padding: 30px 25px;
    text-align: left;
    transition: 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
}

.icon {
    background: black;
    border: 2px solid #00ff51;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    border-radius: 10px 27px;
}

.icon img {
    width: 60px;
    height: 60px;
    border-radius: 10px 27px;
}

.icon4 {
    background: black;
    border: 2px solid #00ff51;
    width: 60px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    border-radius: 7px;
}

.icon4 img {
    width: 60px;
    height: 60px;
    border-radius: 7px;
}


.icon5 {
    background: transparent ;
    width: 85px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 9px;
    border-bottom: 3px solid #00ff51;
    border-radius: 7px;
}

.icon5 img {
    width: 100px;
    height: 110px;
    padding: 7px; 
}


.category-card h3 {
    font-size: 17px;
    align-items: center;
    text-align: center;
    color: #00ff51;
}




.category-card .rating {
    display: flex;
    background: none;
}

.category-card .rating span { 
    color: whitesmoke;
    font-size: 17px;
    font-weight: 500;
    margin-left: 5px;
}

.category-card i {
    font-size: 17px;
    display: block;
    --i-stroke-width: 50px;
    color: #00ff51;
}

.category-card:hover :is(.rating) {
    --scale: 1;
}


#btncentr {
    align-items: center;
    text-align: center;
    justify-content: center;
    margin-top: 7px;
}

/*categories*/






/*repetition*/


.standart3 {
    color: whitesmoke;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5rem;
}

@supports (background-clip: text) or 
(-webkit-background-clip: text) {}

.standart3 {
    background-image: 
    linear-gradient(
        to left,
        #00ff51,
        whitesmoke,
        whitesmoke,
        whitesmoke,
        whitesmoke,
        whitesmoke,
        whitesmoke,
        whitesmoke,
        #00ff51
    ) ;

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
    background-size: 200%;
    animation: animate 2s steps(7) infinite;
    animation: animate 2s linear infinite;
}

@keyframes animate {
    to {
        background-position: 200%;
    }
}


.repetition-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    place-items: center;
    gap: 3rem;
    row-gap: 5rem;
}


.repetition-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-color);
    border: 2px solid var(--main-color);
    border-radius: 3rem;
    gap: 2rem;
    padding: 5rem 2rem;
    overflow: hidden;
    box-shadow: 0 0 5px var(--main-color);
    transition: 0.3s ease;
}

.repetition-card:hover {
    transform: scale(1.02);            
}

.repetition-card img {
   max-width: 250px;
   border-radius: 2rem;
   object-fit: cover; 
}


.repetition-card .rating {
    display: flex;
    align-items: center;
    right: 15px;
    background: #000000;
}

.repetition-card .rating span { 
    color: #00ff51;
    font-size: 13px;
    font-weight: 500;
    margin-left: 5px;
}

.repetition-card i {
    font-size: 27px;
    display: block;
    --i-stroke-width: 50px;
}

.repetition-card:hover :is(.rating) {
    --scale: 1;
}

.repetition-card .rating {
    position: absolute;
    top: 15px;
    padding: 6px;
    border-radius: 10px;
    color: #00ff51;
    transform: scale(1.1);
}




/*banner*/


.banner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-color);
    border: 2px solid var(--main-color);
    border-radius: 3rem;
    gap: 2rem;
    padding: 5rem 2rem;
    overflow: hidden;
    box-shadow: 0 0 5px var(--main-color);
    height: 450px;
    width: 350px;
    transition: 0.3s ease;
}

.banner-card:hover {
    box-shadow: 0 0 27px var(--main-color);
    transform: scale(1);             
}


.banner-card img {
   max-width: 250px;
   border-radius: 2rem;
   margin-bottom: -20px;
}

.banner-card .standart {
    font-size: 12px;
    margin-bottom: -17px;
}

.closebtn2 {
  position: absolute;
  top: 2px;
  right: 20px;
  color: #00ff51;
  font-size: 33px;
}


.closebtn2:hover {
  color: gold;
}

.btn7 {
    display: inline-block;
    padding: 1rem 2rem;
    background: black;
    margin-top: 7px;
    border-radius: 9rem;
    border: 2px solid var(--main-color);
    font-size: 1.3rem;
    color: var(--main-color);
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.btn7:hover {
    background: black;
    border-radius: 9rem;
    border: 2px solid gold;
    font-size: 1.5rem;
    color: gold;
}

.banner-card h3 {
    font-size: 1.7rem;
    color: rgb(17, 252, 0);
}




