* {
  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 pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 112, 243, 0.7);
    box-shadow: 0 0 0 0 rgba(0, 112, 243, 0.7);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(0, 112, 243, 0);
    box-shadow: 0 0 0 10px rgba(0, 112, 243, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 112, 243, 0);
    box-shadow: 0 0 0 0 rgba(0, 112, 243, 0);
  }
}
@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 112, 243, 0.7);
    box-shadow: 0 0 0 0 rgba(0, 112, 243, 0.7);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(0, 112, 243, 0);
    box-shadow: 0 0 0 10px rgba(0, 112, 243, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 112, 243, 0);
    box-shadow: 0 0 0 0 rgba(0, 112, 243, 0);
  }
}

/* forms */
.formTitleContainer {
  background: url('../../assets/img/formBg.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 20px 0 32.79px 0;
}
.formTitle {
  color: #ff0;
  text-align: center;
  text-shadow: 1px 1px 1px #000;
  font-family: Montserrat;
  font-size: 24px;
  font-style: italic;
  font-weight: 900;
  line-height: 31.2px; /* 130% */
  text-transform: uppercase;
}
.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;
}
.formSub {
  color: #000;
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.formSub span {
  color: #333;
  font-family: Montserrat;
}
.fname,
.lname,
.email,
.phone {
  display: block;
  width: 100%;
  color: #000;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 10px;
  border: 1px dashed #333;
  background: #fff;
  padding: 18px 19px;
  margin-bottom: 15px;
}
.phone {
  padding-left: 60px;
}
.checklabel,
.check {
  display: none;
}
.intl-tel-input {
  width: 100%;
}
.submit {
  display: block;
  color: #fff;
  text-align: center;
  text-shadow: 0px 0px 2px #000;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 10px;
  background: #00a960;
  border: 0;
  padding: 13px 0;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin-top: 15px;
}
.submit:hover {
  -webkit-box-shadow: 0 0 10px #00a960;
  box-shadow: 0 0 10px #00a960;
}
.formImg {
  margin-top: 12px;
}
.formImg img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.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%;
}
.error-msg {
  display: block;
  margin-top: 20px;
  color: red;
  font-size: 20px;
}

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

/* header */
.header {
  background: #232426;
  padding: 18px 0;
}
.logo img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

/* intro */
.intro {
  background: url('../../assets/img/introBg.webp') lightgray 50% / cover
    no-repeat;
  padding-top: 39px;
  padding-bottom: 30px;
  position: relative;
}
.intro::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
  z-index: 0;
}
.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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 623px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  height: 850px;
}
.introTitle {
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 1px #000;
  font-family: Montserrat;
  font-size: 34px;
  font-style: normal;
  font-weight: 900;
  line-height: 44.2px; /* 130% */
  margin-top: 11px;
}
.introTitle span {
  color: #ff0;
  font-family: Montserrat;
}
.questions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  min-height: 593px;
  margin-top: 20px;
}
.questions1 {
  margin-top: 20px;
}
.questionBox,
.questionBox1 {
  display: none;
  width: 100%;
  border-radius: 0px 0px 10px 10px;
  border: 1px solid #ffa097;
  background: #fff;
  max-width: 546px;
  margin: 0 auto;
  padding: 26px;
  position: relative;
  z-index: 1;
  top: -13px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.startBtn,
.startBtn1 {
  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;
  color: #fff;
  text-align: center;
  text-shadow: 0px 0px 2px #000;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 10px;
  background: #00a960;
  padding: 12.5px;
  -webkit-animation: pulse 1s infinite;
  animation: pulse 1s infinite;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.startBtn img,
.startBtn1 img {
  display: block;
}
.questionBoxTitle {
  color: #000;
  text-align: center;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}
.questionBoxAnswers {
  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;
  margin-top: 20px;
}
.questionBoxAnswer,
.questionBoxAnswer1 {
  display: block;
  color: #fff;
  text-align: center;
  text-shadow: 0px 0px 2px #000;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 10px;
  background: #00a960;
  padding: 16px 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.questionBoxAnswer:last-child,
.questionBoxAnswer1:last-child {
  background: #000;
}
.questionBoxAnswer:hover,
.questionBoxAnswer1:hover {
  -webkit-box-shadow: 0 0 10px #000;
  box-shadow: 0 0 10px #000;
}

/* why */
.why {
  background: #003057;
  padding-top: 86px;
  padding-bottom: 90px;
}
.whyTitle {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 41.6px; /* 130% */
  text-transform: uppercase;
}
.whyDivider {
  width: 290px;
  height: 3px;
  margin: 0 auto;
  margin-top: 26.5px;
  background: #cbd5e0;
}
.whyContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 70px;
}
.whyVideo {
  background: #000;
}
.whyText {
  width: 41%;
}
.whyTitle1 {
  color: #fff;
  font-family: Montserrat;
  font-size: 25px;
  font-style: normal;
  font-weight: 900;
  line-height: 32.5px; /* 130% */
}
.whySub {
  color: #cbd5e0;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.4px; /* 140% */
  margin-top: 21px;
}
.whySubList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6.5px;
  width: 43.5%;
}
.whySub1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 18px;
  color: #cbd5e0;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 25.6px; /* 160% */
}
.whySub1 img {
  display: block;
}

/* offers */
.offers {
  margin-top: 86px;
}
.offersInner {
  max-width: 790px;
  margin: 0 auto;
  text-align: center;
}
.offersTitle {
  color: #000;
  text-align: center;
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 41.6px; /* 130% */
  text-transform: uppercase;
}
.offersDivider {
  width: 290px;
  height: 3px;
  margin: 0 auto;
  margin-top: 40px;
  background: #000;
}
.offersSub {
  color: #000;
  text-align: center;
  font-family: Montserrat;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.8px; /* 140% */
  margin-top: 36px;
}
.offersBtn {
  margin-top: 42px;
}
.btn {
  display: inline-block;
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 15px 25px;
  border-radius: 10px;
  background: #00a960;
  -webkit-animation: pulse 1s infinite;
  animation: pulse 1s infinite;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

/* how */
.how {
  margin-top: 90px;
}
.howTitle {
  color: #000;
  text-align: center;
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 41.6px; /* 130% */
  text-transform: uppercase;
}
.howBlocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 41.59px;
}
.howBlock {
  width: 31.6%;
  border-radius: 10px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0);
  -webkit-box-shadow: 0px 0px 2px 0px #707070;
  box-shadow: 0px 0px 2px 0px #707070;
  padding: 22px 22px 34px 22px;
}
.howBlockImg img {
  display: block;
  width: 80px;
  height: 80px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 auto;
}
.howBlockTitle {
  color: #000;
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 23.4px; /* 130% */
  text-transform: uppercase;
  margin-top: 24px;
}
.howBlockSub {
  color: #000;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.8px; /* 130% */
  margin-top: 11.4px;
}
.btnContainer {
  text-align: center;
}
.howBtn {
  margin-top: 60px;
}

/* comments */
.comments {
  background: #003057;
  padding-top: 74px;
  padding-bottom: 114px;
  margin-top: 45px;
}
.commentsTitle {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 45px;
  font-style: normal;
  font-weight: 900;
  line-height: 54px; /* 120% */
}
.commentsSub {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  line-height: 29.9px; /* 130% */
  margin-top: 30px;
}
.commentsBlocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 42px;
}
.commentBlock {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 32%;
  border-radius: 5px;
  border-top: 2px solid rgba(0, 0, 0, 0.2);
  border-right: 2px solid rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid rgba(0, 0, 0, 0.2);
  border-left: 2px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  padding: 34px 44px 27px 44px;
}
.commentBlockSub {
  color: #000;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.commentBlockName {
  color: #000;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20.8px; /* 130% */
  text-transform: uppercase;
  margin-top: 23px;
}
.commentBlockImg {
  margin-top: 12px;
}
.commentBlockImg img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.commentBlockStars {
  margin-top: 10px;
}
.commentBlockStars img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

/* summit */
.summit {
  margin-top: 70px;
}
.summitTitle {
  color: #565656;
  text-align: center;
  font-family: Montserrat;
  font-size: 35px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 52.5px */
}
.summitTitle span {
  color: #00a960;
  font-family: Montserrat;
  font-weight: 700;
}
.summitVideo {
  position: relative;
  height: 580px;
  width: 100%;
  margin: 0 auto;
  margin-top: 20px;
}
.summitInner iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* yelp */
.yelp {
  margin-top: 30px;
}
.yelpTitle {
  color: #2d2d2d;
  text-align: center;
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
}
.yelpBlocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}
.yelpBlock img {
  display: block;
  max-width: 100%;
  width: 100%;
}

/* safety */
.safety {
  margin-top: 66px;
}
.safetyInner {
  max-width: 765px;
  margin: 0 auto;
}
.safetyTitle {
  color: #000;
  text-align: center;
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 41.6px; /* 130% */
  text-transform: uppercase;
}
.safetyTitle span {
  color: #00a960;
  font-family: Montserrat;
}
.safetySub {
  color: #000;
  text-align: center;
  font-family: Montserrat;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 28px; /* 140% */
  margin-top: 24px;
}
.safetyBtn {
  margin-top: 42px;
}

/* reviews */
.reviews {
  margin-top: 40px;
}
.reviewsTitle {
  color: #565656;
  text-align: center;
  font-family: Montserrat;
  font-size: 35px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 52.5px */
}
.reviewsTitle span {
  color: #1f445a;
  font-weight: 700;
}
.reviewsSub {
  color: #565656;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  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;
  -webkit-animation: bounce 1s infinite;
  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%;
}

/* ask */
.ask {
  padding: 60px 0;
  background: #003057;
  margin-top: 130px;
}
.askTitle {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 35px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 52.5px */
}
.askTitle span {
  font-weight: 700;
}
.askSub {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  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: 65px;
}
.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 {
  color: #fff;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 30px */
}
.askBlockSub1 {
  color: #fff;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

/* users */
.users {
  margin: 65px 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: top;
  -ms-flex-align: top;
  align-items: top;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.userBlock img {
  display: block;
  max-width: 100%;
  width: 100%;
}

/* click */
.click {
  background: #f7f7f7;
  padding: 58px 0;
}
.clickInner {
  max-width: 1150px;
  margin: 0 auto;
}
.clickTitleContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}
.clickTitle {
  color: #212121;
  font-family: 'IBM Plex Serif';
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 54px */
}
.clickTitle span {
  color: #00a960;
  font-family: 'IBM Plex Serif';
}
.clickBox {
  background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(0, 0, 0, 0.46)),
      to(rgba(0, 0, 0, 0.46))
    ),
    url('../../assets/img/introBg.webp') lightgray 50% / cover no-repeat;
  background: -o-linear-gradient(
      bottom,
      rgba(0, 0, 0, 0.46) 0%,
      rgba(0, 0, 0, 0.46) 100%
    ),
    url('../../assets/img/introBg.webp') lightgray 50% / cover no-repeat;
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.46) 0%,
      rgba(0, 0, 0, 0.46) 100%
    ),
    url('../../assets/img/introBg.webp') lightgray 50% / cover no-repeat;
  padding-top: 56px;
  padding-bottom: 106px;
  margin-top: 25px;
}
.clickBoxInner {
  max-width: 623px;
  margin: 0 auto;
}
.formbox2 {
  max-width: 623px;
  margin: 0 auto;
}
.formBottom {
  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: 26.6px;
}
.clickBoxBottomSub {
  color: #71768a;
  text-align: center;
  font-family: 'Open Sans';
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 22.5px */
}

/* tell */
.tell {
  padding: 110px 0;
  background: #003057;
}
.tellInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 230px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.tellLeft img {
  display: block;
  max-width: 100%;
}
.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: 60px 0;
  background: #232426;
}
.footerLogo img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.footerSub {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 18.2px; /* 130% */
  margin-top: 30px;
}
