body {
  margin: 0;
  padding: 0;
}

header {
  background-position: bottom;
  object-fit: cover;
  /* background-color: rgba(0, 0, 0, 0.2);  */
  background-repeat: no-repeat;
}

header .nav {
  backdrop-filter: blur(1px);
}

.container {
  width: auto;
  height: 90px;
  color: white;
  padding: 0;
  margin: 0;
  background-color: transparent;
}

ul li {
  color: white;
}




header img {
  margin-left: 100px;
  width: 150px;
  height: 100px;
}

.logobox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


h1 {
  margin-left: 100px;

}

navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  background-color: transparent;
  height: 90px;
}


ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  list-style-type: none;
  gap: 30px;
  font-size: 20px;
  margin-right: 100px;
  color: white;
}

header a {
  text-decoration: none;
  color: white;
}

header a:hover {
  text-decoration: underline;
  color: #1395B3;
}

.content {
  display: flex;
  justify-content: space-between;
  padding: 30px;
  margin-left: 0px;
  align-items: center;
}

.content .hero1 {
  width: 1200px;
  height: auto;
}


.content .hero1 p {
  font-size: 25px;
  margin-left: 7px;
}

.content .hero2 img {
  position: relative;
  left: -100px;
  transition: 1s;
}

.content .hero2 img:hover {
  scale: 1.1;
}

.newsletter {
  position: relative;
  bottom: 30px;
  right: 40px;
}

.newsletter input {
  padding: 10px;
  font-size: 15px;
  width: 350px;
  background-color: rgb(239, 231, 221);
  color: black;

}

.newsletter h1 {
  font-size: 22px;
  margin-bottom: 4px;
}

.newsbox {
  position: relative;

}

.newsletter button {
  padding: 10px;
  background-color: black;
  color: white;
  border: none;
}


.box1,
.box2,
.box3 {
  /* border: 2px solid black; */
  border-radius: 8px;
  /* padding: 10px; */
  background-color: rgb(47, 47, 47);
  transition: 1s;
  height: 500px;
  /* font-weight: 300px; */
  /* background-position: center; */

}

.box1:hover,
.box3:hover,
.box2:hover {
  scale: 1.1;
}

.box1 h1,
.box2 h1,
.box3 h1 {
  font-size: 24px;
  margin-bottom: 30px;
  margin-top: 25px;
  color: white;
}

.box1 p,
.box2 p,
.box3 p {
  font-style: italic;
  color: white;
}

.box1 button,
.box2 button,
.box3 button {
  padding: 10px;
  color: black;
  width: 200px;
  margin-top: 40px;
}


.services i {
  font-size: 50px;
  margin-top: 20px;
  /* background-color: rgb(183, 183, 183); */
  padding: 16px;
  border-radius: 10%;
  color: black;
  width: 50px;
  height: 50px;
  position: relative;
  left: 120px;
}

footer h1 {
  color: #1395B3;
}

footer button {
  background-color: #1395B3;
}


/* FLIPCARD */

.flip-card {
  perspective: 1000px;
}

.flip-card-inner {
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  backface-visibility: hidden;
}

.flip-card-back {
  transform: rotateY(180deg);
}