.grid {
  min-height: 100vh;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto auto auto auto auto;
  grid-template-rows: auto auto auto auto auto;
}

.text-block {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}

.body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.container-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.div-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(170, 45, 45, .5)), to(rgba(170, 45, 45, .5)));
  background-image: linear-gradient(180deg, rgba(170, 45, 45, .5), rgba(170, 45, 45, .5));
}

.paragraph {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

.div-block-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.char-div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 16px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
  background-color: grey;
  font-family: 'Changa One', Impact, sans-serif;
  color: #fff;
  font-size: 64px;
  text-align: center;
}

.char-div:hover {
  margin: 16px;
  padding: 0px;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  -ms-grid-row-align: auto;
  align-self: auto;
  border-radius: 50%;
  background-color: red;
}

.char-div.o_col {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0df81c), to(#0df81c));
  background-image: linear-gradient(180deg, #0df81c, #0df81c);
}

.text-block-2 {
  display: block;
  float: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-block-3 {
  font-family: 'Changa One', Impact, sans-serif;
  font-size: 48px;
}

.text-block-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.listitem {
  padding-bottom: 20px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 18px;
}

.section {
  padding: 16px;
  background-color: grey;
}

.container-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.button {
  display: block;
  margin-right: auto;
  margin-left: auto;
  border-radius: 24px;
  background-color: blue;
  font-family: 'Droid Sans', sans-serif;
  font-weight: 700;
}

.body-2 {
  height: 100%;
  border-radius: 32px;
  color: #fff;
}

.productdiv {
  margin: 12px;
  padding: 12px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 3px 3px 16px 1px hsla(0, 0%, 8%, .64);
}

.container-4 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.products {
  padding: 32px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#93c7d4), to(#93c7d4));
  background-image: linear-gradient(180deg, #93c7d4, #93c7d4);
  color: #000;
}

.producttitle {
  border-color: grey;
  border-bottom-style: solid;
  border-bottom-width: 4px;
  font-family: 'Changa One', Impact, sans-serif;
  color: grey;
  font-size: 24px;
}

.productdesc {
  padding: 16px;
  border-style: none none solid;
  border-width: 1px;
  border-color: grey;
  font-family: Georgia, Times, 'Times New Roman', serif;
  color: grey;
}

.fullwdiv {
  padding: 24px 64px 24px 32px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #00008b;
  text-transform: uppercase;
}

.fullwdiv:hover {
  background-color: blue;
}

.section-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-3 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.div-block-4 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.fullwheader {
  margin-top: 0px;
  font-family: Exo, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.paragraph-2 {
  text-transform: none;
}

.fullwtext {
  font-family: Exo, sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  text-transform: none;
}

.product-section {
  padding: 32px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(3, 164, 255, .52)), to(rgba(3, 164, 255, .52)));
  background-image: linear-gradient(180deg, rgba(3, 164, 255, .52), rgba(3, 164, 255, .52));
}

.grid-2 {
  min-height: 100vh;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.website-name {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  font-size: 48px;
  line-height: 48px;
}

@media (max-width: 991px) {
  .producttitle {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .container-4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .section-3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}

@media (max-width: 479px) {
  .products {
    padding-right: 8px;
    padding-left: 8px;
  }
}