@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 100%;
  min-width: 300px;
}

body .navBarMob {
  display: none;
}

body header {
  height: 80vh;
  min-height: 400px;
  max-height: 1000px;
  padding-top: 3%;
  background-image: url("../images/pexels-asad-photo-maldives-3601422.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

body header .navBar {
  height: 90px;
  width: 80%;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  background-color: white;
  margin: 0 auto;
  padding: 20px;
  -webkit-box-shadow: 2px 2px 2px gray, -2px 2px 2px gray, 2px -2px 2px gray, -2px -2px 2px gray;
          box-shadow: 2px 2px 2px gray, -2px 2px 2px gray, 2px -2px 2px gray, -2px -2px 2px gray;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40% auto auto auto auto;
      grid-template-columns: 40% auto auto auto auto;
  -ms-flex-line-pack: center;
      align-content: center;
}

body header .navBar img {
  height: 30px;
  position: relative;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}

body header .navBar button {
  padding: 5px;
  border: none;
  background-color: white;
  color: blue;
  font-size: 13px;
  cursor: pointer;
  height: 90px;
}

body header .navBar button:focus {
  outline: none;
}

body header .navBar .active,
body header .navBar button:hover {
  outline: none;
  color: black;
  background-color: lightgrey;
}

body .content .holderDiv {
  width: 80%;
  background-color: #f1f1f1;
  margin: 0 auto;
  margin-top: -150px;
  margin-bottom: -40px;
}

body .content .holderDiv .userComments {
  background-color: white;
  width: 80%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin: 50px auto;
  position: relative;
  top: -75px;
  text-align: center;
}

body .content .holderDiv .userComments img {
  border: white 3px solid;
  border-radius: 50%;
  margin-top: -40px;
}

body .content .holderDiv .userComments .name {
  color: blue;
  font-weight: 600;
  font-size: 14px;
}

body .content .holderDiv .userComments .date {
  color: gray;
  font-size: 11px;
}

body .content .holderDiv .userComments h2 {
  font-weight: 400;
  font-size: 20px;
  margin: 10px;
  padding: 10px;
}

body .content .holderDiv .userComments .ratings {
  border: lightgrey solid 1px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  text-align: left;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 6fr 1fr;
      grid-template-columns: auto 6fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body .content .holderDiv .userComments .ratings .fa-thumbs-up {
  font-size: 1.75em;
  background-color: limegreen;
  color: white;
  padding: 10px 20px;
}

body .content .holderDiv .userComments .ratings .fa-thumbs-down {
  font-size: 1.75em;
  background-color: red;
  color: white;
  padding: 10px 20px;
}

body .content .holderDiv .userComments .ratings .starList {
  padding: 10px 15px;
}

body .content .holderDiv .userComments .ratings .starList .fa-star {
  color: gold;
  font-size: 1.25em;
  padding: 2.5px;
}

body .content .holderDiv .userComments .ratings .starList .starGrey {
  color: lightgrey;
}

body .content .holderDiv .userComments .ratings .starRate {
  font-weight: 700;
  font-size: 14px;
}

body .content .holderDiv .userComments p {
  font-size: 13px;
  padding: 10px;
  margin: 10px auto;
  text-align: left;
  width: 75%;
  cursor: pointer;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(white), to(rgba(255, 255, 255, 0)));
  -webkit-mask-image: linear-gradient(white, rgba(255, 255, 255, 0));
          mask-image: -webkit-gradient(linear, left top, left bottom, from(white), to(rgba(255, 255, 255, 0)));
          mask-image: linear-gradient(white, rgba(255, 255, 255, 0));
}

body .content .holderDiv .userComments p:hover {
  font-size: 15px;
  -webkit-mask-image: none;
          mask-image: none;
  -webkit-transition: all ease-in-out 200ms;
  transition: all ease-in-out 200ms;
}

body .content .holderDiv .userComments textarea {
  display: block;
  width: 70%;
  height: 100px;
  margin: auto;
  padding: 5px 10px;
}

body .content .holderDiv .userComments .comments {
  background-color: #ececec;
  width: 85%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin: auto;
  padding: 10px;
  padding-bottom: 35px;
  text-align: center;
}

body .content .holderDiv .userComments .comments .arrow {
  margin: auto;
  margin-top: -25px;
  width: 50px;
  height: 30px;
  background-color: #ececec;
  -webkit-clip-path: polygon(50% 0%, 0% 50%, 100% 50%);
          clip-path: polygon(50% 0%, 0% 50%, 100% 50%);
}

body .content .holderDiv .userComments .comments h4 {
  font-size: 14px;
}

body .content .holderDiv .userComments .comments .managerComments {
  text-align: left;
  font-size: 13px;
  cursor: pointer;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(#ececec), to(rgba(236, 236, 236, 0)));
  -webkit-mask-image: linear-gradient(#ececec, rgba(236, 236, 236, 0));
          mask-image: -webkit-gradient(linear, left top, left bottom, from(#ececec), to(rgba(236, 236, 236, 0)));
          mask-image: linear-gradient(#ececec, rgba(236, 236, 236, 0));
}

body .content .holderDiv .userComments .comments .managerComments:hover {
  font-size: 14px;
  -webkit-mask-image: none;
          mask-image: none;
  -webkit-transition: all ease-in-out 200ms;
  transition: all ease-in-out 200ms;
}

body .content .holderDiv .userComments .managerImg {
  display: block;
  width: 60px;
  height: 60px;
  margin: auto;
  margin-top: -30px;
}

body .content .holderDiv .userComments .managerName {
  font-size: 13px;
  font-weight: 700;
}

body .content .holderDiv .userComments .managerDesig {
  font-size: 12px;
  padding-bottom: 20px;
}

body .content .holderDiv .userComments button {
  cursor: pointer;
  text-transform: uppercase;
  padding: 15px 60px;
  margin: 10px;
  margin-bottom: 25px;
  border: none;
  background-color: gold;
  color: purple;
  font-weight: 700;
  font-size: 13px;
}

body .content .holderDiv .userComments button:focus {
  outline: none;
}

body .content footer p {
  padding: 20px;
  text-align: center;
  color: grey;
  font-size: 14px;
}

@media all and (max-width: 700px) {
  body header {
    padding-left: 30px;
    padding-right: 30px;
  }
  body header .navBar {
    height: 70px;
  }
  body header .navBar button {
    height: 70px;
  }
  body .content .holderDiv {
    margin-top: -50px;
    width: 100%;
  }
  body .content .holderDiv .userComments {
    width: 75%;
  }
  body .content .holderDiv .userComments h2 {
    font-size: 16px;
    font-weight: 600;
  }
}

@media all and (max-width: 450px) {
  body .navBarMob {
    display: block;
    height: 80px;
    width: 100%;
    background-color: #ffe5ff;
    padding: 20px;
  }
  body .navBarMob button {
    position: relative;
    top: 50%;
    -webkit-transform: translate(0%, -75%);
            transform: translate(0%, -75%);
    border: none;
    background-color: #ffe5ff;
  }
  body .navBarMob button:focus {
    outline: none;
  }
  body .navBarMob .hidden {
    display: none;
  }
  body .navBarMob .fa-bars {
    font-size: 30px;
  }
  body .navBarMob .fa-times {
    font-size: 35px;
  }
  body .navBarMob img {
    height: 40px;
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-65%, -35%);
            transform: translate(-65%, -35%);
  }
  body .navBarMob .modal {
    display: none;
    position: absolute;
    top: 80px;
    left: 0px;
    width: 350px;
    height: 200px;
    background-color: #ffecff;
  }
  body .navBarMob .modal ul {
    list-style: none;
    border: purple solid 2px;
  }
  body .navBarMob .modal ul li {
    padding-left: 15px;
    width: 100%;
    height: 50px;
    border-bottom: purple 1px solid;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 13px;
  }
  body .navBarMob .modal ul li a {
    text-decoration: none;
    color: maroon;
  }
  body .navBarMob .modal ul li:hover,
  body .navBarMob .modal ul .active {
    background-color: #ec74ec;
  }
  body header {
    height: 400px;
  }
  body header .navBar {
    display: none;
  }
  body .content .holderDiv {
    padding-top: 100px;
  }
  body .content .holderDiv .userComments {
    width: 100%;
    margin-top: 75px;
  }
}

@media all and (min-width: 1000px) {
  body header .navBar {
    width: 70%;
    height: 100px;
    padding-left: 30px;
  }
  body header .navBar button {
    height: 100px;
  }
  body .content .holderDiv {
    width: 70%;
  }
  body .content .holderDiv .userComments {
    width: 75%;
    position: relative;
    top: -125px;
  }
  body .content .holderDiv .userComments h2 {
    font-size: 24px;
  }
}
/*# sourceMappingURL=style.css.map */