* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  @import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:wght@300;400;500;700&display=swap");
  font-family: "Lato", sans-serif;
}

/* Containers and Sections */

body {
  display: grid;
  place-items: center;
  min-height: 100%;
  grid-template-rows: auto 1fr auto;
  background-color: rgba(234, 234, 234, 0.7);
}

.endorsement {
  display: grid;
  place-items: center;
  width: 100%;
  padding: 1em;
}

.container {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1300px;
  padding: 60px 0px;
}

.reviewSection {
  display: grid;
  place-items: center;
  background-color: rgb(18, 44, 79);
  padding: 2em 16em 1em 16em;
}

.reviews {
  display: grid;
  place-items: center;
  width: 80%;
  padding: 2em;
}

.reviewDiv {
  display: grid;
  place-items: center;
  grid-template-rows: 1fr auto;
}

.commentSection {
  display: grid;
  place-items: center;
  padding-top: 1em;
}

.divider {
  width: 500px;
  border-bottom: 2px solid rgb(218, 180, 81);
  border-top: 2px solid rgb(218, 180, 81);
  margin-bottom: 1em;
}

.card {
  background-color: #ffffff;
  padding: 35px 18px;
  border-radius: 10px;
  display: inline-block;
  box-sizing: border-box;
  box-shadow: 0px 4px 4px 0px #0000000d;
}

.grid-wrapper {
  display: flex;
  gap: 35px;
}

.column-main {
  display: flex;
  flex-direction: column;
  width: 66%;
  gap: 35px;
}

.column-child {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 35px;
}

.column {
  display: flex;
  flex-direction: column;
  width: 33%;
  gap: 35px;
}

.grid-item-main {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
}

.grid-item-item1 {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
}

.grid-item-item2 {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
}

.thoughts-title {
  font-family: Lato, sans-serif;
  font-size: 32px;
  font-weight: 400;
}

.thoughts-subttle {
  font-family: Lato, sans-serif;
  font-size: 21px;
  font-weight: 400;
}

.thoughts-button-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 110px;
}
.thoughts-subttle,
.thoughts-title {
  text-align: center;
}
.thoughts-anchor {
  text-decoration: none;
}

.thoughts-button {
  border: 2px solid #07203e;
  padding: 10px 74px;
  font-size: 22px;
  font-family: Montserrat;
  font-weight: 600;
  color: #07203e;
}

.avatar-box {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 8px;
}

.avatar-image {
  height: 70px;
  width: 70px;
  border-radius: 50%;
}

.avatar-title {
  font-size: 18px;
  font-weight: 700;
}

.avatar-subtitle {
  font-size: 21px;
  font-weight: 400;
}

.avatar-text-body {
  font-size: 18px;
  font-weight: 400;
  font-size: Lato, sans-serif;
}

.avatar-text-highlighted {
  background-color: #faf1d0;
}

/* Borders and Dividers */

.blueBorder {
  min-height: 500px;
  border: 4px solid rgb(18, 44, 79);
  margin: 5px;
  display: grid;
  place-items: center;
  padding: 15px 0px;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}

.goldBorder {
  border: 6px solid rgb(218, 180, 81);
  display: grid;
  place-items: center;
  width: 100%;
  background-color: #ffffff;
}

.smBlueBorder {
  border: 2px solid rgb(18, 44, 79);
}

/* Headings */

h1 {
  font-size: 3.6rem;
  padding: 0.4rem;
  color: rgb(218, 180, 81);
  font-family: "Montserrat", sans-serif;
}

h4 {
  font-size: 2rem;
  padding: 0.3rem;
  color: rgb(18, 44, 79);
  animation-name: fadeIn;
  animation-duration: 3s;
}

h6 {
  font-size: 1.1rem;
  padding: 0.15rem;
  color: rgb(18, 44, 79);
  animation-name: fadeIn;
  animation-duration: 3s;
}

/* HTML Elements */

p {
  font-size: 18px;
  color: rgb(18, 44, 79);
  padding: 0.75em;
}

.phone-display {
  display: none;
}

label {
  color: rgb(18, 44, 79);
}

input,
textarea {
  color: rgb(18, 44, 79);
  border: 2px solid rgb(18, 44, 79);
  font-family: "Lato", sans-serif;
  font-size: 16px;
}

/* Font sizes, families and colors */

.simple {
  text-decoration: none;
  color: rgb(18, 44, 79);
}

.font20 {
  font-size: 20px;
  animation-name: fadeIn;
  animation-duration: 3s;
}

.font {
  font-size: 1.2rem;
  font-family: "Lato", sans-serif;
}

.treb {
  font-size: 1.2rem;
  font-family: "Lato", sans-serif;
}

.title-box {
  padding-bottom: 56px;
  text-align: center;
}

.title {
  font-size: 64px;
  font-weight: 400;
  font-family: Montserrat, sans-serif;
}

/* Form CSS */

.formWidth {
  width: 98%;
}

.inputMargin {
  margin: 8px 5px;
}

.inputPadding {
  padding: 3px 8px;
}

/* Alignments */

.center {
  display: grid;
  place-items: center;
  background-color: #ffffff;
  border-radius: 3px;
  padding: 8px;
  margin: 0px 0px 20px 0px;
}

.center2 {
  display: grid;
  place-items: center;
  background-color: #ffffff;
  border-radius: 3px;
  padding: 2px;
  margin: 0px 0px 20px 0px;
}

/* Hidden Elements */

.none {
  display: none;
}

/* Heights, Paddings and Margins */

.lineHeight {
  line-height: 36px;
}

.paddingLeft {
  padding-left: 15px;
}

.paddingRightSm {
  padding-right: 5px;
}

.padding {
  padding: 12px 20px;
}

.smMargin {
  margin: 2.5px;
}

.bottomMargin {
  margin-bottom: 15px;
}

/* Buttons */

.submitBTN {
  font-family: "Montserrat", sans-serif;
  font-weight: bolder;
  background-color: rgb(218, 180, 81);
  border: 2px solid rgb(218, 180, 81);
  transition-duration: 0.4s;
}

.submitBTN:hover {
  font-family: "Montserrat", sans-serif;
  font-weight: bolder;
  background-color: transparent;
}

@keyframes fadeIn {
  0% {
    color: transparent;
  }
  100% {
    color: rgb(18, 44, 79);
  }
}

@media only screen and (max-width: 1450px) {
  .reviews {
    width: 100%;
    padding: 1.5em;
  }

  .container {
    width: 100%;
    max-width: 1300px;
  }
}

@media only screen and (max-width: 1300px) {
  .goldBorder {
    width: 95%;
  }

  .reviewSection {
    padding: 2em 12em 1em 12em;
  }

  .h1Small {
    font-size: 2.8rem;
  }

  .review-treb {
    padding: 1rem 0.3rem;
    font-size: 17px;
  }
}

@media only screen and (max-width: 1100px) {
  .font20 {
    font-size: 17px;
  }

  .h1Small {
    font-size: 2.6rem;
  }

  .review-treb {
    font-size: 16px;
  }
}

@media only screen and (max-width: 1070px) {
  .goldBorder {
    width: 95%;
  }

  .reviewSection {
    padding: 2em 9em 1em 9em;
  }
}

@media only screen and (max-width: 1035px) {
  .blueBorder {
    grid-template-columns: none;
  }

  .h1Small {
    font-size: 2.8rem;
  }

  .review-treb {
    font-size: 17px;
  }
  .grid-wrapper {
    display: flex;
    gap: 35px;
    flex-direction: column;
  }
  .column,
  .column-main {
    width: 100%;
  }
  .divider {
    width: 100%;
  }
}

@media only screen and (max-width: 975px) {
  .endorsement {
    padding: 2em 1em;
  }

  .reviewSection {
    padding: 2em 7.5em 1em 7.5em;
  }

  .commentSection {
    width: 95%;
  }
}

@media only screen and (max-width: 850px) {
  .endorsement {
    width: 90%;
  }

  .reviewSection {
    padding: 2em 6.5em 1em 6.5em;
  }

  .reviews {
    width: 100%;
    padding: 1.5em 0em;
  }
}

@media only screen and (max-width: 775px) {
  .reviewSection {
    padding: 2em 4em 1em 4em;
  }

  .font20 {
    font-size: 18px;
  }

  p {
    font-size: 17px;
  }

  .font {
    font-size: 17px;
  }

  .phone-hide {
    display: none;
  }
}

@media only screen and (max-width: 700px) {
  .font {
    font-size: 16px;
  }

  .endorsement {
    width: 95%;
  }
}

@media only screen and (max-width: 680px) {
  h1 {
    font-size: 3rem;
  }

  .treb {
    font-size: 1.1rem;
  }

  h6 {
    font-size: 16.5px;
  }

  .font20 {
    font-size: 17px;
  }

  p {
    font-size: 16px;
  }

  .review-treb {
    font-size: 15px;
  }
}

@media only screen and (max-width: 650px) {
  p {
    padding: 0.5rem;
  }

  .center {
    padding: 8px 0px;
  }

  .center2 {
    margin-top: 10px;
  }

  .font {
    font-size: 14.5px;
  }

  .h1Small {
    font-size: 2.5rem;
  }

  .endorsement {
    width: 100%;
  }
}

@media only screen and (max-width: 600px) {
  .endorsement {
    padding: 1.5em 1em;
  }

  .goldBorder {
    width: 100%;
  }

  .reviewSection {
    padding: 1.5em 2em 1em 2em;
  }

  .commentSection {
    width: 100%;
  }

  .treb {
    text-align: center;
  }
}

@media only screen and (max-width: 530px) {
  .font {
    font-size: 13.5px;
  }

  .font20 {
    font-size: 15.5px;
  }

  p {
    font-size: 15px;
  }

  .endorsement {
    padding: 0em 1.5em;
  }

  .review-treb {
    font-size: 14px;
  }

  .h1Small {
    font-size: 2.2rem;
  }
}

@media only screen and (max-width: 490px) {
  .reviewSection {
    padding: 1.5em 0.85em 1em 0.85em;
  }

  .font {
    font-size: 16px;
    text-align: center;
    padding: 0px 35px;
  }

  .phone-display {
    display: grid;
    place-items: center;
    font-size: 16.5px;
  }

  .treb-phone-hide {
    display: none;
  }
}

@media only screen and (max-width: 460px) {
  .font {
    padding: 0px 20px;
  }

  h6 {
    font-size: 15px;
  }

  .h1Small {
    font-size: 1.8rem;
  }

  .endorsement {
    padding: 0em 0.75em;
  }
}

@media only screen and (max-width: 400px) {
  p {
    font-size: 14px;
  }

  h1 {
    font-size: 2.8rem;
    padding: 0.4rem 0.1rem;
  }

  h6 {
    font-size: 13.5px;
  }

  .treb {
    font-size: 16.5px;
  }

  .blueBorder {
    margin: 3px;
  }

  .container {
    margin: 1em 0em 1em 0em;
  }

  .phone-display {
    font-size: 15.5px;
  }
}

@media only screen and (max-width: 380px) {
  h6 {
    font-size: 13px;
  }

  .font {
    font-size: 15px;
    padding: 0px 5px;
  }

  .font20 {
    font-size: 14.5px;
  }

  .treb {
    font-size: 16px;
  }

  .reviewSection {
    padding: 1.25em 0.5em 1em 0.5em;
  }

  .goldBorder {
    border: 4px solid rgb(218, 180, 81);
  }

  .formWidth {
    width: 96%;
  }

  .phone-display {
    font-size: 15px;
  }
}
