@import url('https://fonts.googleapis.com/css2?family=Macondo&display=swap');

*{
    padding: 0;
    margin: 0;
}
body{
    font-family: Arial;
}
.header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header h1{
    color: rgb(255, 255, 255);
    font-weight: bolder;
    font-size: 35px;
    margin-left: 10px;
    margin-bottom: -90px;
}
.logo span{
    font-size: 10px;
    /* margin-left: 40px; */
    color: yellow;
}
nav ul{
    margin-top: -40px;
    padding-top: -30px;
}
nav li{
    text-decoration: none;
    list-style-type:none;
    margin: 5px;
    color: rgb(255, 255, 255);
    padding: 4px;
    font-size: 16px;
    font-weight: bolder;
}
nav a{
    color: black;
    text-decoration: none;
}
nav li:hover{
    color: orangered;
    cursor: pointer;
    transition: 0.4s;
}
.header li{
    display: inline;
}
.front{
    background-image: url('front.webp');
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.green{
    /* background-color: rgb(126, 255, 114,.35); */
    height: 100vh;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 50px;
    padding-left: 30px;
    padding-right: 30px;
    text-shadow: 1px 1px 20px black;
    line-height: 100px;
    word-spacing: 2px;
    letter-spacing: 2px;
}
.intro{
    padding-top: 110px;
}
.intro>h2>em{
    font-style: normal;
    color: yellow;
    margin-top: 10px;
    margin-bottom: -100px;
}
.intro span{
    font-size: 50px;
    margin-top: -100px;
    display: inline-block;
    color: #fbff00;
}
.about{
    margin-top: 50px;
    display: flex;
    margin-bottom: 50px;
}
.about>img{
    height: 500px;
    width: 400px;
    margin-left: 30px;
    border-radius: 10px;
}
.about h3{
    margin-top: 20px;
    font-size: 35px;
    text-align: center;
    margin-bottom: 20px;
}
.about h6{
    text-align: center;
    margin-top: -10px;
    margin-bottom: 20px;
    font-size: 20px;
    color: rgb(77, 77, 77);
}
.about>div{
    margin-left: 30px;
    margin-right: 100px;
}
.about h1{
    font-size:50px;
}
.domain h1{
    margin-top: 20px;
    padding-bottom: 50px;
    font-size:60px
}
.title,.about h1,.domain h1,.get h1{
    margin-bottom: 30px;
    font-family: "Macondo", cursive;
    font-weight: 400;
    font-style: normal;
}
.title{
    font-size: 30px;
}
.about p{
    letter-spacing: 1.5px;
    text-align: justify;
    font-size: 20px;
}

img {
  width: 100%;
  height: 100%;
  display: block;
}

.domain{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 70px;
}
.container {
  width: 100%;
  width: 90%;
  height: 350px;
  display: flex;
  gap: 10px;
  margin-inline: 50px;
}

.card {
  width: 100px;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;

  display: flex;
  /* align-items: flex-end; */
  flex-grow: 1;
  cursor: pointer;
  position: relative;
  transition: flex-grow 1s cubic-bezier(0.16, 1, 0.3, 1);

  --transition-timing: 0.35s;
}
/* .card.active {
  flex-grow: 100;
} */
.card:hover {
    /* width: 1000px; */
  flex-grow: 7;
}
.card a{
    text-decoration: none;
    color: white;
}
.card  .background {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.4);
  z-index: -1;
  transition: var(--transition-timing) ease;
}
.card:hover  .background {
  filter: brightness(1);
}

.card  .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 20px;
  overflow: hidden;
  transition: var(--transition-timing);
  z-index: 10;
}
.card:hover > .card-content {
  inset: 20px;
  top: auto;
}

.card-content > * {
  transition: var(--transition-timing);
}
.card:hover .profile-image > svg {
  stroke: rgb(110, 252, 205);
}

.card-content  .title , .lang{
  /* white-space: pre; */
  margin-left: 10px;
  translate: 0 100%;
  opacity: 0;
}
.card:hover .title,.card:hover .lang {
  color: rgb(255, 255, 255);
  text-shadow: 2px 2px 10px black;
  opacity: 1;
  translate: 0 0;
}
.card:hover .lang{
    font-size: 12px;
}

.card > .backdrop {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
  z-index: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
}
.get{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    background-color: rgba(0, 191, 0, 0.388);
    padding-bottom: 30px;
}
.tou h3{
    font-size: 30px;
    font-family: "Macondo", cursive;
    font-weight: 400;
    font-style: normal;
}
.tou{
    display: flex;
    gap:100px;
    font-size: 20px;
}
.address,.phone,.em{
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 200px;
}
.cont{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    background-color: rgb(205, 205, 205);
    padding-bottom: 30px;
}
.cont h1,.get h1{
    padding-top: 30px;
    font-family: "Macondo", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 60px;
    margin-bottom: 30px;
}
.cont input{
    margin-left: 10px;
    padding: 10px;
    align-items: center;
    margin-top: 10px;
    width: 60vh;
    border-radius: 5px;
    border: none;
}

.cont label{
    font-size: 25px;
    margin-left: -20px;
}

.text{
    margin-left: 15px;
    margin-top: 20px;
}

.cont button{
    border-radius: 10px;
    border: none;
    padding: 20px;
    width: 300px;
    margin-left: 50px;
}

.cont button:hover{
    cursor: pointer;
    border: 1px solid black;
}