@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
:root {
    --royal-violet: #6A5AE0;
    --dull-lavender:#9087E5;
    --pink-salmon: #FF8FA2;
    --pastel-pink: #FFD6DD;
    --hawkes-blue: #C4D0FB;
    --mint-tulip: #C9F2E9;
    --grey-one:#49465F;
    --grey-two:#858494;
    --grey-three:#CCCCCC;
    --grey-four:#E6E6E6;
    --grey-five:#EFEEFC;
}

a{
    text-decoration: none;
}

li{
    list-style: none;
}


*{
    font-family: "Rubik", sans-serif;
    margin: 0;
    padding: 0;
}

.header{
    position: fixed;
    width: 100%;
    background-color:var(--royal-violet);
    z-index: 10;
}

#nav-menu{
    font-size:20px;
    padding: 15px 5%;
    display: flex;
    justify-content:space-between;
    align-items: center;
    flex-wrap: wrap;
    color: white;
}

#logo-img{
    height:50px;
}

.logo-cont{
    display: flex;
    justify-self: center;
    align-items: center;
    gap: 20px;
}

.menu{
    flex:0.9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:10px;
}

.nav-links{
    flex: 0.8;
    display:flex;
    justify-content: space-evenly;
    gap:20px;
}

.nav-links>a{
    text-decoration: none;
    color: white;
}

.login-signup{
    border-radius: 10px;
    padding:15px;
    background-color:transparent;
    border: 2px solid white;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.login-signup:hover{
    color:var(--royal-violet);
    border: 2px solid white;
    background-color: white;
    scale: 1.05;
    flex-shrink: 0;
}

.login-signup:hover >a{
    color:var(--royal-violet);
    
}

.login-signup>a{
    text-decoration: none;
    color: white;
    font-size: 16px;
}

.login-signup>a>img{
    border-radius: 100%;
    height: 40px;
    margin-right: 10px;
}

.logo-menu{
    display: none;
}

.logo-close{
    display: none;
}

.menu-icon{
    height: 40px;
}

.babypink{
    color: var(--pastel-pink);
}

.salmonpink{
    color: var(--pink-salmon);
}

.main{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 5%;
  padding-top: 100px;
}

.main-img>img{
  height: 100%;
  width: 100%;
}

.main-cont>h2{
  font-size: 40px;
  color: var(--grey-one);
  margin-bottom: 20px;  
}

.main-cont>p{
  font-size: 20px;
  color: var(--grey-two);
  margin-bottom: 20px; 
  width: 70%; 
}

.main-btn{
  font-size: 20px;
  padding:10px;
  border-radius: 20px;
  font-weight: 600;
  color: white;
  background-color: var(--royal-violet);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  border: 5px solid var(--royal-violet);
}

.main-btn:hover{
  scale:1.05;
  background-color: #fff;
  font-weight: 600;
  color: var(--royal-violet);
}

.hero{
  padding: 5%;
}

.hero-cont{
  text-align: center;
}
.hero-cont>h5{
  color: var(--grey-two);
  font-size: 20px;
}

.hero-cont>h2{
  color: var(--grey-one);
  font-size: 40px;
  margin-bottom: 10px;
}

.grid-cont{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.grid-item{
  text-align: center;
  padding: 20px;
  max-width: 300px;
  min-height: 150px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--grey-two);
  cursor: pointer;
  transition: all 0.2s ease;
}

.grid-item:hover{
  scale: 1.05;
}

.grid-item>div>h4{
  font-size: 20px;
  color: var(--grey-one);
  margin-bottom: 10px;
}

.grid-item>i{
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--grey-one);
}

.services-section{
  padding: 5%;
}

.services-section>h1{
  font-size: 40px;
  margin-bottom: 30px;
  color: var(--grey-one);
  text-align: center;
}

.service-card{
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-wrap: wrap;
  gap: 20px;
}

.card{
  width: 400px;
  color: var(--grey-two);
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  /* padding:20px; */
}

.card:hover{
  scale: 1.05;
}

.card>h4{
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--grey-one);
  padding:0px 20px 0px 20px ;
}

.card>p{
  padding:0px 20px 20px 20px ;
}

.card>img{
  width: 100%;
  height: 300px;
  margin-bottom: 30px;
  border-radius: 20px 20px 0px 0px;
}


/* =========================footer start==================================== */
.footer{
  position: relative;
  margin:0px 5%;
  padding-top: 50px;
  padding-bottom: 200px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  overflow: hidden;
  border-top: 1px solid var(--grey-three);
}

.touch>h3{
  color: var(--grey-one);
  margin-bottom: 20px;
}

.touch>p{
  color: var(--grey-two);
  margin-bottom: 20px;
  width: 70%;
}

.touch>form>input{
  padding: 10px;
  /* border: none; */
  border-radius: 6px;
}

.touch>form>button{
  padding: 10px;
  background: var(--royal-violet);
  border: none;
  border-radius: 6px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.touch>form>button:hover{
  padding: 10px;
  background: white;
  border: 1px solid var(--royal-violet);
  color: black;
}

.footer-menu>h3{
  margin-bottom: 20px;
}

.footer-menu>ul{
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-menu>ul>li>a{
  color: var(--grey-two);
}

.footer-help>h3{
  margin-bottom: 20px;
}

.footer-help>ul{
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-help>ul>li>a{
  color: var(--grey-two);
}

.footer-team>h3{
  margin-bottom: 20px;
}

.socials>a{
  color: var(--grey-two);
  font-size: 25px;
  margin-right: 5px;
}

.footer-bg {
  position: absolute;
  bottom: 0;
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigB8iI5tb8WSVBuVUGc9UjjB8O0708X7Fdic_4O1LT4CmLHoiwhanLXiRhe82yw0R7LgACQ2IhZaTY0hhmGi0gYp_Ynb49CVzfmXtYHUVKgXXpWvJ_oYT8cB4vzsnJLe3iCwuzj-w6PeYq_JaHmy_CoGoa6nw0FBo-2xLdOPvsLTh_fmYH2xhkaZ-OGQ/s16000/footer_bg.png")
      no-repeat scroll center 0;
  width: 100%;
  height: 266px;
}

.footer-bg .footer-bg-one {
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEia0PYPxwT5ifToyP3SNZeQWfJEWrUENYA5IXM6sN5vLwAKvaJS1pQVu8mOFFUa_ET4JuHNTFAxKURFerJYHDUWXLXl1vDofYXuij45JZelYOjEFoCOn7E6Vxu0fwV7ACPzArcno1rYuVxGB7JY6G7__e4_KZW4lTYIaHSLVaVLzklZBLZnQw047oq5-Q/s16000/volks.gif")
      no-repeat center center;
  width: 330px;
  height: 105px;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  left: 30%;
  -webkit-animation: myfirst 22s linear infinite;
  animation: myfirst 22s linear infinite;
}

.footer-bg .footer-bg-two {
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhyLGwEUVwPK6Vi8xXMymsc-ZXVwLWyXhogZxbcXQYSY55REw_0D4VTQnsVzCrL7nsyjd0P7RVOI5NKJbQ75koZIalD8mqbMquP20fL3DxsWngKkOLOzoOf9sMuxlbyfkIBTsDw5WFUj-YJiI50yzgVjF8cZPHhEjkOP_PRTQXDHEq8AyWpBiJdN9SfQA/s16000/cyclist.gif")
      no-repeat center center;
  width: 88px;
  height: 100px;
  background-size: 100%;
  bottom: 0;
  left: 38%;
  position: absolute;
  -webkit-animation: myfirst 30s linear infinite;
  animation: myfirst 30s linear infinite;
}

@-moz-keyframes myfirst {
  0% {
      left: -25%;
  }
  100% {
      left: 100%;
  }
}

@-webkit-keyframes myfirst {
  0% {
      left: -25%;
  }
  100% {
      left: 100%;
}
}

@keyframes myfirst {
  0% {
      left: -25%;
  }
  100% {
      left: 100%;
  }
}

/*************footer End*****************/


@media (max-width:950px){
  #nav-menu{
      font-size: unset;
  }
  .login-signup>a{
      font-size: unset;
  }
  .logo-menu{
      display: hidden;
      justify-self: end;
  }
  .logo-close{
      display: hidden;
      justify-self: end;
  }
  .hero-img>img{
      height:auto;
  }
  .main{
    flex-direction: column;
  }
}


@media (max-width:650px){

  .hid{
      display: none !important;
  }
  #nav-menu{
      display: grid;
      grid-template-columns: 1fr 1fr;
      justify-content: space-between;
  }
  .logo-menu{
      display: unset;
      justify-self: end;
  }
  .logo-close{
      display: unset;
      justify-self: end;
  }
  .logo-cont{
      justify-self: unset;
  }
  .nav-links{
      flex-direction: column;
  }
  .menu{
      flex-direction: column;
      grid-column: span 2;
      padding: 20px;
  }
  .hero-cont{
      flex:unset;
  }
  .hero-cont>p{
      width: 100%;
  }
  .hero-img{
      display: none;
  }
  .main-cont>h2{
    font-size: 30px;
 
  }
  
  .main-cont>p{
    font-size: unset;
  }

  .main-btn{
    font-size: unset;
  }

  .hero-cont>h2{
    font-size: 30px;
  }

  .services>h1{
    font-size: 30px;
  }
}