@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;500;700;800&display=swap');

:root {
  /* fonts */
  --mainText: url;
  --secondaryText: ;

  /* class 1 */
  --fontSizeMain1: 30px;
  --fontSizeSecondary1: 60px;

  /* class 2 */
  --fontSizeMain2: 15px;
  --fontSizeSecondary2: 30px;

  /* colors */
  --mainColor: #ffffff;
  --secondaryColor: #000000;
  --footerBgColor: #e4e4e4;
  --bottonColor: #ffa500;
  --textColorMain: #602d91;
  --textColorSecondary: #6767ec;
  --textColorPartial: #707070;
}

/* Home Page */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 15px;
  transition: .8s;
  font-family: Montserrat, monospace;
}

h3 {
  color: var(--textColorMain);
}

html {
  display: block;
}

body {
  top: 0px;
  padding: 0;
  margin: 0;
}

.btn {
  background-color: var(--bottonColor);
  color: var(--mainColor);
  font-size: var(--mainText);
  font-weight: bold;
  width: 8em;
  height: 8em;
  border: none;
  border-radius: 90px;
  cursor: pointer;
  border-collapse: collapse;

}

/* HEADER */



/* MAIN */

.main-cnt {
  padding-top: 5em;
  display: block;
  background-color: var(--mainColor);

}

.service-heading {
  padding: 5em;
  text-align: center;
}

.service-heading h3 {
  color: var(--textColorSecondary);
  font-size: 25px;
  padding: 1em;
}

/* service section */

.service-section {
  display: flex;
  height: auto;
  gap: 5em;
  padding-top: 3em;
  padding-right: 5em;
  padding-left: 5em;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;

}

.service-card {
  background-color: var(--mainColor);
  width: 20em;
  border-radius: 3px;
  padding: 2em 2em;
  line-height: 2em;
  border: none;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 1s;
}

.service-text {
  font-size: 30px;
}

.service-text ul {
  list-style-type: none;
}

.download-cnt {
  padding-top: 3em;
  padding: 8em;
}

.app-cnt {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  padding-top: 5em;
  height: auto;
  padding-bottom: 8em;
  background-color: var(--mainColor);
  flex-wrap: wrap;
  align-items: center;
}

.app-text h3 {
  padding-bottom: 1em;
  font-size: 30px;

}

.review-section {
  display: flex;
  flex-direction: column;
  height: 80vh;
  padding-left: 8em;
  padding-right: 8em;


}

.review-heading {

  text-align: center;
  padding-bottom: 2em;
}


.review-cnt {
  background-color: var(--footerBgColor);
  height: 50vh;
  padding-top: 3em;
  padding-left: 3em;
}


.form-section {
  padding: 3em;
  height: 50vh;


}

.form-heading h3 {
  padding: 1em;
  font-size: 30px;
}

.contact-form {
  width: auto;
  height: auto;
  background-image:
    linear-gradient(to right, rgb(96, 45, 145), rgb(96, 45, 145, 0.1)),
    url("https://images.unsplash.com/photo-1550831107-1553da8c8464?ixid=MXwxMjA3fDB8MHxzZWFyY2h8MTZ8fGRvY3RvcnN8ZW58MHx8MHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-bottom: 1em;
  border-radius: 2px;
}

#form-btn {
  margin-top: 5px;
  width: 40%;
  height: 3em;
  border-radius: 2px;
  float: right;
  margin-right: 1em;

}

#form-btn button :hover {
  background-color: var(--textColorSecondary);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  transition: .5s;
  margin-top: 5px;
  width: 40%;
  height: 3em;
  border-radius: 2px
}



input {
  height: 4em;
}

textarea {
  height: 10em;

}

textarea,
input {
  /* border-bottom:1px solid wheat; */
  background-color: rgba(255, 255, 255, 0.2);
  padding-left: 1em;
  padding-bottom: 6px;
  border: none;
  border-collapse: collapse;
  color:var(--footerBgColor);
  margin-bottom: 3px;
  border: none;
  width: 100%;

}

#form-flex {
  display: flex;
  flex-direction: row;
  gap: 5px;
}

::placeholder {
  color: var(--mainColor);
  background-color: transparent;
}

/* FOOTER */

footer {
  display: block;
  background-color: var(--footerBgColor);
  height: auto;
  width: 100%;

}

.footer-section {
  font-size: 10px;
  padding: 3em 4em;
  display: flex;
  flex-direction: row;
  gap: 6em;
  justify-content: space-evenly;
  padding-bottom: 4em;
}

.footerLocation {
  padding-top: 1em;
}

.footerLocation p {
  line-height: 1.5em;
}

.flex-item h3 {
  padding-bottom: 1em;
  font-size: 25px;
}

.flex-item ul li {
  line-height: 1.5em;
}

#socialIcon {
  background-color: var(--mainColor);
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-bottom: 3em;
}

.icon {
  padding-top: 3em;
}

#copyright {
  background-color: var(--mainColor);
  text-align: center;
}

@media(max-width:650px) {



  * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-size: 12px;
    font-family: Montserrat, monospace;

  }

  .container {
    width: 100%;
  
  }

  .nav {

    width: 100%;
    height: 100vh;
    top: -900px;
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }



  .right {
    height: auto;

    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;



  }

  .nav ul {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    justify-content: center;
    align-items: center;
  }

  .nav ul li :hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    transition: .3s;
    color: var(--textColorSecondary);
  }


  li a {
    display: block;
    padding: 14px 14px;
    text-decoration: none;
    color: var(--textColorMain);

  }


  #nav-btn {
    display: block;
    color: var(--bottonColor);
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);

    height: 2.5em;
    align-items: center;
    margin-bottom: 2em;

  }

  #nav-btn:hover {
    color: var(--mainColor);
    background-color: var(--bottonColor);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    transition: .5s;

  }



  .change {
    top: 0;


  }

  .hamburger-menu {
    width: 100%;
    height: 30px;
    display: flex;
    position: fixed;
    scroll-behavior: none;
    margin-top: 2em;
    top: 1em;
    right: 1em;
    cursor: pointer;
    /* background-color: white; */
    align-items: flex-end;
    flex-direction: column;
    justify-content: space-around;

  }

  .nav-item {
    list-style: none;
    margin: 25px;
    text-decoration: none;
  }


  .line {
    width: 35px;
    /* width: 100%; */
    height: 4px;
    background-color: var(--bottonColor);
    transition: all 0.8s;
  }

  .change .line-1 {
    transform: rotateZ(-405deg) translate(-8px, 6px);
  }


  .change .line-2 {
    opacity: 0;
  }


  .change .line-3 {
    transform: rotateZ(405deg) translate(-8px, -6px);
  }

  /* service-section */


  .service-section {
    display: flex;
    height: auto;
    gap: 5em;
    padding-top: 3em;
    /* padding-right: 5em;
  padding-left: 5em; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

  }

  .service-card {
    background-color: var(--mainColor);
    border-radius: 3px;
    border: none;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 1s;
  }

  /*app-cnt  */


  .app-cnt {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    /* padding-top: 5em; */
    gap: 3em;
    height: auto;
    padding-bottom: 8em;
    background-color: var(--mainColor);
    flex-wrap: wrap;
    align-items: center;
  }

  /* footer */



  footer {
    display: block;
    background-color: var(--footerBgColor);
    height: auto;
    width: 100%;
  }

  .footer-section {
    font-size: 10px;
    padding: 3em 4em;
    display: flex;f
    flex-direction: column;
    gap: 6em;
    justify-content: space-evenly;
    padding-bottom: 4em;
  }

  .footerLocation {
    padding-top: 1em;
  }

  .footerLocation p {
    line-height: 1.5em;
  }

  .flex-item h3 {
    padding-bottom: 1em;
    font-size: 25px;
  }

  .flex-item ul li {
    line-height: 1.5em;
  }

  #socialIcon {
    background-color: var(--mainColor);
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-bottom: 3em;
    border-radius: 1px solid var(--textColorPartial);

  }



}
