* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f7f7f7;
  color: #111;
  font-family: "Comfortaa", sans-serif;
}

h1, h2, h3, h4 {
  font-family: "Science Gothic", sans-serif;
  margin-bottom: 10px;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  padding: 20px 60px;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  z-index: 10;
  transition: all 0.3s ease;
}

nav {
  margin-left: auto;
  margin-right: 40px; 
}

.logo-img {
  height: 85px;
  margin-top: 5px;
  transition: all 0.3s ease;
}

nav a {
  margin-right: 30px;
  text-decoration: none;
  color: #111;
  font-weight: 400;
}

.lang-switch a {
  margin-left: 12px;
  font-size: 14px;
  cursor: pointer;
  opacity: 0.6;
}

.lang-switch a:hover {
  opacity: 1;
}

.hero1 {
/* 
  background: linear-gradient(120deg, #111, #2b2b2b); */
  

   padding: 140px 60px 100px 60px;
    color: #fff;

    background:
        linear-gradient(to right,
            rgba(0,0,0,0.80) 0%,
            rgba(0,0,0,0.80) 35%,
            rgba(0,0,0,0.90) 70%,
            rgba(0,0,0,0.6) 100%
        ),
        url("img/1306.jpg") no-repeat center center;
        
    background-attachment: fixed;

    background-size: cover;    
    background-repeat: no-repeat;
    background-position: center;
}

.hero1 h4 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero1 p {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 20px;
}

.hero2 {

  background: linear-gradient(120deg, #111, #2b2b2b);
  

   padding: 140px 60px 100px 60px;
    color: #fff;

    /* background:
        linear-gradient(to right,
            rgba(0,0,0,0.80) 0%,
            rgba(0,0,0,0.80) 35%,
            rgba(0,0,0,0.90) 70%,
            rgba(0,0,0,0.6) 100%
        ),
        url("img/1306.jpg") no-repeat center center; */
        
    background-attachment: fixed;

    background-size: cover;    
    background-repeat: no-repeat;
    background-position: center;
}

.section {
  padding: 50px 60px;
  margin: 0 auto;
}

/* .dark-section {
  background: #111;
  color: #fff;
} */

.footer {
  padding: 40px 60px;
  background: #111;
  color: #777;
}

.animate-right {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.8s ease;
}

.animate-right.show {
  opacity: 1;
  transform: translateX(0);
}

.animate-left{
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.8s ease;
}

.animate-left.show {
  opacity: 1;
  transform: translateX(0);
}

.animate-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.show {
  opacity: 1;
    transform: translateY(0);
}

.item-grid{
  margin-top: 20px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.what-item-grid p {
  padding: 20px 24px;
  border: 1.5px solid #2b302e69;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.014);
}


.item-grid1{
  margin-top: 20px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.comp-item-grid p {
  padding: 20px 24px;
  border: 1.5px solid #fff;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.107);
  box-shadow: 0 0 0 1px rgba(53, 44, 44, 0.2);
  min-height: 115px;
}

.qw {
  text-align: center;
}

.gold{
  padding: 20px 24px;
  border: 2px solid #ffffff67;
   box-shadow: inset 0 4px 10px rgba(0.1, 0.1, 0.1, 0.1);
}
