* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* 🚫 Prevent horizontal scroll */
  width: 100%;
}

html {
  font-size: 100%;
}
body {
  cursor: url('../images/Normal.svg'),auto; 
  font-size: 15px;
  font-size: 0.9375rem;
  font-family: "Open sans", Helvetica, Arial, sans-serif;
  color: #666666;
  
  padding: 0;
}
/**************************************/

/**************************************/
/* #back-to-top-btn{
  display: none;
  position:fixed;
  bottom:20px;
  right:20px;
  font-size: 26px;
  width: 50px;
  height: 50px;
  background-color: #fff;
  color:#333;
  cursor: pointer;
  outline:none;
  border:3px solid #333;
  border-radius: 50%;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  transition-property: background-color, color;
} */
 .hover-underline {
  position: relative;
  display: inline-block;
}

.hover-underline::before,
.hover-underline::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  /* background: linear-gradient(to right, #ff0000, #00ffff); */
  /* background: linear-gradient(to right, #00f2ff, #00ffc3); */
  /* background: linear-gradient(to right, #001f3f, #00b8a9); */
  background: linear-gradient(to right, #00f2ff, #00ffc3);
  transform: scaleX(0);
  transition: transform 0.4s ease-out;
}

.hover-underline::before {
  top: 0;
  left: 0;
  transform-origin: left;
}

.hover-underline::after {
  bottom: 0;
  left: 0;
  transform-origin: right;
}

.hover-underline:hover::before,
.hover-underline:hover::after {
  transform: scaleX(1);
}

 #back-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #ffffffcc;
  border: 2px solid #333;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.3s ease;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#back-to-top-btn img {
  width: 60%;
  height: auto;
  pointer-events: none;
}

#back-to-top-btn.show {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1.1);
}

#back-to-top-btn:hover {
  transform: scale(1.2);
  background-color: #f0f0f0;
}

@media (max-width: 600px) {
  #back-to-top-btn {
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 15px;
  }

  #back-to-top-btn img {
    width: 65%;
  }
}

.tictac{
  display: flex;
  align-items: center;
  justify-content: center;
}
/* #back-to-top-btn:hover, #back-to-top-btn:focus{
  background-color: #f6f6f6;
  opacity: .5;
  color:#fff;
} */
.reveal{
  position: relative;
  transform: (150px);
  opacity: 0;
  transition: all 3s ease;
}
.reveal.active{
  transform: translateY(0px);
  opacity: 1;
}
.lkow {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s, transform 0.5s;
}

.lkow.show {
  opacity: 1;
  transform: none;
}

.twak1 {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.5s, transform 0.5s;
}
.message {
  text-align: center;
  font-size: 18px;
  margin-top: 200px;
}
.conto {
  position: sticky;
  /* border: 1px solid black; */
  padding: 20px;
}

.righto {
  position: sticky;
  top: 0;
  right: 0;
  position: sticky;
  top: 0;
  float: right;
  /* width: 200px; /* Adjust the width as needed */
}
.textotalko{
  text-align: center;
  font-size: smaller;
}

/* skillsko */
.skills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 40px 20px;
  overflow-x: hidden;
}

.contantootiner {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 125px;
  min-width: 110px;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 10px 5px;
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.08); */
  transition: transform 0.3s ease;
}

.contantootiner:hover {
  transform: scale(1.06);
}

.circular-progress {
  position: relative;
  height: 105px;
  width: 105px;
  border-radius: 50%;
  background: conic-gradient(#c6c6c6 3.6deg, #ededed 0deg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.circular-progress::before {
  content: "";
  position: absolute;
  height: 84px;
  width: 84px;
  border-radius: 50%;
  background-color: #fff;
  /* box-shadow: inset 0 0 15px #FFD700; 🌟 Golden inner glow */
}
.circular-progress:hover::before {
  animation: glow-pulse 1.5s ease-in-out infinite;
  transform: scale(1.05);
  /* box-shadow: inset 0 0 18px #FFD700; */
  transition: box-shadow 0.3s ease;
}

.circular-progress:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #00adb5;
}
.circular-progress {
  transition: transform 0.3s ease, box-shadow 0.4s ease;
}
@keyframes glow-pulse {
  0%, 100% {
    box-shadow: inset 0 0 2px #FFD700;
  }
  50% {
    box-shadow: inset 0 0 10px #FFD700;
  }
}




.circular-progress::before {
  content: "";
  position: absolute;
  height: 84px;
  width: 84px;
  border-radius: 50%;
  background-color: #fff;
  z-index: 0;
}

.progress-value {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  z-index: 1;
}

.textooooit {
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
  color: #333;
  text-align: center;
}

/* skillsko */
.contento {
  display: block;
}
@media (max-width: 1200px) {
  .contantootiner,
  .contantootiner1 {
    flex: 0 0 calc(100% / 5 - 16px); /* 5 per row */
  }
}

@media (max-width: 992px) {
  .contantootiner,
  .contantootiner1 {
    flex: 0 0 calc(100% / 4 - 16px); /* 4 per row */
  }
}

@media (max-width: 768px) {
  .contantootiner,
  .contantootiner1 {
    flex: 0 0 calc(100% / 3 - 16px); /* 3 per row */
  }
}

@media (max-width: 576px) {
  .contantootiner,
  .contantootiner1 {
    flex: 0 0 calc(100% / 2 - 16px); /* 2 per row */
  }
}

/* @media only screen and (max-width: 767px) {
  .contento {
    display: none;
  }
} */
.twak1.show {
  opacity: 1;
  transform: translateX(0);
}

.tapper1 {
  margin-left: auto;
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.5s, transform 0.5s;
}

.tapper1.show {
  opacity: 1;
  transform: translateX(0);
}

.tapper1{
  /* margin:  auto;
  width: auto; */
  float: right;
  margin-left: auto;
  align-content: right;
  align-self: right;
  text-align: right;
  /* border: 3px solid #c6c6c6;
  border-radius: 10px; */
}
.twak2 {
  align-items: right;
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.5s, transform 0.5s;
}

.twak2.show {
  opacity: 1;
  transform: translateX(0);
}

.tapper2 {
  opacity: 0;
  margin-left: auto;
  transform: translateX(100px);
  transition: opacity 0.5s, transform 0.5s;
}

.tapper2.show {
  opacity: 1;
  margin-left: auto;
  transform: translateX(0);
}

.tapper2{
  margin-left: auto;
  /* margin:  auto;
  width: auto; */
  float: right;
  align-items: right;
  align-content: right;
  align-self: right;
  text-align: right;
  /* border: 3px solid #c6c6c6;
  border-radius: 10px; */
}
.twak3 {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.5s, transform 0.5s;
}

.twak3.show {
  opacity: 1;
  transform: translateX(0);
}

.tapper3 {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.5s, transform 0.5s;
}

.tapper3.show {
  opacity: 1;
  transform: translateX(0);
}

.tapper3{
  /* margin:  auto;
  width: auto; */
  float: right;
  align-items: right;
  align-content: right;
  align-self: right;
  text-align: right;
  /* border: 3px solid #c6c6c6;
  border-radius: 10px; */
}
.twak4 {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.5s, transform 0.5s;
}

.twak4.show {
  opacity: 1;
  transform: translateX(0);
}

.tapper4 {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.5s, transform 0.5s;
}

.tapper4.show {
  opacity: 1;
  transform: translateX(0);
}

.tapper4{
  /* margin:  auto;
  width: auto; */
  float: right;
  align-items: right;
  align-content: right;
  align-self: right;
  text-align: right;
  /* border: 3px solid #c6c6c6;
  border-radius: 10px; */
}
.twak5 {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.5s, transform 0.5s;
}

.twak5.show {
  opacity: 1;
  transform: translateX(0);
}

.tapper5 {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.5s, transform 0.5s;
}

.tapper5.show {
  opacity: 1;
  transform: translateX(0);
}

.tapper5{
  /* margin:  auto;
  width: auto; */
  float: right;
  align-items: right;
  align-content: right;
  align-self: right;
  text-align: right;
  /* border: 3px solid #c6c6c6;
  border-radius: 10px; */
}
.twak6 {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.5s, transform 0.5s;
}

.twak6.show {
  opacity: 1;
  transform: translateX(0);
}

.tapper6 {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.5s, transform 0.5s;
}

.tapper6.show {
  opacity: 1;
  transform: translateX(0);
}

.tapper6{
  /* margin:  auto;
  width: auto; */
  float: right;
  align-items: right;
  align-content: right;
  align-self: right;
  text-align: right;
  /* border: 3px solid #c6c6c6;
  border-radius: 10px; */
}
.video-player {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}



.video-container {
  position: relative;
  cursor: pointer;
}

.video-image {
  width: 100%;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 48px;
  z-index: 1;
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.5s ease-in-out;
  z-index: 9999;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.exit-theater {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  animation: slideIn 0.3s ease-in-out;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

#video {
  width: 90%;
  max-width: 800px;
  animation: fadeIn 0.5s ease-in-out;
}



.topspace {
  margin-top: 40px;
}
/*******************************************/



  /* body {
    margin: 0;
    padding: 0;
  } */

  .navbar-upgrade {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding-top: 2%;
    top: 0;
    z-index: 999;
  }

  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 5px;
    padding-right: 5px;
    display: flex;
    justify-content: center; /* stays same */
    align-items: center;
    flex-wrap: wrap;
    text-align: center; /* ensures centering of inline content */
  }

  .nav-logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: #444;
    padding-bottom: 2%;
    padding-left: 2%;
	display:none;
  }
.nav-logo img{
  height: 62px;
  
}
  .nav-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
  }

  .nav-menu {
    display: flex;
    gap: 10px;
    list-style: none;
    align-items: center;
    transition: all 0.3s ease;
  }

  .nav-item {
    position: relative;
    width: 120px;
    height: 60px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    cursor: pointer;
    transition: 0.4s;
  }
  .nav-itemi {
    position: relative;
    width: 180px;
    height: 60px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    cursor: pointer;
    transition: 0.4s;
  }

  .nav-item::before,
  .nav-item::after,
  .nav-itemi:before,
  .nav-itemi:after {
    content: "";
    position: absolute;
    border-radius: 60px;
    background: linear-gradient(45deg, var(--i), var(--j));
    opacity: 0;
    transition: 0.4s;
    z-index: -1;
  }

  .nav-item::before, .nav-itemi::before {
     content: "";
  position: absolute;
  inset: 0;
  border-radius: 60px;
  background: linear-gradient(45deg, var(--i), var(--j));
  opacity: 0;
  z-index: 0;
  transition: 0.4s;
  }

  .nav-item::after, .nav-itemi::after  {
    top: 10px;
    width: 100%;
    height: 100%;
    filter: blur(50px);
  }

  .nav-link {
   position: relative;
  z-index: 1; /* keeps text above the background fill */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  border-radius: 60px; /* matches parent shape */
  transition: color 0.3s ease;
  }

  .nav-icon {
     display: none;
    font-size: 1.5rem;
    vertical-align: middle;
  }

  .nav-item.active .nav-icon,
  .nav-item:hover .nav-icon,
  .nav-itemi.active .nav-icon,
  .nav-itemi:hover .nav-icon {
    display: inline-flex;
    color: #000000;
  }

  .nav-item.active::before,
  
  .nav-itemi.active::before
   {
    background: #c6c6c6;
    opacity: 0.8;
  }
.nav-item:hover::before,
.nav-itemi:hover::before{
  background: linear-gradient(45deg, var(--i), var(--j));

  opacity: 1;
}
  .nav-item.active::after,
  .nav-item:hover::after,
  .nav-itemi.active::after,
  .nav-itemi:hover::after {
    opacity: 0.5;
  }

  .nav-item.active .nav-link,
  .nav-item:hover .nav-link,
  .nav-itemi.active .nav-link,
  .nav-itemi:hover .nav-link {
    color: #000000;
  }

  .nav-title {
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

 @media (max-width: 860px) {
  .nav-container {
    justify-content: space-between; /* fixes cramped alignment */
    flex-direction: row;
  }

  .nav-toggle {
    display: block;
    background: none;
    border: none;
    margin-left: auto;
    padding-right: 2%;
  }

  .nav-logo {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
    display: none;
    padding-top: 10px;
    align-items: center;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-item,
  .nav-itemi {
    width: 100%;
    justify-content: center;
  }
}



/****************************/
/*********************************************************************


                            Navigation in header


**********************************************************************/
.header{
  align-items: center;
}
.navbar {
  border-width: 1px 0;
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
  width: 100%;
}
.navbar.stick {
  position: fixed;
  top: 0;
  left: 0;
  opacity: .85;
}
.navbar-collapse {
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
  font-family: "Open sans", Helvetica, Arial, sans-serif;
  font-weight: 300;
  text-transform: uppercase;
}
.navbar-collapse .navbar-nav {
  float: none;
  margin: 0 auto;
  text-align: center;
  
}
.navbar-collapse .navbar-nav > li {
  float: none;
  display: inline-block;
}
.navbar-collapse .navbar-nav > li > a {
  padding: 20px 30px;
}
.dropdown ul.dropdown-menu {
  top: 85%;
  text-align: left;
}
.dropdown ul.dropdown-menu > li > a {
  padding: 5px 30px;
}
.navbar-default {
  background-color: #ffffff;
  border-color: #cccccc;
}
.navbar-default .navbar-nav > li > a {
  color: #454545;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #000000;
  background-color: #ffffff;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #000000;
  background-color: #ffffff;
}
.navbar-default .dropdown ul.dropdown-menu > li > a {
  color: #454545;
}
.navbar-default .dropdown ul.dropdown-menu > li > a:hover {
  background-color: #eeeeee;
  color: #000000;
}
.navbar-default .navbar-toggle {
  /* position:absolute; */
  border-color: #666666;
  flex-direction:column;
  justify-content: space-between;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #ffffff;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #333333;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #cccccc;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  background-color: #ffffff;
  color: #000000;
}
@media (max-width: 768px) {
  .navbar-collapse .navbar-nav > li {
    display: block;
    width: 100%;
    text-align: center; /* or center if you prefer */
  }
}

/****************************************************************************************


                                     Sidebar special Nav


*****************************************************************************************/
.nav-side {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: -0.37em;
}
.nav-side > li > a {
  padding-top: 5px;
  padding-bottom: 5px;
  color: #f392b4;
}
.nav-side > li > a:hover {
  color: #bd1550;
  background: none;
}
.nav-side > li.active > a {
  color: #bd1550;
}
@media (max-width: 768px) {
  .navbar-header {
    display: block;
  }
}

/*********************************************************************


                                TYPOGRAPHY


**********************************************************************/
p {
  line-height: 1.6em;
  margin: 0 0 30px 0;
}
ul,
ol {
  line-height: 1.6em;
  margin: 0 0 30px 0;
}
blockquote {
  padding: 10px 20px;
  margin: 0 0 30px;
  border-left: 5px solid #eee;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Open sans", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #333333;
}
h1 {
  font-size: 40px;
  font-size: 2.5rem;
}
h2 {
  font-size: 36px;
  font-size: 2.25rem;
}
h3 {
  font-size: 30px;
  font-size: 1.875rem;
}
h4 {
  font-size: 24px;
  font-size: 1.5rem;
}
h5 {
  font-size: 20px;
  font-size: 1.25rem;
}
a {
  color: #000;
}
.lead {
  font-weight: 300;
  font-size: 21px;
  font-size: 1.3125rem;
}
.text-msg {
  line-height: 1.7em;
  color: #b3b3b3;
  font-weight: 300;
  text-transform: capitalize;
  margin-top: -0.23em;
}
.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}
/*********************************************************************


                                HEADER


**********************************************************************/
#head {
  background:url(../images/bg_head.jpg) top center;
  background-size: cover;
  width: auto;
  color: #7C7C7C;
  padding: 30px 0 35px 0;
}
#head img.img-circle {
  display: block;
  width: 140px;
  height: 140px;
  overflow: hidden;
  border: 9px solid rgba(0, 0, 0, 0.05);
  margin: 0 auto;
}
#head .title {
  font-family: Alice, Georgia, serif;
  font-size: 49px;
  font-size: 3.0625rem;
}
#head .title a {
  text-decoration: none;
  color: #333333;
}
#head .tagline {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2em;
  color: #7C7C7C;
  margin: 5px 0 0;
}
#head .tagline b {
  font-weight: normal;
}
#head .tagline a {
  color: #5E5E5E;
}
.home #head {
  padding: 90px 0;
}
.home #head .title {
  font-size: 49px;
  font-size: 3.0625rem;
}
.home #head .tagline {
  font-size: 16px;
  font-size: 1rem;
  margin: 15px 0 0;
}
/*********************************************************************


                                CONTENT


**********************************************************************/
img {
  max-width: 100%;
}
.btn {
  font-size: 12px;
  font-size: 0.75rem;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333;
  -webkit-border-radius: 0px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0px;
  -moz-background-clip: padding;
  border-radius: 0px;
  background-clip: padding-box;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  border: 0 none;
  padding: 12px 35px;
  text-shadow: 0 1px 0px #780d33;
}
.btn-primary {
  color: #fff;
  background-color: #bd1550;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
  color: #fff;
  background-color: #e61f65;
}
.btn-action {
  font-weight: bold;
  background: transparent!important;
  border: 1px solid #333;
  text-shadow: none;
}
.btn-action:hover,
.btn-action:focus,
.btn-action:active,
.btn-action.active {
  color: #bd1550;
  border-color: #bd1550;
}
.btn-lg {
  padding: 15px 60px;
  font-size: 12px;
  line-height: 1.33;
  font-weight: bold;
}
.panel-cta {
  box-shadow: 0 0 0 1px #e1e1e1, 0 0 0 3px #fff, 0 0 0 4px #e1e1e1;
  background: #f3f3f3;
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
  float:center;
}
.panel-cta p,
.panel-cta h3,
.panel-cta h4,
.panel-cta h5,
.panel-cta h6 {
  margin: 0;
  float:center;
}
.panel-cta .panel-body {
  width: 100%;
  /* padding: 35px; */
  float:center;
}
/* Section - Featured */
.featured {
  font-size: 13px;
  font-size: 0.8125rem;
}
.featured h3 {
  font-weight: bold;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 1.4em;
  vertical-align: middle;
  margin: 0 0 25px 0;
}
/* Section - Recent works */
.thumbnails {
  padding: 0;
}
.thumbnails li {
  margin-bottom: 30px;
}
.thumbnails .details {
  display: block;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
}
.thumbnail {
  display: block;
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
  border: 0 none;
  margin-bottom: 10px;
  padding: 0;
  text-align: center;
  text-decoration: none;
  color: #333;
}
.thumbnail .img {
  display: block;
  width: 100%;
  overflow: hidden;
  height: 180px;
  margin: 0 0 20px;
  position: relative;
}
.thumbnail .title {
  text-transform: uppercase;
  margin: 0 2em;
  display: block;
  text-indent: 0;
}
.thumbnail .cover {
  position: absolute;
  display: block;
  opacity: 0;
  width: 100%;
  height: 180px;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 550ms;
  -moz-transition-duration: 550ms;
  -o-transition-duration: 550ms;
  transition-duration: 550ms;
}
.thumbnail .cover .more {
  position: absolute;
  bottom: 15px;
  right: 0;
  height: 32px;
  line-height: 32px;
  padding: 0 20px;
  -webkit-border-radius: 1px 0 0 1px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 1px 0 0 1px;
  -moz-background-clip: padding;
  border-radius: 1px 0 0 1px;
  background-clip: padding-box;
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  text-shadow: 0 1px 0px #780d33;
  background: #bd1550;
  color: white;
}
.thumbnail img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.thumbnail:hover {
  color: #333;
  text-decoration: none;
}
.thumbnail:hover img {
  -webkit-filter: saturate(0%);
}
/* porjec */
:root{
  --bg-color: #c6c6c6;
  --second-bg-color: #c6c6c6;
  --text-color:#fff;
  --main-color:#ad1f1f;
}
/* kjk */
.btnsoibl2{
  /* margin-top: 20px;
  margin-bottom: 5px; */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  
  
}
.btnsoibl2 buttonoibl2{
  background: #8f3232;
  width: 100%;
  padding: 1px -8px;
  outline: none;
  border: 3.5px solid #000000;
  border-radius: 5px;
  cursor: pointer;
  font-size: 25px;
  font-weight: 400;
  color: #ffffff;
  font-family: Castellar;
  transition: all 0.3s linear;
  /* box-shadow: inset 4px 4px 6px -1px rgba(198, 198, 198, 0.15), inset -4px -4px 6px -1px rgba(83, 80, 80, 0.7), -0.5px -0.5px 0px rgba(73, 67, 67, 0.15), 0.5px 0.5px 0px rgba(83, 80, 80, 0.7), 0px 12px 10px -10px rgba(83, 80, 80, 0.7); */
}
.btnsoibl2:hover buttonoibl2{
  background: #000000;
  width: 100%;
  padding: 1px -8px;
  outline: none;
  border: 3.5px solid #4625b5;
  border-radius: 5px;
  cursor: pointer;
  font-size: 25px;
  font-weight: 400;
  color: #ffffff;
  /* font-family: Century Gothic; */
  transition: all 0.3s linear;
  box-shadow: inset 4px 4px 6px -1px rgba(198, 198, 198, 0.15), inset -4px -4px 6px -1px rgba(83, 80, 80, 0.7), -0.5px -0.5px 0px rgba(73, 67, 67, 0.15), 0.5px 0.5px 0px rgba(83, 80, 80, 0.7), 0px 12px 10px -10px rgba(83, 80, 80, 0.7);
}
.btnsoibl2 buttonoibl2{
  background: #898585;
  margin-right: 0px;
}

/* kjka */
.portfolio{
  max-width: 1080px;
  align-items: center;
  justify-content: center;
  margin: auto;
  /* background: var(--second-bg-color); */
  /* box-shadow: 6px 6px 10px -1px rgba(73, 67, 67, 0.15), -6px -6px 10px -1px rgba(83, 80, 80, 0.7);
  box-shadow: inset 4px 4px 6px -1px rgba(198, 198, 198, 0.15), inset -4px -4px 6px -1px rgba(83, 80, 80, 0.7), -0.5px -0.5px 0px rgba(73, 67, 67, 0.15), 0.5px 0.5px 0px rgba(83, 80, 80, 0.7), 0px 12px 10px -10px rgba(83, 80, 80, 0.7); */
}
.portfolio-container{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  align-items: center;
  justify-content: center;
  gap: 1rem;
  /* box-shadow: 6px 6px 10px -1px rgba(73, 67, 67, 0.15), -6px -6px 10px -1px rgba(83, 80, 80, 0.7); */
  /* box-shadow: inset 4px 4px 6px -1px rgba(198, 198, 198, 0.15), inset -4px -4px 6px -1px rgba(83, 80, 80, 0.7), -0.5px -0.5px 0px rgba(73, 67, 67, 0.15), 0.5px 0.5px 0px rgba(83, 80, 80, 0.7), 0px 12px 10px -10px rgba(83, 80, 80, 0.7); */
  
}
@media (max-width: 900px) {
  .portfolio-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* For mobile (less than 600px wide): 1 item per row */
@media (max-width: 600px) {
  .portfolio-container {
    grid-template-columns: 1fr;
  }
}
.portfolio-container .portfolio-box{
  position: relative;
  border-radius: 0.8rem;
  box-shadow: 0 0 0.4rem var(--bg-color);
  overflow: hidden;
  display: flex;
  box-shadow: 6px 6px 10px -1px rgba(73, 67, 67, 0.15), -6px -6px 10px -1px rgba(83, 80, 80, 0.7);
  /* box-shadow: inset 4px 4px 6px -1px rgba(198, 198, 198, 0.15), inset -4px -4px 6px -1px rgba(83, 80, 80, 0.7), -0.5px -0.5px 0px rgba(73, 67, 67, 0.15), 0.5px 0.5px 0px rgba(83, 80, 80, 0.7), 0px 12px 10px -10px rgba(83, 80, 80, 0.7); */
}
.portfolio-box img {
  width: 100%;
  transition: .5s ease;
}
.portfolio-box:hover img {
  transform: scale(1.1);
}

.portfolio-box .portfolio-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #191818;
  opacity: 0.6;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 1.6rem;
  transform: translateY(100%);
  transition: .5s ease;
}
.portfolio-box:hover .portfolio-layer {
  transform: translateY(0);
}
.portfolio-layer h4{
  font-size: 1.2rem;
  color: #fff;
}
.portfolio-layer p{
  font-size: 0.98rem;
  margin: .12rem 0 0.4rem;
  color: #fff;
}
.portfolio-layer a{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  background: #fff;
  border-radius: 50%;
}
.portfolio-layer a i {
  font-size: 0.8rem;
  /* color: #fff; */
}
/* porjec */
.thumbnail:hover .cover {
  opacity: 1;
}
/* pagination */
.pagination > li > a {
  color: #808080;
  border: 0 none;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Georgia, serif;
}
.pagination > li > a:hover {
  color: #000000;
  background: none;
}
.pagination > li.active > a {
  color: #333333;
  background: none;
}
.pagination > li.active > a:hover {
  color: #000000;
  background: none;
}
/*********************************************************************


                                 BLOG


**********************************************************************/
.section-title,
.entry-title {
  display: block;
  width: 100%;
  overflow: hidden;
  margin: 0px 0 25px;
  text-align: center;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 36px;
  font-size: 2.25rem;
  letter-spacing: 1px;
}
.section-title a,
.entry-title a {
  color: #333333;
}
.section-title span,
.entry-title span {
  display: inline-block;
  position: relative;
}
.section-title span:before,
.entry-title span:before,
.section-title span:after,
.entry-title span:after {
  content: ""; 
  position: absolute;
  height: 4px;
  top: .53em;
  width: 400%;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
}
.section-title span:before,
.entry-title span:before {
  right: 100%;
  margin-right: 45px;
}
.section-title span:after,
.entry-title span:after {
  left: 100%;
  margin-left: 45px;
}
.entry-header .entry-meta {
  text-align: center;
  font-family: Georgia, serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-style: italic;
  font-weight: normal;
  color: #a5a5a5;
  margin: 0 0 15px 0;
}
.entry-header .entry-meta a {
  color: #a5a5a5;
}
.entry-content {
  margin: 0 0 60px 0;
}
.entry-content h2 {
  line-height: 1.2;
  font-size: 30px;
  font-size: 1.875rem;
  padding-top: 20px;
  margin-bottom: 20px;
}
.meta-nav,
.more-link {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: bold;
  color: #666666;
  text-decoration: none;
}
.meta-nav:hover,
.more-link:hover {
  color: #333333;
  text-decoration: underline;
}
.more-link {
  display: block;
  width: 100%;
  text-align: right;
}
/* Posts navigation */
#nav-below {
  position: fixed;
  top: 48%;
}
#nav-below .meta-nav {
  display: block;
  padding: 27px 7px;
  background: #444;
  color: #fff;
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  border-radius: 3px;
  background-clip: padding-box;
  font-family: "Open sans", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
  opacity: 0.2;
}
#nav-below .meta-nav:hover {
  text-decoration: none;
  color: #333;
}
#nav-below .nav-next {
  position: fixed;
  right: -3px;
}
#nav-below .nav-previous {
  position: fixed;
  left: -3px;
}
#nav-below b {
  display: none;
}
footer.entry-meta {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  margin: 0 0 35px 0;
  padding: 2px 0;
  color: #888888;
  font-size: 12px;
  font-size: 0.75rem;
}
footer.entry-meta a {
  color: #333333;
}
footer.entry-meta .meta-in {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}
.page-header {
  padding-bottom: 0;
  margin: 0;
  border-bottom: none;
  text-align: left;
}
.page-header .page-title {
  margin-top: 0;
  margin-bottom: 30px;
}
/*********************************************************************


                                COMMENTS


**********************************************************************/
#comments {
  font-size: 13px;
  font-size: 0.8125rem;
}
#comments .comments-title {
  margin: 0 0 5px 0;
}
#comments .leave-comment {
  display: block;
  margin: 0 0 40px 0;
}
#comments ul,
#comments ol {
  margin: 0;
  padding: 0;
}
#comments .comment {
  margin: 0;
  padding: 0;
  list-style: none;
  clear: both;
}
#comments .comments-title {
  text-shadow: none;
  margin-bottom: 0;
}
#comments .avatar {
  float: left;
  width: 70px;
  height: 70px;
  margin-bottom: 30px;
  border: 5px solid #eeeeee;
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
}
#comments .children {
  margin: 0 0 0 90px;
}
#comments .comment-meta {
  margin: 0 0 0 90px;
}
#comments .comment-meta a {
  color: #333333;
}
#comments .comment-meta a:hover {
  color: #bd1550;
}
#comments .comment-meta .author {
  margin: 0 20px 0 0;
  font-weight: bold;
}
#comments .comment-meta .date {
  margin: 0 20px 0 0;
}
#comments .comment-meta .date a {
  color: #666666;
}
#comments .comment-meta .reply {
  float: right;
}
#comments .comment-body {
  margin: 0 0 35px 90px;
}
.comment-navigation {
  width: 100%;
  border-top: 1px solid #ccc;
  padding: 2px 0 0 0;
}
.comment-navigation .nav-content {
  border-top: 1px solid #ccc;
  width: 100%;
  padding: 10px 0 0 0;
}
.comment-navigation .nav-previous {
  float: left;
  width: 50%;
}
.comment-navigation .nav-next {
  float: right;
  width: 50%;
  text-align: right;
}
#respond {
  margin: 55px 0 0 0;
}
/*********************************************************************


                                FOOTER


**********************************************************************/
#footer {
  background: #232323;
  padding: 30px 0 0 0;
  font-size: 12px;
  color: #999;
}
#footer a {
  color: #ccc;
}
#footer a:hover {
  color: #fff;
}
#footer h3.widget-title {
  font-size: 15px;
  font-size: 0.9375rem;
  text-transform: uppercase;
  color: #ccc;
  margin: 0 0 20px;
}
#underfooter {
  background: #191919;
  padding: 15px 0;
  color: #777;
  font-size: 12px;
}
#underfooter a {
  color: #aaa;
}
#underfooter a:hover {
  color: #fff;
}
#underfooter p {
  margin: 0;
}
/* Social Icon Container */
.follow-me-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 50px 0; */
}

.social-icons {
  display: flex;
  gap: 17px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.social-icons li a {
  width: 40px;
  height: 40px;
  background-color: #c6c6c6;
  text-align: center;
  line-height: 35px;
  font-size: 28px;
  display: block;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 3px solid #fff;
  z-index: 1;
  transition: transform 0.3s;
}

.social-icons li a .icon {
  color: #262626;
  z-index: 3;
  position: relative;
  transition: 0.5s;
}

.social-icons li a:hover .icon {
  color: #fff;
  transform: rotateY(360deg);
}

.social-icons li a::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 40px;
  height: 40px;
  transition: 0.5s;
  z-index: 2;
}

/* Hover background colors */
.social-icons li:nth-child(1) a::before {
  background: #3b5999; /* Facebook */
}
.social-icons li:nth-child(2) a::before {
  background: #55acee; /* Twitter */
}
.social-icons li:nth-child(3) a::before {
  background: #0077b5; /* LinkedIn */
}
.social-icons li:nth-child(4) a::before {
  /* background: #e4405f; Instagram */
  background: linear-gradient(
    to right,
    #833ab4,#fd1d1d,#fcb045
  );
}

.social-icons li a:hover::before {
  top: 0;
}

/* .follow-me-icons i {
  float: center;
  margin: 0 10px 0 0;
} */
/* Max page width
/////////////////////////////////////////////////////////////////////*/
@media (min-width: 1200px) {
  .container {
    max-width: 1080px;
  }
}
/* Default: for screens wider than 621px (your original) */
.ghuma {
  position: relative;
  width: 470px;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 50px;
}
.ghuma span {
  position: absolute;
  top: 0;
  left: 0;
  width: 470px;
  height: 480px;
  border: 7.5px solid #00f5d4;
  border-radius: 38% 63% 63% 37% / 41% 44% 56% 59%;
  transition: 0.5s;
  background-color: #0a0a23;
}
.ghuma span:nth-child(1) {
  animation: animate 6s linear infinite;
}
.ghuma:hover span:nth-child(1) {
  border: 15px solid #fcbf49;
  background-color: #ffecd1;
  animation: animate 6s linear infinite alternate-reverse;
}
.ghuma span:nth-child(2) {
  animation: animate 4s linear infinite;
}
.ghuma:hover span:nth-child(2) {
  border: 15px solid #fcbf49;
  background-color: #ffecd1;
  animation: animate 4s linear infinite alternate-reverse;
}
.ghuma span:nth-child(3) {
  animation: animate2 10s linear infinite;
}
.ghuma:hover span:nth-child(3){
  border: 15px solid #fcbf49;
  background-color: #ffecd1;
  animation: animate2 10s linear infinite alternate-reverse;
}
.ghuma:hover .content {
  color: #000000;
}

@keyframes animate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes animate2 {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

.vitra {
  background-color: #ffffff;
  width: 100px;
  margin: 10px auto 0;
  padding: 5px;
  border: 2px solid #560bad;
  transition: 0.3s;
}
.vitra:hover {
  background-color: #f77f00;
  width: 150px;
}

.content {
  position: relative;
  padding: 40px 60px;
  z-index: 1000;
  text-align: center;
  color: #fefae0;
}
.content:hover {
  color: #000000;
}

/* ✅ Responsive override: 621px and below */
@media screen and (max-width: 621px) {
  .ghuma {
    width: 100%;
    height: auto;
    aspect-ratio: 47 / 48;
    padding: 5vw;
  }

  .ghuma span {
    width: 100%;
    height: 100%;
  }

  .content {
    padding: 4.25vw;
  }

  .vitra {
    width: 80px;
  }

  .vitra:hover {
    width: 120px;
  }
}

/* .ghuma{
  position: relative;
  width: 90vw;
  max-width: 470px;
  height: auto;
  aspect-ratio: 47/48;
  display: flex;
  justify-content: center;
  align-items:center;
  margin:0 auto;
  padding: 5vw;
}
.ghuma span:nth-child(1){
  position: absolute;
  top: 0;
  left: 0;
  width:100%;
  height:100%;
  border: 7.5px solid darkgray;
  border-radius: 38% 63% 63% 37% / 41% 44% 56% 59%;
  transition: 0.5s;
  animation: animate 6s linear infinite;
  background-color: lightgrey;
}
.ghuma:hover span:nth-child(1){
  border:none;
  background-color: darkgray;
  border: 15px solid lightgray;
  animation: animate 6s linear infinite alternate-reverse;
}
.ghuma span:nth-child(2){
  position: absolute;
  top: 0;
  left:0;
  width:470px;
  height:480px;
  border: 7.5px solid darkgray;
  border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  transition: 0.5s;
  animation: animate 4s linear infinite;
  background-color: lightgrey;
}
.ghuma:hover span:nth-child(2){
  border:none;
  background-color: darkgray;
  border: 15px solid lightgray;
  animation: animate 4s linear infinite alternate-reverse;
}
.ghuma span:nth-child(3){
  position: absolute;
  top: 0;
  left:0;
  width: 470px;
  height:480px;
  border: 7.5px solid darkgray;
  border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  transition: 0.5s;
  animation: animate2 10s linear infinite;
  background-color: lightgrey;
}
.ghuma:hover span:nth-child(3){
  border:none;
  background-color: darkgray;
  border: 15px solid lightgray;
  animation: animate2 10s linear infinite alternate-reverse;
}
@keyframes animate{
  0%{
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(360deg);
  }
}
@keyframes animate2{
  0%{
    transform: rotate(360deg);
  }
  100%{
    transform: rotate(0deg);
  }
}
.content{
  position:relative;
  padding:5vw;
  transition: 0.5s;
  z-index:1000;
  text-align: center;
}

.vitra{
  background-color: darkgray;
  width: 100px;
  border: 2px solid black;
  margin: 0 auto;
  
}
.vitra:hover{
  background-color: rgb(131, 130, 130);
  width: 150px;
  align-items: center;
  border: 2px solid black;
  margin: 0 auto;
  justify-content: center;
  
}

.content{
  position: relative;
  
}
.content :hover{
  color:#fff;
} */
/*cursor*/

/*cursor*/
/******** Back to Top CSS *********/
/*
.back-to-top {
  position:fixed;
  bottom:800px;
  right:40px;
  width:60px;
  height:60px;
  background-color: #fff (up.png);
  border-radius:50%;
  background-size:40px;
  background-position:center;
  background-repeat: no-repeat;
  cursor:pointer;
  z-index: 100000;
  visibility: hidden;
  opacity: 0;
  transition: 0.5$;

}
.back-to-top.active{
  bottom:40px;
  visibility: visible;
  opacity: 1;
}*/
/*cursor*/
.cursor{
  position: fixed;
  width: 50px;
  height: 50px;
  border: 1px solid #c6c6c6;
  border-radius: 50%;
  left: 0;
  top: 0;
  transition: .04s;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: cursorAnim .0s infinite alternate;
}
.cursor2{
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: #c6c6c6;
  border-radius: 50%;
  left: 0;
  top: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: .06s;
  animation: cursonAnim2 .0s infinite alternate;
}
#back-to-top-btn:hover ~ .cursor, #back-to-top-btn:focus ~.cursor{
  transform: translate(-50%, -50%) scale(1.5);
  background-color: #fff;
  opacity: .5;
}
#back-to-top-btn:hover ~ .cursor, #back-to-top-btn:focus ~.cursor2{
  opacity: 0;
}
@keyframes cursorAnim{
  from{
    transform:scale(1);
  }
  to{
    transform: scale(.7)
  }
}
@keyframes cursorAnim2{
  from{
    transform:scale(1);
  }
  to{
    transform: scale(.4)
  }
}

.expand{
  animation: cursorAnim3 .5s forwards;
  border: 1px solid red;

}
@keyframes cursorAnim3{
  0% {
    transform:scale(1);
  }
  50% {
    transform: scale(3);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.containero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 5px;
  padding-right: 5px;
  /* padding-left: 5px;
  padding-left: 5px; */
  
  margin: auto;
}

.containero .cardo .icon {
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #56CCF2, #2F80ED);
  box-shadow:
    inset 0 0 60px rgba(86, 204, 242, 0.2),
    inset 0 0 120px rgba(47, 128, 237, 0.15),
    0 10px 25px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
}

.containero .cardo .icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 80px;
  border-radius: 50%;
  color: #fff;
}

.containero .cardo .slideo {
  width: 440px;
  height: 293px;
  transition: 0.5s ease-in-out;
}

.containero .cardo .slideo.slide1o {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transition: 0.7s ease-in-out;
  transform: translateY(194px);
}

.containero .cardo:hover .slideo.slide1o {
  transform: translateY(0);
}

.containero .cardo .slideo.slide2o {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  transition: 0.8s ease-in-out;
  transform: translateY(-100px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  background: #ffffff;
  border-radius: 12px;
}

.containero .cardo:hover .slideo.slide2o {
  transform: translateY(0);
}

.containero .cardo .slideo.slide2o::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 4px;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #2c73df;
  border-radius: 2px;
}

.containero .cardo .slideo.slide2o .contento p {
  margin: 0;
  padding: 0;
  text-align: center;
  color: #414141;
  font-size: 14px;
}

.containero .cardo .slideo.slide2o .contento h3 {
  margin: 0 0 10px;
  padding: 0;
  font-size: 24px;
  text-align: center;
  color: #414141;
}

/*mutu*/
.mutu {
	font-size: 18px;
	color: #e00;
	animation: beat .25s infinite alternate;
	transform-origin: center;
} 
@keyframes beat{
  0%{
    font-size:22px;
    color:#e00;
    animation: beat .25s infinite alternate;
    transform-origin:center;
  }
  50%{
     font-size:19px;
    color:#e00;
    animation: beat .25s infinite alternate;
    transform-origin:center;
  }
  100%{
    font-size:18px;
    color:#e00;
    animation: beat .25s infinite alternate;
    transform-origin:center;
  }
  
}
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

/* ========== Global Header Section ========== */
.legend-header {
  text-align: center;
  color: var(--j, #2F80ED);
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 30px;
  animation: fadeInTop 1.5s ease;
}
.legend-header h1 {
  font-size: 30px;
  text-shadow: 0 0 12px var(--i, #56CCF2);
}
.legend-header p {
  font-size: 16px;
  color: #aaa;
  margin-top: 5px;
}

@keyframes fadeInTop {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ========== Card Styles ========== */
.card {
  --i: #56CCF2;
  --j: #2F80ED;
  max-width: 440px;
  margin: auto;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(40,40,40,0.8), rgba(20,20,20,0.9));
  box-shadow: 0 0 15px var(--i), 0 0 30px var(--j);
  padding: 10px;
  transition: all 0.4s ease;
}
.card:hover {
  box-shadow: 0 0 25px var(--i), 0 0 60px var(--j);
  transform: scale(1.01);
}

/* ========== Inner Card ========== */
.inner-card {
  background: rgba(15, 15, 15, 0.9);
  border-radius: 18px;
  padding: 25px;
  box-shadow: inset 0 0 8px rgba(255,255,255,0.1);
  transition: background 0.3s ease;
}
.inner-card:hover {
  background: rgba(10, 10, 10, 0.95);
}

/* ========== Content Blocks ========== */
.contan {
  text-align: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: 0.4s ease;
}
.contan:hover {
  background: linear-gradient(90deg, rgba(86,204,242,0.15), rgba(47,128,237,0.15));
  box-shadow: 0 0 15px rgba(86,204,242,0.4);
  border-radius: 10px;
}

/* ========== Labels & Text ========== */
.tauko {
  font-size: 20px;
  font-weight: bold;
  color: var(--i);
  text-shadow: 0 0 6px var(--i);
  margin-top: 8px;
  display: block;
}
.text {
  font-size: 17px;
  color: #e0e0e0;
  margin-top: 3px;
}

/* ========== Icons ========== */
.fas {
  font-size: 24px;
  color: var(--j);
  transition: transform 0.3s ease, color 0.3s ease;
}
.contan:hover .fas {
  transform: scale(1.2);
  color: var(--i);
}

/* ========== Divider & Age ========== */
hr {
  border: none;
  border-top: 1px solid #333;
  width: 75%;
  margin: 12px auto;
}
#age {
  font-weight: bold;
  color: #ffffff;
}

.heart-beat{-webkit-animation:heart-beat 2s ease infinite;animation:heart-beat 2s ease infinite;color:#ff3932!important}@-webkit-keyframes heart-beat{0%{-webkit-transform:scale(1);transform:scale(1)}5%{-webkit-transform:scale(1.25);transform:scale(1.25)}20%{-webkit-transform:scale(1);transform:scale(1)}30%{-webkit-transform:scale(1);transform:scale(1)}35%{-webkit-transform:scale(1.25);transform:scale(1.25)}50%{-webkit-transform:scale(1);transform:scale(1)}55%{-webkit-transform:scale(1.25);transform:scale(1.25)}70%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes heart-beat{0%{-webkit-transform:scale(1);transform:scale(1)}5%{-webkit-transform:scale(1.25);transform:scale(1.25)}20%{-webkit-transform:scale(1);transform:scale(1)}30%{-webkit-transform:scale(1);transform:scale(1)}35%{-webkit-transform:scale(1.25);transform:scale(1.25)}50%{-webkit-transform:scale(1);transform:scale(1)}55%{-webkit-transform:scale(1.25);transform:scale(1.25)}70%{-webkit-transform:scale(1);transform:scale(1)}}@media(min-width:1920px){body{font-size:15px}
.center{
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
}
/*intro*/

/*intro*/
/*top*/
}
.form-group {
  margin-bottom: 1rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

input,
textarea,
select {
  display: block;
  width: 100%;
  padding: 0.5rem;
  border-radius: 0.25rem;
  border: 1px solid #ccc;
}

button[type="submit"] {
  background-color: #2f2f2f;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  border: none;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #454545;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #3d3d3d;
  outline: none;
}

input:invalid,
textarea:invalid,
select:invalid {
  border-color: #060606;
}

input:valid,
textarea:valid,
select:valid {
  border-color: #f0f1f8;
}
/* contac */
/* ⚡ Optimized & Consistent Background Contact Section ⚡ */

.contackobod {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 0px 20px 0px 20px;


  justify-content: center;
  padding: 70px 20px;
  overflow: hidden;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.contackobod::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.03), transparent 70%);
  z-index: 0;
}

.containori {
  width: 100%;
  max-width: 1150px;
  background: linear-gradient(180deg, #0f0f1f 0%, #1b1b3a 100%);

  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 45px 55px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 2;
}

.contentori {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.left-sidori {
  width: 100%;
  max-width: 300px;
  background: #0f3460;
  padding: 22px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: inset 0 0 10px #00fff7, 0 0 6px #00ffdd22;
}

.left-sidori .detailsori i {
  font-size: 32px;
  color: #ffd700;
  margin-bottom: 10px;
}

.detailsori .topicori {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.detailsori .text-oneori,
.detailsori .text-twoori {
  font-size: 14px;
  color: #cfd8dc;
  margin: 2px 0;
}

.right-sidori {
  flex: 1;
  color: #ffffff;
}

.topic-textori {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  background: linear-gradient(90deg, #ffd700, #ff6ec4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.right-sidori pfg {
  font-size: 15px;
  color: #d6d6d6;
  margin-bottom: 24px;
  display: block;
}

.input-boxori {
  margin: 12px 0;
}

.input-boxori input,
.input-boxori textarea {
  width: 100%;
  padding: 13px 17px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 15px;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.input-boxori input:focus,
.input-boxori textarea:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: #42e695;
  box-shadow: 0 0 8px #42e69555;
}

.message-boxori textarea {
  min-height: 120px;
  resize: vertical;
}

.buttonori button {
  padding: 11px 26px;
  background: linear-gradient(135deg, #42e695, #3bb2b8);
  color: #0f0f0f;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 10px #00ffdd33;
  transition: all 0.3s ease;
}

.buttonori button:hover {
  background: linear-gradient(135deg, #fff, #ffd700);
  color: #000;
  transform: scale(1.04);
}

@media (max-width: 950px) {
  .containori {
    padding: 35px;
  }
}

@media (max-width: 768px) {
  .contentori {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .left-sidori,
  .right-sidori {
    max-width: 100%;
    width: 100%;
  }
}

/* contac */
/* blog */
.blogkobod{
  display: grid;
  height: 100%;
  place-items: center;
  background: #c6c6c6;
  box-shadow: 6px 6px 10px -1px rgba(73, 67, 67, 0.15), -6px -6px 10px -1px rgba(83, 80, 80, 0.7);
  border-radius: 2%;
}
.containeroibl{
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
  border-radius: 20%;
  /* box-shadow: inset 4px 4px 6px -1px rgba(198, 198, 198, 0.15), inset -4px -4px 6px -1px rgba(83, 80, 80, 0.7), -0.5px -0.5px 0px rgba(73, 67, 67, 0.15), 0.5px 0.5px 0px rgba(83, 80, 80, 0.7), 0px 12px 10px -10px rgba(83, 80, 80, 0.7); */
}
.containeroibl .boxoibl{
  width: calc(33% - 10px);
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 30px;
  border-radius: 5px;
}
.containeroibl .boxoibl1{
  width: calc(33% - 10px);
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 30px;
  border-radius: 5px;
}
.boxoibl .quoteoibl i{
margin-top: 10px;
font-size: 45px;
color: #17c0eb
}
.containeroibl .boxoibl .imageoibl{
  margin: 10px 0;
  height: 150px;
  width: 150px;
  background: #c6c6c6;
  padding: 3px;
  border-radius: 20%;
}
.boxoibl .imageoibl img{
  height: 100%;
  width: 100%;
  border-radius: 20%;
  object-fit: cover;
  border: 2px solid #fff;
}
.boxoibl phj{
  text-align: justify;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 400;
}
.boxoibl .name_joboibl{
  margin: 10px 0 3px 0;
  color: #000000;
  font-size: 18px;
  font-weight: 600;
}
.ratingoibl i{
  font-size: 18px;
  color: #000000;
  margin-bottom: 5px;
}
.btnsoibl{
  /* margin-top: 20px;
  margin-bottom: 5px; */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  
  
}
.btnsoibl buttonoibl{
  background: #363636;
  width: 100%;
  padding: 8px 0px;
  outline: none;
  border: 2px solid #171717;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  color: #171717;
  transition: all 0.3s linear;
}
.btnsoibl buttonoibl{
  background: none;
  margin-right: 5px;
}
.btnsoibl1{
  /* margin-top: 20px;
  margin-bottom: 5px; */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  
  
}
.btnsoibl1 buttonoibl1{
  background: #8f3232;
  width: 100%;
  padding: 1px -8px;
  outline: none;
  border: 3.5px solid #4b2282;
  border-radius: 5px;
  cursor: pointer;
  font-size: 25px;
  font-weight: 400;
  color: #000000;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  transition: all 0.3s linear;
  box-shadow: inset 4px 4px 6px -1px rgba(198, 198, 198, 0.15), inset -4px -4px 6px -1px rgba(83, 80, 80, 0.7), -0.5px -0.5px 0px rgba(73, 67, 67, 0.15), 0.5px 0.5px 0px rgba(83, 80, 80, 0.7), 0px 12px 10px -10px rgba(83, 80, 80, 0.7);
}
.btnsoibl1 buttonoibl1{
  background: #fff;
  margin-right: 0px;
}

/* .btnsoibl buttonoibl:last-child{
  color: #fff;
  margin-left: 5px;
} */
.btnsoibl buttonoibl:hover{
  background: #151515;
  color: #fff;
}
.btns button:hover{
  color: #fff;
}
@media (max-width:1045px){
  .containeroibl .boxoibl{
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }
}
@media (max-width:710px){
  .containeroibl .boxoibl{
    width: 100%;
  }
}

/* blog */
/* feeedback */
.topeyk{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Poppins', sans-serif;
}
.tooti{
  display: flex;
  justify-content: center;
  align-items: center;
}
sectoni{
  position:relative;
  width: 100%;
  min-height: 570px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #c6c6c6;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 6px 6px 10px -1px rgba(73, 67, 67, 0.15), -6px -6px 10px -1px rgba(83, 80, 80, 0.7);

}
.swiper-container {
  width: 55%;
  display: inline-block;
  padding-top: 50px;
  padding-bottom: 50px;
  /* background-color: #c6c6c6; */
  /* border-radius: 50%; */
  box-shadow: 6px 6px 10px -1px rgba(24, 24, 24, 0.15), -6px -6px 10px -1px rgba(0, 0, 0, 0.7);
  padding:20px;
  
}
.testimonialBox{
  position:relative;
  width:100%;
  padding: 40px;
  padding-top:90px;
  color:999;
  box-shadow: inset 4px 4px 6px -1px rgba(198, 198, 198, 0.15), inset -4px -4px 6px -1px rgba(83, 80, 80, 0.7), -0.5px -0.5px 0px rgba(73, 67, 67, 0.15), 0.5px 0.5px 0px rgba(83, 80, 80, 0.7), 0px 12px 10px -10px rgba(83, 80, 80, 0.7);
}
.testimonialBox .quote{
  position:absolute;
  top:20px;
  right: 30px;
  opacity: 0.2;
}
.testimonialBox .details{
  display: flex;
  align-items: center;
  margin-top: 20px;

}
.testimonialBox .details .imgBx{
  position:relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow:hidden;
  margin-right: 10px;
}
po{
  line-height: 0.2;
}
.testimonialBox .details .imgBx img{
  position: absolute;
  top: 0;
  left: 0;
  width:100%;
  height:100%;
  object-fit: cover;

}
.testimonialBox .details h9{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  color:#2196f3;
  line-height:1.1em;

}
.testimonialBox .details h9 span{
  font-size:12px;
  color:#666;
}
.swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right{
  background-image:none;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
  background: #c6c6c6;;
  box-shadow: 0 15px 50px rgba(0,0,0,0.2);
  filter: blur(4px) brightness(65%);
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.swiper-slide-active{
  filter: blur(0px) brightness(100%);
  background: #fff;
  transition: all 0.3s ease-in-out;
}
/* .testimonialBox{
  display: flex;
  justify-content: left;
  align-items: left;
} */
.quote{
  width: 32px;
  height:32px;
  /* background: #000000; */
}
.quote img{
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
@media (max-width: 768px) {
  .swiper-container {
    width: 90%;
    padding: 10px;
  }

  .testimonialBox {
    padding: 20px;
    padding-top: 60px;
  }

  .testimonialBox .details {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonialBox .details .imgBx {
    margin-bottom: 10px;
  }

  .swiper-slide {
    width: 90% !important;
    filter: blur(0px); /* Optional: show all testimonials clearly on phone */
  }

  .swiper-slide-active {
    background: #fff;
  }

  .quote {
    width: 24px;
    height: 24px;
    top: 10px;
    right: 10px;
  }
}
/* Default: hide arrows */
.mobile-nav {
  display: none;
}

/* Show on mobile */
@media (max-width: 768px) {
  .mobile-nav {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: #2196f3;
    /* background-color: rgba(255, 255, 255, 0.8); */
    padding: 12px;
    border-radius: 50%;
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.3); */
    cursor: pointer;
  }

  .swiper-button-prev {
    left: 10px;
  }

  .swiper-button-next {
    right: 10px;
  }
}


/* feedback */
/* kjankja */
.webporje{
  display: flex;
  /* padding: 0 10px; */
  align-items: center;
  justify-content: center;
  min-height: 570px;
  /* background: #17A2B8; */
}
::selection{
  color: #fff;
  background: #bd6f1c;
}
.wrapperko{
  width: 770px;
  padding: 35px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 15px rgba(0,0,0,0.05);
}
.totlk{
  display: flex;
  /* padding: 0 10px; */
  align-items: center;
  justify-content: center;
}
.wrapperko .input-fieldko{
  opacity: 0;
  z-index: -999;
  position: absolute;
  max-width: fit-content;
}
.wrapperko .content-boxko{
  padding: 13px 20px 0;
  border-radius: 10px;
  border: 1px solid #bfbfbf;
}
.content-boxko .typing-textko{
  overflow: hidden;
  max-height: 256px;
}
.typing-textko::-webkit-scrollbar{
  width: 0;
}
.typing-textko p{
  font-size: 21px;
  text-align: justify;
  letter-spacing: 1px;
  word-break: break-all;
}
.typing-textko p span{
  position: relative;
}
.typing-textko p span.correct{
  color: #56964f;
}
.typing-textko p span.incorrect{
  color: #cb3439;
  outline: 1px solid #fff;
  background: #ffc0cb;
  border-radius: 4px;
}
.typing-textko p span.active{
  color: #17A2B8;
}
.typing-textko p span.active::before{
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  bottom: 0;
  left: 0;
  opacity: 0;
  border-radius: 5px;
  background: #17A2B8;
  animation: blink 1s ease-in-out infinite;
}
@keyframes blink{
  50%{ 
    opacity: 1; 
  }
}
.content-boxko .contentko{
  margin-top: 17px;
  display: flex;
  padding: 12px 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #bfbfbf;
}
.contentko buttonko{
  outline: none;
  border: none;
  width: 105px;
  color: #fff;
  padding: 8px 0;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  background: #17A2B8;
  transition: transform 0.3s ease;
}
.contentko buttonko:active{
  transform: scale(0.97);
}
.contentko .result-detailsko{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: calc(100% - 140px);
  justify-content: space-between;
}
.result-detailsko li{
  display: flex;
  height: 20px;
  list-style: none;
  position: relative;
  align-items: center;
}
.result-detailsko li:not(:first-child){
  padding-left: 22px;
  border-left: 1px solid #bfbfbf;
}
.result-detailsko li p{
  font-size: 19px;
}
.result-detailsko li span{
  display: block;
  font-size: 20px;
  margin-left: 10px;
}
li span b{
  font-weight: 500;
}
li:not(:first-child) span{
  font-weight: 500;
}
@media (max-width: 745px) {
  .wrapperko{
    padding: 20px;
  }
  .content-boxko .contentko{
    padding: 20px 0;
  }
  .content-boxko .typing-textko{
    max-height: 100%;
  }
  .typing-textko p{
    font-size: 19px;
    text-align: left;
  }
  .contentko buttonko{
    width: 100%;
    font-size: 15px;
    padding: 10px 0;
    margin-top: 20px;
  }
  .contentko .result-detailsko{
    width: 100%;
  }
  .result-detailsko li:not(:first-child){
    border-left: 0;
    padding: 0;
  }
  .result-detailsko li p, 
  .result-details li span{
    font-size: 17px;
  }
}
@media (max-width: 518px) {
  .wrapperko .content-boxko{
    padding: 10px 15px 0;
  }
  .typing-textko p{
    font-size: 18px;
  }
  .result-detailsko li{
    margin-bottom: 10px;
  }
  .contentko buttonko{
    margin-top: 10px;
  }
}
/* ajkjka */
/* chess */
.chess {
  display: grid;
  place-items: center;
  overflow-x: hidden;
}

/* h1 {
  margin: 10px;
} */

ulko {
  display: grid;
  grid-template-columns: 1fr;
}

.divv {
  display: flex;
}

liko {
  list-style: none;
  display: grid;
  place-items: center;
  font-size: 0px;
}

.box {
  margin: .5px;
  width: 75px;
  height: 75px;
}

#tog {
  margin: 10px 0px;
}


.allimg {
  width: 45px;
  position: relative;
  bottom: 5px;
}

.allpawn {
  transform: scale(.7);
}

.authcont {
  width: 100vw;
}

.author {
  float: right;
  margin-right: 50px;

}


@media (max-width:650px){

  #tog {
      margin-bottom: 70px;

  }

  .box {
      width: 11vw;
      height: 11vw;
  }

  .allimg {
      width: 7vw;
  }
}
/* chess */
/* tic */
.tictac{
  display: flex;
  align-items: center;
  justify-content: center;
}

#cont {
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#smallcont {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 50vh;
  height: 50vh;
}

.btn1 {
  font-size: 6vmin;
  color: white;
  cursor: pointer;
  background-color: rgb(18, 103, 188);
  border-color: #000;
  border-width: 5px;
}

.btn1:hover {
  background-color: rgb(45, 46, 47);
}

/* #head {
  height: 20vh;
  display: flex;
  justify-content: center;
  align-items: center;

}

#head h1 {
  font-size: 6vmin;
} */


/* tac */
/* music */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
} */
/* *::before, *::after{
  padding: 0;
  margin: 0;
} */

/* music */
/* kjklajkla */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
::selection{
  color: #fff;
  background: #007bff;
}
body{
  padding: 10px;
} */
.wrapperkokira{
  margin: 100px auto;
  max-width: 1100px;
}
.wrapperkokira navkokira{
  display: flex;
  justify-content: center;
}
.wrapperkokira .items{
  display: flex;
  max-width: 720px;
  width: 100%;
  justify-content: space-between;
}
.items span{
  padding: 7px 25px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  color: #000;
  border-radius: 50px;
  border: 2px solid #2b2b2b;
  transition: all 0.3s ease;
}
.items span.active,
.items span:hover{
  color: #fff;
  background: #3e3e3e;
}

.gallerykokira{
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.gallerykokira .imagekokira{
  width: calc(100% / 4);
  padding: 7px;
}
.gallerykokira .imagekokira span{
  display: flex;
  width: 100%;
  overflow: hidden;
}
.gallerykokira .imagekokira img{
  width: 100%;
  vertical-align: middle;
  transition: all 0.3s ease;
}
.gallerykokira .imagekokira:hover img{
  transform: scale(1.1);
}
.gallerykokira .imagekokira.hide{
  display: none;
}
.gallerykokira .imagekokira.show{
  animation: animatika 0.4s ease;
}
@keyframes animatika {
  0%{
    transform: scale(0.5);
  }
  100%{
    transform: scale(1);
  }
}

.preview-boxkokira{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  max-width: 700px;
  width: 100%;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  border-radius: 3px;
  padding: 0 5px 5px 5px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
}
.preview-boxkokira.show{
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.3s ease;
}
.preview-boxkokira .detailskokira{
  padding: 13px 15px 13px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.detailskokira .titlekokira{
  display: flex;
  font-size: 18px;
  font-weight: 400;
}
.detailskokira .titlekokira p{
  font-weight: 500;
  margin-left: 5px;
}
.detailskokira .icon{
  color: #000;
  font-style: 22px;
  cursor: pointer;
}
.preview-boxkokira .image-boxkokira{
  width: 100%;
  display: flex;
}
.image-boxkokira img{
  width: 100%;
  border-radius: 0 0 3px 3px;
}
.shadow{
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  display: none;
  background: rgba(0,0,0,0.4);
}
.shadow.show{
  display: block;
}

@media (max-width: 1000px) {
  .gallerykokira .imagekokira{
    width: calc(100% / 3);
  }
}
@media (max-width: 800px) {
  .gallerykokira .imagekokira{
    width: calc(100% / 2);
  }
}
@media (max-width: 700px) {
  .wrapperkokira navkokira .items{
    max-width: 600px;
  }
  navkokira .items span{
    padding: 7px 15px;
  }
}
@media (max-width: 600px) {
  .wrapperkokira{
    margin: 30px auto;
  }
  .wrapperkokira navkokira .items{
    flex-wrap: wrap;
    justify-content: center;
  }
  navkokira .items span{
    margin: 5px;
  }
  .gallerykokira .imagekokira{
    width: 100%;
  }
}

/* jlajkla */
.musickobod{
    /* background-image: linear-gradient(
      0deg,
      rgba(247, 247, 247, 1) 23.8%,
      rgba(252, 221, 221, 1) 92%
    ); */
    height: 570px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Lato', sans-serif;
    margin: 0;
  }
  .music-container {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 6px 6px 10px -1px rgba(73, 67, 67, 0.15), -6px -6px 10px -1px rgba(83, 80, 80, 0.7);
    display: flex;
    padding: 20px 30px;
    position: relative;
    margin: 100px 0;
    z-index: 10;
  }
  
  .img-container {
    position: relative;
    width: 110px;
  }
  
  .img-container::after {
    content: '';
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    bottom: 100%;
    left: 50%;
    width: 20px;
    height: 20px;
    transform: translate(-50%, 50%);
  }
  
  .img-container img {
    border-radius: 50%;
    object-fit: cover;
    height: 110px;
    width: inherit;
    position: absolute;
    bottom: 0;
    left: 0;
    animation: rotate 3s linear infinite;
  
    animation-play-state: paused;
  }
  
  .music-container.play .img-container img {
    animation-play-state: running;
  }
  
  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
  
    to {
      transform: rotate(360deg);
    }
  }
  
  .navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }
  
  .action-btn {
    background-color: #fff;
    border: 0;
    color: #dfdbdf;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    margin: 0 20px;
  }
  
  .action-btn.action-btn-big {
    color: #cdc2d0;
    font-size: 30px;
  }
  
  .action-btn:focus {
    outline: 0;
  }
  
  .music-info {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 15px 15px 0 0;
    position: absolute;
    top: 0;
    left: 20px;
    width: calc(100% - 40px);
    padding: 10px 10px 10px 150px;
    opacity: 0;
    transform: translateY(0%);
    transition: transform 0.3s ease-in, opacity 0.3s ease-in;
    z-index: 0;
  }
  
  .music-container.play .music-info {
    opacity: 1;
    transform: translateY(-100%);
  }
  
  .music-info h4 {
    margin: 0;
  }
  
  .progress-container {
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0;
    height: 4px;
    width: 100%;
  }
  
  .progress {
    background-color: #fe8daa;
    border-radius: 5px;
    height: 100%;
    width: 0%;
    transition: width 0.1s linear;
  }
/* n,mn, */
/* ::selection{
  color: #fff;
  background: #ff7979;
} */
.wrapper{
  max-width: 1080px;
  margin: 50px auto;
  padding: 0 20px;
  position: relative;
}
.wrapper .center-line{
  position: absolute;
  height: 100%;
  width: 4px;
  background: #484848;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
}
.wrapper .row{
  display: flex;
}
.wrapper .row-1{
  justify-content: flex-start;
}
.wrapper .row-2{
  justify-content: flex-end;
}
.wrapper .row section{
  background: #fff;
  border-radius: 5px;
  width: calc(50% - 40px);
  padding-top: 50px;
  padding: 20px;
  position: relative;
}
.wrapper .row section::before{
  position: absolute;
  content: "";
  height: 15px;
  padding-top: 50px;
  width: 15px;
  background: #fff;
  top: 28px;
  z-index: -1;
  transform: rotate(45deg);
}
.row-1 section::before{
  right: -7px;
}
.row-2 section::before{
  left: -7px;
}
.row section img,
.center-line .scroll-icon,
.center-line .proll-icon{
  position: absolute;
  background: linear-gradient(135deg, #56CCF2, #2F80ED);
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #c6c6c6;
  font-size: 17px;
  box-shadow: 0 0 0 5px #fff, inset 0 2px 0 rgba(0,0,0,0.08), 0 3px 0 4px rgba(0,0,0,0.05);
}
.center-line .scroll-icon{
  bottom: 0px;
  left: 50%;
  font-size: 25px;
  transform: translateX(-50%);
}
.center-line .proll-icon{
  /* top: 0px; */
  left: 50%;
  /* width: 1100px; */
  /* background-color: #000; */
  font-size: 25px;
  transform: translateX(-50%);
}
.rowtau{
  padding-left: 5px;
  padding-right: 5px;
  margin: auto;
  justify-content: center;
  align-items: center;
}
.row-1 section img{
  /* padding-top: 25px; */
  top: 15px;
  width:125px;
  height: auto;
  right: -110px;
}
.row-2 section img{
  top: 15px;
  width:125px;
  height: auto;
  left: -110px;
}
.row section .details,
.row section .bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.row section .details .title{
  font-size: 22px;
  font-weight: 600;
}
.row section p{
  margin: 10px 0 17px 0;
}
.row section .bottom a{
  text-decoration: none;
  background: #ff7979;
  color: #fff;
  padding: 7px 15px;
  border-radius: 5px;
  /* font-size: 17px; */
  font-weight: 400;
  transition: all 0.3s ease;
}
.row section .bottom a:hover{
  transform: scale(0.97);
}
@media(max-width: 790px){
  .wrapper .center-line{
    left: 40px;
  }
  .wrapper .row{
    margin: 30px 0 3px 60px;
  }
  .wrapper .row section{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .row-1 section::before{
    left: -7px;
  }
  .row-1 section img, .row-2 section img{
    position: static;
    margin-bottom: 10px;
    left: 0;
    right: 0;
  }
}
@media(max-width: 440px){
  .wrapper .center-line,
  .row section::before,
  .row section .icon{
    display: none;
  }
  .wrapper .row{
    margin: 10px 0;
  }
}
/* m,a,ma */
.wrapperraja{
  display: grid;
  margin: 200px 90px auto;
  /* grid-gap: 10px; */
  /* column-gap: 5px;
  row-gap: 5px; */
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
@media (max-width: 700px) {
  .wrapperraja{
    margin: 200px auto;
  }
}
.boxraja{
  width: 350px;
  margin: 0 auto;
  position: relative;
  perspective: 1000px;
  /* grid-gap: 10px; */
}
.boxraja .front-faceraja{
  background: #fff;
  height: 220px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
  transition: all 0.5s ease;
  text-align: center;
  /* border: #000 2px; */
}
.boxraja .front-faceraja .iconraja{
  height: 80px;
}
.boxraja .front-faceraja .iconraja{
  font-size: 65px;
}
.boxraja .front-faceraja span1{
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: Castellar;
}
.boxraja .front-faceraja span2{
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.boxraja .front-faceraja span1,
.boxraja .front-faceraja span2{
  background: linear-gradient(-135deg, #373737, #bea1a1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.boxraja:hover .front-faceraja{
  /* zoom: 2%; */
  /* background: #373737; */
 /* background: linear-gradient(135deg, #ff3c00, #ff9900, #ffe600, #00ffe0, #0070ff); */
 background: linear-gradient(135deg, #0a0a0a, #141e30, #0f4c75, #3282b8);

background-size: 300% 300%;
  animation: electricFire 5s ease infinite;
  transition: background 0.5s ease-in-out;

  height: 220px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0px 5px 20px 0px rgba(225, 185, 7, 0.1);
  box-shadow: inset 4px 4px 6px -1px rgba(198, 198, 198, 0.15), inset -4px -4px 6px -1px rgba(149, 147, 147, 0.7), -0.5px -0.5px 0px rgba(225, 204, 204, 0.15), 0.5px 0.5px 0px rgba(201, 194, 194, 0.7), 0px 12px 10px -10px rgba(229, 226, 226, 0.7);
  transition: all 0.5s ease;
  text-align: center;
}
@keyframes electricFire {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.boxraja:hover .front-faceraja span1,
.boxraja:hover .front-faceraja span2{
  background: linear-gradient(-135deg, #7d6666, #fff5f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.meroporjekobod{
  width: 1080px;
  margin: auto;
  display:flex;
  /* align-items: center; */
  justify-content: center;
}
/**/

/**/
.photokobodkokira {
  display: flex;
  justify-content: center;
}

.imgoconto {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1200px;
  padding: 20px;
}

.imgocontokoitem {
  flex: 0 0 23%; /* 4 per row on large screens */
  padding: 8px;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.imgocontokoitem img {
  width: 250px;
  height: 200px;
  display: block;
}

.imgocontokoitem:hover {
  transform: scale(1.1);
  opacity: 90%;
}

/* Responsive: 2 per row on tablets */
@media (max-width: 991px) {
  .imgocontokoitem {
    flex: 0 0 45%;
  }
}

/* Responsive: 1 per row on phones */
@media (max-width: 576px) {
  .imgocontokoitem {
    flex: 0 0 100%;
  }
}
