/* ----------------------
----- Initial setup -----
---------------------- */


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

p {
  line-height: 1.4em;
  text-align: center;
  color: #000000;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 50px;
  color: #fff;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
}

.restrict__container {
  max-width: 900px;
  margin: auto;
}

/* ---------------------------
------- Flexbox Module -------
--------------------------- */
.flex__container {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;

  font-family: "Montserrat", sans-serif;
  font-weight: 400;

}

.flex__area100 {
  flex: 1 1 100%;

  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  align-items: center;
}

.flex__area50 {
  flex: 1 1 50%;

  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  align-items: center;
}

/* ---------------------------
--------- Hero Module --------
--------------------------- */
.hero__container {
  width: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url("../img/hero.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 150px 20px;

  /* Align content centereed */
  display: flex;
  align-items: center;
}

.hero__header {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 50px;
  text-align: center;
  color: #fff;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.75);
}

.hero__header p {
  font-weight: 400;
  font-size: 20px;
  text-transform: capitalize;
  color: #fff;
}

.hero__area50 {
  flex: 1 1 50%;
}


/* ------------------------------------
------------- Form Module -------------
------------------------------------ */
.form__container {
  width: 100%;

  margin: auto;
}

.form__self {
  width: 100%;
  height: 100%;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
}

.form__field__container {
  flex: 1 1 33%;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.form__label {
  display: block;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 15px;

  margin-bottom: 5px;
}

.form__input[type=text] {
  display: block;
  width: 100%;
  height: 25px;
  padding-left: 5px;

  border: none;
}

.form__btn {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 20px;
  width: 150px;
  height: 30px;
  font-size: 15px;
  background: #0d7f81;
  color: #ffffff;
  cursor: pointer;

  border: none;
}

.form__btn:hover {
  color: #ffffff;
  background: #064b4d;
}

/* =================================
============== custom ==============
================================= */
.divide {
  background: #3e2662;
  height: 1px;

  margin: 0px 150px;
}

.rate img{
  width: 100%;
}

.logo {
  width: 400px;
}

.BlockOne {
  background: #3e2662;
  padding: 50px;
}
.BlockOne p {
  margin-top: 30px;
  color: #ffffff;
}

.BlockTwo {
  padding: 50px;
}

.BlockTwo p {
  margin-top: 30px;
}

.BlockThree {
  padding-bottom: 30px;
}

.BlockFour {
  background: #10b5b7;
  padding: 30px;
}

.BlockFour p{
  color: #ffffff;
  font-weight: 700;
  font-size: 25px;
}


.BlockFive {
  padding: 30px;
}

.BlockSix {
padding-bottom: 50px;
}

.cta {
  font-weight: 700;
  font-size: 25px;
}

.BlockSeven {
  background: #3e2662;
  padding: 30px;
  font-size: 12px;
}

.BlockSeven p {
  padding-top: 20px;
  color: #ffffff;
}

a {
  text-decoration: none;
  font-weight: 700;
  color: #10b5b7;
}

a:hover {
  color: #0d7f81;
}


/* =================================
============== Media ==============
================================= */

@media only screen and (max-width: 650px) {
  .flex__container {
    display: block;
  }

  .apps img{
    margin: 10px;
    width: 300px;
  }

  .BlockOne, .BlockTwo {
    padding: 30px;
  }

}