* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
}
a,
button:active,
button:focus,
input:active,
input:focus {
  outline: 0 !important;
}
a:hover {
  text-decoration: none;
}

/* animations */
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }
  60% {
    -webkit-transform: rotateZ(-30deg);
    transform: rotateZ(-30deg);
  }
  65% {
    -webkit-transform: rotateZ(15deg);
    transform: rotateZ(15deg);
  }
  70% {
    -webkit-transform: rotateZ(-10deg);
    transform: rotateZ(-10deg);
  }
  75% {
    -webkit-transform: rotateZ(7.5deg);
    transform: rotateZ(7.5deg);
  }
  80% {
    -webkit-transform: rotateZ(-6deg);
    transform: rotateZ(-6deg);
  }
  85% {
    -webkit-transform: rotateZ(5deg);
    transform: rotateZ(5deg);
  }
  90% {
    -webkit-transform: rotateZ(-4.28571deg);
    transform: rotateZ(-4.28571deg);
  }
  95% {
    -webkit-transform: rotateZ(3.75deg);
    transform: rotateZ(3.75deg);
  }
  98% {
    -webkit-transform: rotateZ(-3.33333deg);
    transform: rotateZ(-3.33333deg);
  }
}
@keyframes shake {
  0%,
  100% {
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }
  60% {
    -webkit-transform: rotateZ(-30deg);
    transform: rotateZ(-30deg);
  }
  65% {
    -webkit-transform: rotateZ(15deg);
    transform: rotateZ(15deg);
  }
  70% {
    -webkit-transform: rotateZ(-10deg);
    transform: rotateZ(-10deg);
  }
  75% {
    -webkit-transform: rotateZ(7.5deg);
    transform: rotateZ(7.5deg);
  }
  80% {
    -webkit-transform: rotateZ(-6deg);
    transform: rotateZ(-6deg);
  }
  85% {
    -webkit-transform: rotateZ(5deg);
    transform: rotateZ(5deg);
  }
  90% {
    -webkit-transform: rotateZ(-4.28571deg);
    transform: rotateZ(-4.28571deg);
  }
  95% {
    -webkit-transform: rotateZ(3.75deg);
    transform: rotateZ(3.75deg);
  }
  98% {
    -webkit-transform: rotateZ(-3.33333deg);
    transform: rotateZ(-3.33333deg);
  }
}

/* container */
.container {
  max-width: 1030px;
  margin: 0 auto;
}

/* header */
.header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  padding: 15px;
  border-bottom: 1px solid #ffffff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.header.active {
  background-color: #00a0ff;
}
.headerInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.logo img {
  display: block;
  max-width: 100%;
}
.headerPhoneLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.headerPhoneLink svg {
  width: 33px;
}
.headerPhoneLink svg path {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.headerPhoneLinkSub {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 35px;
  line-height: 150%;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* intro */
.intro {
  background: linear-gradient(
      90deg,
      rgba(75, 129, 194, 0.54) 0%,
      rgba(0, 0, 0, 0) 100%
    ),
    url('../../assets/img/introBg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
  padding-top: 200px;
  padding-bottom: 200px;
}
.introInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 50px;
}
.introText {
  margin-right: auto;
}
.introTitle {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 150%;
  color: #ffffff;
}
.introList {
  list-style: none;
  margin: 0;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 10px;
}
.introListItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.introListItem img {
  width: 20px;
  height: 20px;
}
.introListItemSub {
  width: 100%;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  color: #ffffff;
}
.btnContainer {
  margin-top: 40px;
  text-align: center;
}
.btn {
  display: inline-block;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  background: #00a0ff;
  padding: 12.5px 170px;
  border-radius: 25px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-animation: bounce 1s infinite;
  animation: bounce 1s infinite;
}
.btn:hover {
  -webkit-box-shadow: 0 0 10px #00a0ff;
  box-shadow: 0 0 10px #00a0ff;
}

/* click */
.click {
  background: rgba(202, 219, 227, 0.5);
  padding: 58px 0;
}
.clickTitleContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}
.clickTitle {
  font-family: 'IBM Plex Serif';
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 150%;
  color: #383838;
}
.clickTitle span {
  color: #00a0ff;
}
.clickBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #ffffff;
  -webkit-box-shadow: 0px 52px 21px rgba(0, 0, 0, 0.01),
    0px 29px 18px rgba(0, 0, 0, 0.05), 0px 13px 13px rgba(0, 0, 0, 0.09),
    0px 3px 7px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 52px 21px rgba(0, 0, 0, 0.01),
    0px 29px 18px rgba(0, 0, 0, 0.05), 0px 13px 13px rgba(0, 0, 0, 0.09),
    0px 3px 7px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-top: 20px;
}
.clickBoxImg {
  width: 33%;
  padding: 30px;
  padding-right: 0;
}
.clickBoxImg img {
  display: block;
  max-width: 100%;
  width: 100%;
}
.clickBoxText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 67%;
  padding: 40px 20px;
}
.clickBoxTextBottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.clickBoxSub {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 150%;
  text-align: center;
  color: #383838;
}
.clickBoxTextMiddle {
  margin-top: 36px;
}
.dallas {
  display: inline-block;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  line-height: 150%;
  color: #000000;
  padding: 12px 130px 12px 15px;
  border-width: 4px 2px 2px 2px;
  border-style: solid;
  border-color: #00a0ff;
  border-radius: 6px;
}
.clickBoxBtnContainer {
  margin-top: 270px;
  text-align: right;
}
.clickBoxBtn,
.clickBoxBtn1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  line-height: 150%;
  color: #ffffff;
  background: #00a0ff;
  border-radius: 25px;
  padding: 14.5px 52px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-animation: bounce 1s infinite;
  animation: bounce 1s infinite;
}
.clickBoxBtn:hover {
  -webkit-box-shadow: 0 0 10px #00a0ff;
  box-shadow: 0 0 10px #00a0ff;
}
.clickBoxDivider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  margin-top: 30px;
}
.clickBoxBottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}
.clickBoxBottomSub {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 150%;
  color: #71768a;
}

/* questions */
.questionsBoxs,
.questionsBoxs1 {
  display: none;
  height: 100%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.questionsBoxProgress {
  position: relative;
  background: #cadbe3;
  border-radius: 6px;
  height: 5px;
  max-width: 250px;
  margin: 0 auto;
  margin-top: 30px;
}
.questionsBoxProgressInner {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #00a0ff;
  border-radius: 6px;
  width: 30%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.questionsBoxProgressInner1 {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #00a0ff;
  border-radius: 6px;
  width: 30%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.questionBox,
.questionBox1 {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  max-width: 550px;
  margin: 0 auto;
  -webkit-animation: fade-in 2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in 2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.question {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 23px;
  line-height: 150%;
  text-align: center;
  color: #383838;
  margin-top: 30px;
}
.answers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.answerBox {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  position: relative;
  cursor: pointer;
  border-width: 3px 1px 1px 1px;
  border-style: solid;
  border-color: #e5edf4;
  border-radius: 6px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.answerBox:hover {
  border-color: #00a0ff;
}
.answerBoxInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.answerBox.active {
  border-color: #00a0ff;
}
.answerBox input {
  position: absolute;
  visibility: hidden;
  width: 100%;
}
.answerBox svg {
  max-width: 30px;
  max-height: 30px;
  fill: #d1d7dc;
}
.answerBox svg g path {
  fill: #d1d7dc;
}
.answerBoxCircle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 2px solid #e5edf4;
  border-radius: 50%;
}
.answerBoxCircleInner {
  width: 17.5px;
  height: 17.5px;
  background: #fff;
  border-radius: 50%;
}
.answerBoxSub {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  line-height: 150%;
  text-align: left;
  color: #000000;
}
.answerBox.active svg {
  fill: #00a0ff;
}
.answerBox.active path {
  fill: #00a0ff;
}
.answerBox.active .answerBoxCircle {
  background: #00a0ff;
}
.answerBox.active .answerBoxCircle {
  background: #00a0ff;
}
.answerBoxBottom {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}
.backBtn,
.backBtn1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 13px;
}
.backBtnSub {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  line-height: 150%;
  color: #93afc1;
}
.nextBtn,
.nextBtn1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 14.5px 90px;
  background: #00a0ff;
  border-radius: 25px;
  border: none;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  line-height: 150%;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.nextBtn:hover {
  -webkit-box-shadow: 0 0 10px #00a0ff;
  box-shadow: 0 0 10px #00a0ff;
}
.nextBtnSub {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  line-height: 150%;
  color: #ffffff;
}

/* zip */
.questionSub1 {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: rgba(56, 56, 56, 0.5);
}
.zipeCodeBox {
  max-width: 308px;
  margin: 0 auto;
  margin-top: 60px;
}
.zipCodeSub {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #383838;
}
.zipCodeSub span {
  color: red;
}
.zipInput {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  line-height: 150%;
  color: #8ea5b8;
  background: #f1f9fe;
  border: 1px solid #96acbd;
  border-radius: 6px;
  padding: 22px 40px;
}
.zipCodeBoxInner {
  position: relative;
  margin-top: 10px;
}
.zipCodeBoxInner img {
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* filed */
.formboxClick .filed_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  padding: 0;
  position: relative;
  margin-top: 30px;
}
.filedBox {
  width: 100%;
}
.filedBoxSub {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #383838;
  margin-bottom: 10px;
}
.filedBoxSub span {
  color: red;
}
.formboxClick .fname,
.formboxClick .lname,
.formboxClick .email,
.formboxClick .phone {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 150%;
  color: #8ea5b8;
  background: #f1f9fe;
  border: 1px solid #96acbd;
  border-radius: 6px;
  padding: 10px 40px;
  width: 100%;
}
.formboxClick .phone {
  padding-left: 60px;
}
.formboxClick .checklabel,
.formboxClick .check {
  display: none;
}
.formboxClick .intl-tel-input {
  width: 100%;
}
.loadingView {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.loadingView img {
  max-width: 100%;
}
.answerError {
  display: none;
  font-family: 'Open Sans';
  font-size: 11px;
  line-height: 1.3;
  color: #e21026;
  text-align: center;
  margin-top: 6px;
}
.answerError1 {
  display: none;
  font-family: 'Open Sans';
  font-size: 11px;
  line-height: 1.3;
  color: #e21026;
  text-align: center;
  margin-top: 6px;
}
.error-msg {
  display: block;
  margin-top: 20px;
  color: red;
  font-size: 20px;
}

/* work */
.work {
  margin-top: 80px;
}
.workTitle {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 35px;
  line-height: 150%;
  text-align: center;
  color: #565656;
}
.workTitle span {
  color: #03477f;
}
.workSub {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #565656;
  margin-top: 10px;
}
.workBoxs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 60px;
}
.workBoxImg {
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.workBoxImg:hover {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}
.workBoxImgTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  position: absolute;
  top: 0;
  width: 100%;
  padding: 5px 14px;
  background: -o-linear-gradient(
    left,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(255, 255, 255, 0))
  );
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}
.workBoxImgTopSub {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  text-transform: uppercase;
  color: #ffffff;
}
.workBoxSub {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: #565656;
  margin-top: 10px;
}
.work .btnContainer {
  text-align: center;
}

/* reviews */
.reviews {
  margin-top: 80px;
}
.reviewsTitle {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 35px;
  line-height: 150%;
  text-align: center;
  color: #565656;
}
.reviewsTitle span {
  color: #03477f;
  font-weight: 700;
}
.reviewsSub {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #565656;
  margin-top: 10px;
}
.reviewsImgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 64px;
  margin-top: 40px;
}
.reviewsImgs img {
  display: block;
  max-width: 100%;
}
.reviewsBottom {
  margin-top: 88px;
  text-align: center;
}
.reviewsBottomTitle {
  color: #2d2d2d;
  text-align: center;
  font-family: Poppins;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 100% */
  letter-spacing: 1px;
}
.reviewsBottomSub {
  color: #7e7e7e;
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px; /* 192.857% */
  letter-spacing: 1px;
  margin-top: 20px;
}
.reviewsBottomBtn {
  display: inline-block;
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 100% */
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 15px 35px;
  background: #2a612a;
  margin-top: 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  animation: bounce 1s infinite;
}
.reviewsBottomBtn:hover {
  -webkit-box-shadow: 0 0 10px #2a612a;
  box-shadow: 0 0 10px #2a612a;
}
.reviewsBottomImgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.reviewsBottomImgs img {
  display: block;
  max-width: 100%;
}

/* about */
.about {
  margin-top: 50px;
}
.aboutTitle {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 35px;
  line-height: 150%;
  text-align: center;
  color: #565656;
}
.aboutTitle span {
  font-weight: 700;
  color: #03477f;
}
.aboutSub {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #565656;
  margin-top: 10px;
}
.aboutImg {
  margin-top: 50px;
}
.aboutImg img {
  display: block;
  max-width: 100%;
  width: 100%;
}
.aboutText {
  max-width: 950px;
  margin: 0 auto;
  margin-top: 35px;
}
.aboutSub1 {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: #565656;
}
.aboutSubs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
.aboutSub2 {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: #565656;
}

/* need */
.need {
  margin-top: 50px;
}
.needTitle {
  color: #2d2d2d;
  text-align: center;
  font-family: Poppins;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 100% */
  letter-spacing: 1px;
}
.needSub {
  color: #7e7e7e;
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px; /* 192.857% */
  letter-spacing: 1px;
  margin-top: 20px;
}
.needBtnContainer {
  text-align: center;
}
.needBtn {
  display: inline-block;
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 100% */
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 15px 35px;
  background: #2a612a;
  margin-top: 20px;
}
.needImgs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.needImgs img {
  display: block;
  max-width: 100%;
}

/* why */
.why {
  margin-top: 50px;
}
.whyTitle {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 35px;
  line-height: 150%;
  text-align: center;
  color: #565656;
}
.whyTitle span {
  font-weight: 700;
  color: #03477f;
}
.whySub {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #565656;
  margin-top: 10px;
}
.whyBlocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 50px;
}
.whyBlock {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
}
.whyBlockTitle {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  text-align: center;
  color: #03477f;
  margin-top: 10px;
}
.whyBlockSub {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  text-align: center;
  color: #565656;
  margin-top: 10px;
}
.why .btnContainer {
  margin-top: 60px;
}

/* comments */
.comments {
  margin-top: 60px;
}
.commentsBlocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}
.commentBlock img {
  display: block;
  max-width: 100%;
  width: 100%;
}

/* ask */
.ask {
  margin-top: 60px;
}
.askTitle {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 35px;
  line-height: 150%;
  text-align: center;
  color: #565656;
}
.askTitle span {
  font-weight: 700;
}
.askSub {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #565656;
  margin-top: 10px;
}
.askBlocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
}
.askBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}
.askBlockSub {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  color: #03477f;
}
.askBlockSub1 {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #565656;
}
.ask .btnContainer {
  text-align: center;
}

/* users */
.users {
  margin: 60px 0;
}
.usersTitle {
  color: #2d2d2d;
  text-align: center;
  font-family: Poppins;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 100% */
  letter-spacing: 1px;
}
.usersBlocks {
  display: flex;
  align-items: top;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.userBlock img {
  display: block;
  max-width: 100%;
}

/* tell */
.tell {
  padding: 110px 0;
  background: #646464;
}
.tellInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 200px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.tellRightSub {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 150%;
  color: #ffffff;
}
.tellList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  margin-top: 30px;
}
.tellListItemSubContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 21px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.tellListItemSub {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #77c6f8;
}
.tellListItemSub1 {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #ffffff;
}

/* footer */
.footer {
  padding: 35px 0;
  background: #2d2d2d;
}
.footerImgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  gap: 14px;
  max-width: 255px;
  margin: 0 auto;
}
.footerImgs img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.footerLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.footerLink {
  color: #FFF;
  text-align: center;
  font-family: Open Sans;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 18px */
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}
