@import url(https://fonts.googleapis.com/css?family=Montserrat);

/*basic reset*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100vh;
  background: url("fatih-kgqu_qs3B78-unsplash.jpg");
  background-size: cover;

  
}

html,body {
  height: 100%;
  font-family: "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}
body{
  overflow-x: hidden;
}

/* header */
header {
  z-index: 20;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 100px;
  transform: 0.5s ease;
  background: linear-gradient(0deg, transparent 0, rgba(0, 0, 0, 0.3) 60%);
  transition: all 0.6s ease-in;
  z-index: 1;
}

.header.fixed {
  position: fixed;
  padding: 10px 30px;
  background-color: black;
}
/* header{
    width: 100%;
    height: 50px;
    background: #F8F8F8;
    display: flex;
    justify-content: space-around;
    align-items: center;
  } */
.Logo {
  color: #fff;
  font-size: 1.5em;
}

/* ***NABAR*** */

.nav {
  display: flex;
  align-items: center;
}
.nav ol {
  display: flex;
  list-style: none;
}
.nav ol li {
  margin: 1em;
}
.nav ol li a {
  text-decoration: none;
  padding: 0.2em 1.2em 0.9em 1.2em;
  border-radius: 10px 10px 0 0;
  color: #fff;
  transition: all 0.4s;
  position: relative;
  z-index: 1;
}
.nav ol li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 41px;
  border-radius: 10px 10px 0 0;
  background: #853333;
  transform-origin: bottom;
  background: radial-gradient(
    circle farthest-corner at 10% 20%,
    rgba(255, 209, 67, 1) 0%,
    rgba(255, 145, 83, 1) 90%
  );
  transform: scaleY(0.05);
  z-index: -1;
  transition: all 0.4s;
}
.nav ol li a:hover::before {
  transform: scaleY(1.1);
}
.nav ol li a:hover {
  color: rgb(235, 14, 14);
}

.menu-btn {
  background: url(https://i.ibb.co/HrfVRcx/menu.png) no-repeat;
  background-size: 30px;
  background-position: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: 0.3s ease;
  display: none;
}
.menu-btn.transform {
  background: url(https://cdn-icons-png.flaticon.com/512/1828/1828778.png)
    no-repeat;
  background-size: 25px;
  background-position: center;
  transition: 0.3s ease;
  cursor: pointer;
  transform: translateY(-15px);
}
.nav.transform {
  transform: translateY(0%);
  padding: 15px;
}

/*form styles*/
.form-container {
  width: 450px;
  margin: 0 auto;
  margin-top: 140px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 70vh;
}

#msform {
  width: inherit;
  text-align: center;
  position: relative;
}

#msform fieldset {
  background: white;
  border: 0 none;
  border-radius: 3px;
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  padding: 20px 30px;
  box-sizing: border-box;
  width: 80%;
  margin: 0 10%;

  /*stacking fieldsets above each other*/
  position: relative;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
  display: none;
}
/*inputs*/
#msform input,
#msform textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
  font-family: montserrat;
  color: #2c3e50;
  font-size: 13px;
}
/*buttons*/
#msform .action-button {
  width: 100px;
  background: darkblue;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 1px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
}
#msform .action-button:hover,
#msform .action-button:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px rgb(3, 3, 104);
}
/*headings*/
.fs-title {
  font-size: 18px;
  text-transform: uppercase;
  color: red;
  margin-bottom: 10px;
}
.fs-subtitle {
  font-weight: normal;
  font-size: 15px;
  color: darkgreen;
  margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  /*CSS counters to number the steps*/
  counter-reset: step;
}
#progressbar li {
  list-style-type: none;
  color: ghostwhite;
  text-transform: uppercase;
  font-size: 12px;
  width: 33.33%;
  float: left;
  position: relative;
  font-weight: 900;
}
#progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 20px;
  line-height: 20px;
  display: block;
  font-size: 10px;
  color: #333;
  background: white;
  border-radius: 3px;
  margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
  content: "";
  width: 100%;
  height: 2px;
  background: white;
  position: absolute;
  left: -50%;
  top: 9px;
  z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
  /*connector not needed before the first step*/
  content: none;
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,
#progressbar li.active:after {
  background: #27ae60;
  color: white;
}

.question {
  font-size: 13px;
  font-weight: 300;
  color: firebrick;
  text-transform: capitalize;
}
.hi {
  font-weight: 900;
  background-color: rgb(255, 255, 189);
}
.hi:hover {
  background-color: rgb(245, 245, 147);
}

@media (max-width: 1200px) {
  .menu-btn {
    display: block;
    z-index: 1000;
  }
  header {
    justify-content: space-between;
    padding: 40px 3.5em;
  }
  .nav {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    background: #f8f8f8;
    transform: translateY(-110%);
    transition: all 0.4s;
  }
  .nav ol li a {
    color: rgb(39, 39, 39);
  }
}
@media (max-width: 700px) {
  .nav ol {
    flex-direction: column;
    text-align: center;
  }
  .nav ol li a {
    color: rgb(39, 39, 39);
  }
  .menu-btn {
    z-index: 1000;
  }
}

@media (max-width: 450px) {
  .form-container {
    width: 100%;
    margin: 0 auto;
    margin-top: 140px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 70vh;
  }
}
#footer {
  background-color: #0abcf9;
  background-image: radial-gradient(
    circle farthest-corner at 10% 20%,
    rgba(255, 209, 67, 1) 0%,
    rgba(255, 145, 83, 1) 90%
  );
  color: white;
  padding-bottom: 20px;
}

.footer_content {
  padding-top: 120px;
  padding-right: 90px;
  padding-left: 90px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.footer_links ul li {
  list-style: none;
}
.footer_links a {
  text-decoration: none;
  color: #f8f8f8;
}
.footer_linkList {
  display: flex;
  margin-top: 15px;
}

.footer_linkList li {
  margin-right: 10px;
}
.footer_social_ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.footer_social_ul li {
  list-style: none;
  font-size: 30px;
  color: white;
}
.footer_social_ul i {
  color: white;
  transition: all 0.5s;
}
.footer_social_ul i:hover {
  transform: scale(1.3);
  color: #0abcf9;
}

.footer_header {
  position: absolute;
  width: 80%;
  height: 100px;
  border-radius: 3px;
  background-image: radial-gradient(
    circle farthest-corner at 10% 20%,
    rgba(97, 186, 255, 1) 0%,
    rgba(166, 239, 253, 1) 90.1%
  );
  position: absolute;
  left: 10%;
  /* top: 50%; */
  transition: all 0.5s;
  transform: scale(0.97, 0.97) translateY(-50px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 40px;
}
.footer_header h1 {
  font-size: 30px;
}
.footer_header a {
  text-decoration: none;
  background: radial-gradient(
    circle farthest-corner at 10% 20%,
    rgba(255, 209, 67, 1) 0%,
    rgba(255, 145, 83, 1) 90%
  );
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  color: white;
  font-size: 20px;

  transition: all 250ms;
}
.footer_header a:hover {
  transform: scale(0.8);
}
.footer_header:hover {
  transform: translateY(-48px) scale(1, 1);
}

.sub-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 60px;
}
.rights span {
  font-weight: bold;
}
.credits span {
  color: burlywood;
}
@media (max-width: 898px) {
.footer_content {
    flex-direction: column;
    padding: 80px 0px 10px 30px;
  }
  .footer_links {
    margin-top: 10px;
  }
  .footer_links h1 {
    font-size: 20px;
  }
  .footer_social {
    margin-top: 10px;
  }
  .footer_social h1 {
    font-size: 20px;
  }
  .footer_header {
    padding: 0px 20px;
    height: 80px;
  }
  .footer_header h1 {
    font-size: 20px;
  }
  .footer_header a {
    font-size: 10px;
    flex: 1;
    width: 20%;
    margin-left: 20px;
    padding: 5px 10px;
    text-align: center;
  }
  .footer_social_ul li a {
    margin-right: 20px;
  }
  .sub-footer {
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  .footer_linkList {
    margin-top: 7px;
  }
}
