@import url('https://fonts.cdnfonts.com/css/berlin-sans-fb-demi');
body{
    padding: 0;
    margin: 0;
}
#content{
  display: none;
}
.hide{
  display: none;
}
.title1{
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background-image: linear-gradient(90deg,white, #aed2e0,#f6f6f8, #aed2e0, #f6f6f8, #aed2e0,white); */
  background-color: white;
  /* background-size: 400% 400%; */
  animation: 12s myGradient infinite;
}
@keyframes myGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.main-title{
  font-family: 'Berlin Sans FB Demi', sans-serif;
  color: rgb(19, 125, 170);
  padding: 10px;
  padding-bottom: 0;
}

.main-title h1,p{
  margin: 0;
  padding: 0;
}
.uppertext{
  padding: 5px 20px;
  margin: 5px 0;
  overflow: hidden;
  border-radius: 40px 0 40px 0;
  background-size: 400% 400%;
  background-image: linear-gradient(-45deg, #679c2b, #af4f79, #2e58ef, #ab4d79, #a9994b);
  animation: 12s myGradient infinite;
}
.uppertext p {
  font-size: 1.2em;
  padding: 0px;
   margin: 0;
  color: white;
}
.img img{
  width: 150px;
}
.img{
  padding: 10px;
}


.scrolling-text {
  white-space: nowrap;
  /* Prevent text from wrapping */
  background-color: rgb(19, 125, 170);
  color: white;
  height: 34px;
  overflow: hidden;
}

.scrolling-text p {
  animation: scrollText 25s linear infinite;
  /* Animate scrolling */
  font-size: 1.2em;
  padding: 0;
  padding-top: 5px;
  margin: 0;
}


/* Keyframes for scrolling effect */
@keyframes scrollText {
  0% {
    transform: translateX(100%);
    /* Start from right */
  }

  100% {
    transform: translateX(-100%);
    /* End at left */
  }
}
@keyframes myGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}
.background{
    
  background-image: url("/images/contactimg/pexels-arina-krasnikova-5712442.jpg");
  background-size: cover;
  /* width: 100%; */
  /* height: 100vh; */
}
.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* background-image: url("/images/contactimg/pexels-arina-krasnikova-5712442.jpg"); */
  background-size: cover;
  
}
.box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly ;
    padding: 20px;
    /* margin: 10px auto; */
}
.contact{
    min-width: 270px;
    max-width: 700px;
    margin: 10px ;
    padding: 15px;
    /* margin: 30px 40px; */
  /* padding: 30px; */
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(40px);
  /* color: rgb(152, 127, 96); */
}
.enquiry{
    min-width: 270px;
    max-width: 500px;
    margin: 10px ;
    padding: 15px;
    
    background-color: rgba(184, 151, 151, 0.5);
    backdrop-filter: blur(40px);
    border-radius: 20px;
}
form input , textarea{
    padding: 10px;
    min-width: 260px;
    max-width: 500px;
    border-radius: 10px;
}
.footer{
  background-color: #0b395f;
  color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
 }
 .subfooter{
  margin: 20px;
  /* padding: 5px; */
  max-width: 400px;
 }
 .subfooter a{
  color: white;
  text-decoration: none;
 }

 @media only screen and (max-width: 500px){
  .uppertext{
    display: none;
  }
  .img img{
    display: none;
  }
  

 }


 @media only screen and (max-width: 1100px){
  .uppertext{
    display: none;
  }
  .img img{
    width: 100px;
  }
  

 }
