@import url("https://fonts.googleapis.com/css2?family=Anton&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --font-family: "Poppins", serif;
  --primary-color: rgb(0, 18, 37);
  --seondary-color: #002c57;
  --black-color: #000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

.bold-text {
  font-weight: 600;
}

.highlight-text {
  font-weight: 800;
  color: var(--seondary-color);
}

header {
  position: fixed;
  width: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  background-color: #00000045;
  backdrop-filter: blur(20px);
  top: 0;
}

header .header-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 25px;
}

header .header-container .logo {
  cursor: none;
}

header .header-container .logo .tulsa {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

header .header-container .logo p {
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  margin-top: -5px;
}

header nav ul {
  display: flex;
}

header nav ul li {
  list-style: none;
}

header nav ul li a {
  color: #fff;
  margin: 0 15px;
}

header nav ul li a:hover {
  color: #30c5d2;
}

#navbar-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
}
#navbar-btn img {
  width: 30px;
  filter: hue-rotate(360deg);
}

@media screen and (max-width: 1025px) {
  header.active {
    background-color: #393a4b;
  }
  header nav {
    position: absolute;
    width: 100%;
    overflow: hidden;
    top: 54px;
    left: -100%;
    background-color: #393a4b;
    transition: .5s;
    /* display: none; */
  }
  header nav.active {
    left: 0;
  }
  header nav ul {
    display: block;
  }
  header nav ul li {
    width: 100%;
  }
  header nav ul li a {
    margin: 0;
    width: 100%;
    text-align: center;
    display: block;
    padding: 15px 0;
    border-top: 1px solid #000;
  }
  #navbar-btn {
    display: block;
  }
}

.heading {
  font-size: 40px;
}

.sub-heading {
  font-size: 18px;
}
section {
  padding: 10px;
  display: flex;
  justify-content: center;
  color: #5b5b5b;
  font-family: var(--font-family);
}

#overview {
  position: relative;
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  padding: 100px;
  overflow: hidden;
  color: #5b5b5b;
  background: linear-gradient(359deg, white, #a8d1ff);
}

#overview h1 {
  font-size: 50px;
}

#overview p {
  font-size: 16px;
}

#overview .right-area img {
  width: 600px;
}

.detail-box {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  scale: 0;
  transition: 0.5s;
  color: #5b5b5b;
}

.show {
  opacity: 1;
  scale: 1;
}

.detail-box .detail .sub-heading {
  margin-bottom: 20px;
}

.detail-box img {
  width: 500px;
}

@media screen and (max-width: 1286px) {
  #overview .right-area img {
    width: 400px;
  }
}

@media screen and (max-width: 1065px) {
  section#overview {
    padding: 20px;
  }

  .detail-box img {
    width: 300px;
  }

  #overview .left-area {
    margin-top: 50px;
  }
}

@media screen and (max-width: 907px) {
  #overview h1 {
    font-size: 40px;
  }

  #overview p {
    font-size: 17px;
  }
  

#overview .left-area {
  margin-top: 50px;
}

  #overview {
    flex-direction: column;
  }
  #overview .right-area{
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  #overview .right-area img {
    width: 90%;
  }
}

@media screen and (max-width: 816px) {
  .detail-box {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 543px) {
  section#overview {
    padding: 15px;
  }
  #overview p {
    font-size: 14px;
  }

  #overview h1 {
    font-size: 35px;
  }
}

@media screen and (max-width: 447px){
  section{
    padding: 4px;
  }
}
.footer {
  background-color: #333;
  color: white;
  padding: 20px 0;
  text-align: center;
  font-family: var(--font-family);
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  padding: 10px;
  text-align: left;
}

.footer-section p{
  margin-bottom: 5px;
}
.footer-section h3 {
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 5px 0;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
}

.social-icons a {
  margin-right: 10px;
  color: white;
  font-size: 20px;
  text-decoration: none;
}
.social-icons a img{
}

.social-icons a:hover {
  color: #ffcc00;
}


.social-png{
  width: 30px;
  border-radius: 50%;
}


.footer .copyright{
  margin-top: 25px;
}