@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200;400&family=Merriweather:wght@300;700;900&family=Montserrat&family=Roboto+Slab:wght@500;700&display=swap');
*{
  font-family: 'Dosis', sans-serif;
  margin: 0;
  padding: 0;
}
#loading{
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #e4eff2 url("https://media.giphy.com/media/xTk9ZvMnbIiIew7IpW/giphy.gif") no-repeat center center;
  z-index: 99999;
}
.Mains{
  background-color: #47455A;
  padding: 20px; 
}
.main-Wrap{
  background-image: linear-gradient(32deg,#E3FCF6,#ffe7e7ed), url(../Media/world.png);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  border-radius: 25px;
}
nav{
  height: 70px;
  padding-top: 40px;
}
.heroImg img{
  width: 600px;
}
nav h1{
  font-weight: 400;
  /* font-family: 'Roboto Slab', serif; */
}
nav div ul{
  margin: 0;
}
.hero {
  min-height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.heroflex {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.hero-content {
  max-width: 500px;
  margin-right: auto;
}
.hero-content p {
  font-size: 20px;
}

.hero h1 {
  font-family: 'Roboto Slab', serif;
  font-size: 68px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  background-color: #47455A;
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #d14000;
}
.mg-auto button {
  width: 200px;
  height: 56px;
  font-size: 20px;
  color: #458ff6;
  flex-shrink: 0;
  border-radius: 55px;
  border: 1.4px solid #458ff6;
}
.mg-auto button:hover {
  color: #ffffff;
  background-color: #458ff6;
}
.mg-auto {
  /* max-width: 100vw !important; */
  margin: 40px auto;
  text-align: center;
}
@media only screen and (max-width:1000px){
  .heroflex {
    display: flex;
    width: 100%;
    margin-top: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .hero-content {
    max-width: 500px;
    margin: auto;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width:760px){
  .heroImg img{
    width: 400px;
  }
}
@media only screen and (max-width:500px){
  .heroImg img {
    width: 300px;
  }
  .hero h1 {
    font-family: 'Roboto Slab', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
  }
}