@import url('https://fonts.googleapis.com/css2?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');

*{
  margin: 0;
}

.title{
  font-size: 4vh;
  font-family: 'Poppins', sans-serif;
  color: black ;
  text-align: center;
  padding-bottom: 40px;
  
}

.container{
  background: linear-gradient(-45deg, lightblue, white);
  width: 100vw;
  height: 100vh;
}

p{
  padding-top: 2vh;
  cursor: default;
}

.info{
  height: 500px;
  text-align: center;
}

.pic{
  height:100%;
  border-radius: 20px;
  display: inline-block;
  margin-right: 50px;
  box-shadow: 0px 0px 20px rgb(0, 0, 0);
}

.text{
  display: inline-block;
  vertical-align: top;
}

.insta{
  height: 50px;
  display: flex;
  margin-bottom: 20px;
  margin-top: 50px;
  
}

.insta-logo {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: transparent;
  position: relative;
  /* overflow: hidden; */
  border-radius: 7px;
  cursor: pointer;
  transition: all .3s;
  margin-right: 15px;
}

.svgContainer {
  display: inline-block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  backdrop-filter: blur(4px);
  letter-spacing: 0.8px;
  border-radius: 10px;
  transition: all .3s;
  border: 1px solid rgba(156, 156, 156, 0.466);
}

.BG {
  display: inline-block;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #f09433;
  background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  z-index: -1;
  border-radius: 9px;
  pointer-events: none;
  transition: all .3s;
}

.insta-logo:hover .BG {
  transform: rotate(35deg);
  transform-origin: bottom;
}

.insta-logo:hover .svgContainer {
  background-color: rgba(156, 156, 156, 0.466);
}

.text2{
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
}

.link{
  text-decoration: none;
  opacity: 0;
  font-size: 0px;
}

.btn{
  text-align: center;
}

.back-btn{
  background-color: rgba(0, 0, 0, 0);
  color:rgb(39, 38, 38);
  border: none;
  font-family: 'Poppins', sans-serif;
  margin-bottom:30px ;
  font-size: 20px;
  cursor: pointer;
  transition: opacity 0.2s, text-decoration 0.3s ease-in-out;
}

.back-btn:hover{
  text-decoration: underline;
}

.back-btn:active{
  opacity: 0.4;
}

.back{
  text-decoration: none;
  color: rgb(39, 38, 38);
}

.equipment-title{
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  text-align: left;
}

.camera, .lens1, .lens2, .lens3, .drone{
  font-family: 'Poppins', sans-serif;
  text-align: left;
}

body{
  font-family: Poppins;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.877);
  color: #000000;
}

header{
  width: 1200px;
  max-width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  grid-template-rows: 50px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;
}
header .logo{
  font-weight: bold;
}
header .menu{
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  font-weight: 500;
}

a, .logo{
text-decoration: none;
color: rgb(104, 104, 104);
}