.head{background-color:rgb(112, 175, 230);}
.header{align-items: center;color: black;font-weight: 500; }

/* about us */

#about-us {
    min-height: 100vh;
    max-width: 100vw;
    background-color: #3f88b2;
    min-height: 100vh;
    background-image: url(assets/images/backdrop.png);
    background-position: center;
    background-size: cover;
  }
  
  #about-us p {
    color: white;
  }
  
  .about-us-container {
    text-align: left;
    width: 80%;
    margin: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    align-content: flex-start;
    flex-wrap: wrap;
  }
  
  .about-us-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  
  .about-us-col {
    padding: 10px;
    flex-basis: 31%;
  }
  
  .about-us-col h3 {
    color: white;
    margin-bottom: 10px;
  }
  
  /* contact */

  #contact {
   height: 50px;
    background-color: #2ade6f;
    color: rgb(0, 0, 0);
  }
  
  .contact-row {
    display: flex;
   align-items: flex-end;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    height: 100%;
    align-content:space-around;
  }
  
  .contact-col {
    flex-basis: 30%;
  }
  
  .testimonial-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  
  .social-icon-wrapper {
    
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
  }
  
  .social-icon-wrapper img {
    transition: 0.5s;
            height: 50px;
  }
  
  .social-icon-wrapper img:hover {
    transform: translateY(-20px);
  }
  @media (max-width: 700px) {
    .contact-row {
      flex-direction: column;
      padding: 20%;
    }
  
    .contact-col {
      flex-basis: 40%;
    }
  
    .social-icon-wrapper {
      width: 100%;
      height: 100%;
      justify-content: space-between;
    }
    .social-icon-wrapper img {
      width: 70%;
    }
  }
  /* footer */
  #footer-section {
        bottom: 0;
    left: 0;
    color: white;
    width: 100%;
    margin: auto;
    background-color: #fc8a05;
    display: flex
;
    align-items: center;
    justify-content: center;
    position: fixed;
  }
  
  .footer-row {
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #fc8a05;
  }
  
  .footer-nav-links {
    display: flex;
    justify-content: space-between;
    padding: 2% 0%;
  }
  
  .footer-nav-links ul li {
    list-style: none;
    display: inline-block;
    padding-right: 10px;
  }
  
  .footer-nav-links ul li a {
    text-decoration: none;
    color: white;
  }
  .tbclogo{height: 80px; }

 /* responsive footer */
  
  @media (max-width: 700px) {.footer-nav-links{display: none;}
    /* #footer-section {
      display: none;
    } */
  }
/* header */


  
  
  .reveal {
    position: relative;
    transform: translateY(150px);
    
    transition: 1s all ease;
  }
  
  .reveal.active {
    transform: translateY(0px);
    opacity: 1;
  }
  
  .rotate {
    animation: rotation 10s infinite linear;
  }
  
  @keyframes rotation {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(359deg);
    }
  }

  
 
  ::-webkit-scrollbar {
    width: 10px;
  
    background-color: rgba(0, 0, 0, 0);
  }
 
  ::-webkit-scrollbar-track {
    background-color: rgb(230, 111, 0);
  }
  

  ::-webkit-scrollbar-thumb {
    background: rgb(240, 240, 240);
    border-radius: 10px;
    width: 5px;
    height: 5px;
  }
  
  
  ::-webkit-scrollbar-thumb:hover {
    background: #686868;
  }
 
  
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 500;
  }
  
  .sticky-bg {
    width: 100%;
    backdrop-filter: blur(20px);
  }
  
  nav {
    position: sticky;
    top: 0;
    z-index: 11;
  }
  
  nav a {
    text-decoration: none;
    color: #e7e7e7;
    transition: 0.5s;
  }
  
  nav a:hover {
    color: white;
    font-weight: 500;
  }
  
  .nav-links {
    font-family: Georgia, 'Times New Roman', Times, serif;
    display: flex
;
    align-content: stretch;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    height: 80px;
}
  
  .nav-links ul li {
    list-style: none;
    display: inline-block;
    padding-right: 10px;
  }
  
  .nav-links ul li a {
    text-decoration: none;
    color: #ffffff;
    transition: 0.5s;
  }
  
  .nav-links ul li a:hover {
    text-decoration: none;
    color: white;
    font-weight: 500;
  }
  
  nav .fa {
    display: none;
  }
 
  
  @media (max-width: 700px) {
    nav .fa {
      display: block;
      color: #fff;
      margin: 10px;
      font-size: 22px;
      cursor: pointer;
    }
    .sticky-bg {
      backdrop-filter: none;
    }
    .nav-links .hero-link {
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    .nav-links ul li {
      display: block;
      text-align: left;
      padding: 5px 50px;
    }
  
    #nav-links-sub {
      left: -200px;
      text-align: right;
      margin-top: 70px;
      position: absolute;
      height: 100vh;
      width: 30%;
      background: rgba(255, 81, 0, 0);
      backdrop-filter: blur(3px);
      transition: 1s;
    }
  }
  #our-products {
    min-height: 100vh;
    max-width: 100vw;
    /* background-color: #22905b; */
    background-image: url(../images/background1.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin: auto;
    text-align: center;
  }
  
  .products-grid-wrapper {
    width: 100%;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    flex-direction: column;
    align-content: center;
    flex-wrap: nowrap;
  }
  
  .products-grid-container {
    display: grid;
    grid-template-columns: auto auto auto;
    padding: 0px;
  }
  .grid-item {
/*     padding: 20px;
    text-align: center; */
    transition: 0.5s;
  }
  
  .grid-item:hover {
    transform: translateY(-20px);
  }
  
  .grid-item img {
    width: 50%;
    transition: 1s;
  }
  
  .grid-item:hover img {
    animation: rotation 10s infinite linear;
  }
  
  .grid-item img:hover {
    cursor: pointer;
  }
  
  .grid-item p {
    font-size: 24px;
    font-weight: 500;
    color: white;
  }
 
  
  @media (max-width: 700px) {
    .products-grid-wrapper {
      padding: 10% 0;
    }
    .products-grid-container {
      grid-template-columns: auto;
    }
    .grid-item img {
      max-width: 20%;
      transition: 1s;
    }
  }
  /* quiz */
  h1 {
    margin: 0;
}

  .questions {
    background-color: #f5f5f5;
    padding: 1em;
    margin-bottom: 1em;
}

.results {
    display: none;
    padding: 1em;
}

button {
    background-color: #0074d9;
    color: #fff;
    padding: 0.5em 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #003D6B;
}
/* calculator */

table { 
  display:flex;

  border: 1px solid black; 
  margin: left 200px;top: 200px; 

} 

input[type="button"] { 
  width: 100%; 
  padding: 20px 40px; 
  background-color: green; 
  color: white; 
  font-size: 24px; 
  font-weight: bold; 
  border: none; 
  border-radius: 5px; 
} 

input[type="text"] { 

  font-size: 24px; 
  font-weight: bold; 
  border: none; 
  border-radius: 5px; 
  border: 2px solid black; 
} 
/* calculator */


.body1 {
  margin-top: 100px;
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 20px;
  
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  color: #333;
}
.div1 {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-bottom: 2px solid #ccc;
}
header h1 {
  margin: 0;
  font-size: 2.5em;
  color: #007bff;
}
.calculator {
  display: inline-block;
  border: 2px solid #ccc;
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
  width: 90%;
  max-width: 400px;
}
.display {
  width: 100%;
  height: 50px;
  margin-bottom: 10px;
  font-size: 1.5em;
  text-align: right;
  padding: 5px;
  border: 2px solid #007bff;
  border-radius: 5px;
}
.buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.button {
  padding: 15px;
  font-size: 1.2em;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.button:hover {
  background-color: #0056b3;
}
.button.special {
  background-color: #28a745;
}
.button.special:hover {
  background-color: #1e7e34;
}
.footer1 {
  margin-top: 30px;
  font-size: 0.9em;
  color: #555;
}
@media (max-width: 600px) {
  header h1 {
    font-size: 2em;
  }
  .button {
    padding: 10px;
    font-size: 1em;
  }
  .display {
    height: 40px;
    font-size: 1.2em;
  }
}

.logof{height: 66px;}

.body{ font-family: "Noto Sans Georgian", "Roboto", sans-serif;}
