* {
  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;
}

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

/* animations */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.02, 1.02, 1.02);
    transform: scale3d(1.02, 1.02, 1.02);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.02, 1.02, 1.02);
    transform: scale3d(1.02, 1.02, 1.02);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

/* 02. Default */
.form {
  margin-top: 22px;
}
#formbox {
  max-width: 390px;
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.1);
}
.formTitle {
  border-radius: 10px 10px 0px 0px;
  background: #e60505;
  padding: 17px;
}
.formTitle p {
  color: #fff;
  text-align: center;
  font-family: Helvetica;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 20.8px; /* 86.667% */
  text-transform: uppercase;
}
.filed_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 41px 37px 21px 37px;
  position: relative;
}
.intl-tel-input {
  width: 100%;
}
#fname,
#lname,
#email,
#phone {
  display: block;
  color: #000;
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ebebeb;
  background: #fff;
  padding: 10.5px 15px;
  margin-bottom: 15px;
}
#phone {
  padding-left: 60px;
  margin: 0;
}
#checklabel,
#check {
  display: none;
}
.submit {
  display: block;
  width: 100%;
  color: #fff;
  text-align: center;
  font-family: Arial;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  text-transform: uppercase;
  border: 0;
  border-radius: 5px;
  background: #e60505;
  padding: 15px 0;
  cursor: pointer;
  margin-top: 30px;
  animation: pulse 1s infinite;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.submit:hover {
  -webkit-box-shadow: 0 0 10px #e60505;
  box-shadow: 0 0 10px #e60505;
}
p#error-msg {
  display: block;
  margin-top: 20px;
  color: red;
  font-size: 20px;
}
.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%;
}

/* header */
.headerTop img {
  display: block;
}
.headerTopInner {
  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;
}
.headerTopLeft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 21px;
}
.headerTopLogo img {
  display: block;
  max-width: 100%;
}
.signIn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 64px;
}
.headerTopLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
.headerTopLink {
  color: #000;
  text-align: center;
  font-family: Helvetica;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 64px;
}
.headerTopRight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 22px;
}
.searchBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #e6e8ea;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 12px 94px 12px 10px;
}
.searchBox img {
  display: block;
}
.searchSub {
  color: #000;
  text-align: center;
  font-family: Helvetica;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.headerLogo {
  border: 1px solid #cc8381;
  background: #b80000;
  padding: 16.5px 0;
}
.headerLogoInner img {
  display: block;
  max-width: 100%;
}
.headerMiddle {
  background: #b80000;
}
.headerMiddleInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.headerMiddleLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
}
.headerMiddleLink {
  color: #fff;
  font-family: Helvetica;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  padding-right: 10px;
  border-right: 1px solid #cc8381;
}
.moreLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-family: Helvetica;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  padding-left: 10px;
  border-left: 1px solid #cc8381;
}

/* intro */
.introTitle {
  color: #000;
  font-family: 'Times New Roman', Times, serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 41.6px; /* 130% */
}
.introImg {
  margin-top: 10px;
}
.introImg img {
  display: block;
  max-width: 100%;
  width: 100%;
}
.time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3.66px;
  margin-top: 10px;
}
.timeSub {
  color: #000;
  font-family: 'Times New Roman', Times, serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
}
.time img {
  display: block;
}
.introInfo {
  margin-top: 40px;
  margin-bottom: 30px;
}
.introInfoSub {
  color: #000;
  font-family: Helvetica;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal; /* 426.667% */
}
.introInfoSub1 {
  color: #585a5c;
  font-family: Helvetica;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal; /* 533.333% */
}
.introInfoSub1 span {
  border-bottom: 2px solid #8a8c8e;
  padding-bottom: 7px;
}

/* content */
.content {
  margin-top: 61px;
}
.contentInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.contentLeft {
  width: 57%;
}
.contentBoxSub {
  color: #222;
  font-family: Helvetica;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 120% */
}
.contentBoxSub a {
  color: #b80000;
  text-decoration: underline;
  font-weight: 700;
}
.contentBoxs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16.5px;
  margin-top: 16.5px;
}
.contentBoxImg img {
  display: block;
  max-width: 100%;
  width: 100%;
}
.contentBoxSubs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.contentBoxSubWithBorder {
  color: #222;
  font-family: Helvetica;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 120% */
  border-left: 5px solid #d10a10;
  padding-left: 10px;
}
.contentBoxSubWithBorder a {
  color: #b80000;
  text-decoration: underline;
  font-weight: 700;
}
.italic {
  font-style: italic;
}
.underline {
  text-decoration: underline;
}
.days {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16.5px;
  margin-top: 24px;
}
.dayBoxTitle {
  color: #000;
  text-align: center;
  font-family: Helvetica;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding: 16px 0;
  border: 1px solid #000;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
}
.dayBoxSubs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 22px;
  margin-top: 15.5px;
}
.dayBoxSub {
  color: #000;
  font-family: Helvetica;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
}
.dayBoxSub a {
  color: #b80000;
  text-decoration: underline;
  font-weight: 700;
}
.contentBoxList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}
.contentBoxListItemSub {
  color: #141414;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0em;
  text-align: left;
}
.contentBoxListItemSub a {
  color: #b80000;
  text-decoration: underline;
  font-weight: 700;
}
.btnContainer {
  text-align: center;
}
.contentBtn {
  display: block;
  color: #fff;
  text-align: center;
  font-family: Helvetica;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding: 16px 0;
  background: #b80000;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  animation: pulse 1s infinite;
  transition: all 0.3s;
}
/* comments */
.comments {
  margin-top: 22px;
}
.commentsText {
  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;
  padding: 9px 0;
  border-bottom: 1px solid #e9ebee;
  margin: 0px 8px;
}
.commentsTitle {
  color: #1d1d1d;
  font-family: 'Helvetica Neue';
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 178.571% */
  letter-spacing: 0.5px;
}
.commentsTextRight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
.commentsTextRightSub {
  color: #4b4f56;
  font-family: 'Helvetica Neue';
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 178.571% */
  letter-spacing: 0.5px;
}
.commentsTextRightBtn {
  display: inline-block;
  color: #4b4f56;
  text-align: center;
  font-family: 'Helvetica Neue';
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px; /* 157.143% */
  letter-spacing: 0.5px;
  border-radius: 2px;
  border: 1px solid #ced0d4;
  background: #f6f7f9;
  padding: 1px 21.757px 1px 11.693px;
}
.commentsTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0px 8px;
  margin-top: 24px;
}
.commentsTopImg img {
  display: block;
  width: 48px;
  height: 48px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.commentsTopText {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
textarea {
  display: block;
  color: #000;
  font-family: Helvetica;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  border: 1px solid #d3d6db;
  background: #fff;
  padding: 13px 9px;
  min-height: 64px;
  resize: none;
}
.commentsTopTextBottom {
  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;
  background: #f6f7f9;
  padding: 8px;
  border-right: 1px solid #d3d6db;
  border-bottom: 1px solid #d3d6db;
  border-left: 1px solid #d3d6db;
}
.commentsTopTextBottomBtn {
  display: inline-block;
  color: #fff;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px; /* 157.143% */
  border-radius: 2px;
  border: 1px solid #9cb4d8;
  background: #9cb4d8;
  padding: 1px 8.488px 1px 12.722px;
}
.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: 12px;
  margin-top: 45px;
}
.commentBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
}
.commentBlockImg img {
  display: block;
  width: 48px;
  height: 48px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.commentBlockText {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.commentBlockName {
  color: #365899;
  font-family: 'Helvetica Neue';
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 19px; /* 135.714% */
  letter-spacing: 0.5px;
}
.commentBlockSub {
  color: #1d1d1d;
  font-family: 'Helvetica Neue';
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px; /* 135.714% */
  letter-spacing: 0.5px;
  margin-top: 8px;
}
.commentBlockBottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.commentBlockBottomLink {
  color: #4267b2;
  font-family: 'Helvetica Neue';
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16.3px; /* 135.833% */
  letter-spacing: 0.5px;
}
.commentBlockBottomSub {
  color: #90949c;
  font-family: 'Helvetica Neue';
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16.3px; /* 135.833% */
  letter-spacing: 0.5px;
}
.commentBlockAnswer {
  margin-left: 86px;
  padding-left: 4px;
  border-left: 1px dashed #d3d6db;
}
.commentBlockNameContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2px;
}
.commentBlockTextImg {
  margin-top: 14px;
}
.commentBlockTextImg img {
  display: block;
  max-width: 100%;
}
.facebookBtn {
  display: block;
  color: #365899;
  font-family: 'Helvetica Neue';
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 14.94px; /* 135.818% */
  letter-spacing: 0.5px;
  padding: 10px 19px;
  border-top: 1px solid #e9ebee;
  margin-top: 12px;
}
/* contentRight */
.contentRight {
  width: 24%;
}
.contentRightTitle {
  color: #141414;
  font-family: Helvetica;
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 121.739% */
}
.contentRightBlocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  margin-top: 16.5px;
}
.contentRightBlock {
  background: #f6f6f6;
  padding: 12px;
}
.contentRightBlockTitle {
  color: #141414;
  font-family: Helvetica;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 122.222% */
}
.contentRightBlockSub {
  color: #545658;
  font-family: Helvetica;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 123.077% */
  margin-top: 4.5px;
}

/* footer */
.footer {
  margin-top: 44px;
  margin-bottom: 50px;
  background: #141414;
}
.footerTop {
  padding-top: 15px;
  padding-bottom: 13px;
}
.footerLogo {
  color: #f6f6f6;
  font-family: Helvetica;
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
.footerTopLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 192px;
  margin-top: 14px;
}
.footerTopLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  gap: 15px;
  color: #f6f6f6;
  font-family: Helvetica;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
}
.footerTopLink img {
  display: block;
}
.footerBottom {
  border-top: 1px solid #8a8c8e;
  padding-bottom: 16px;
}
.footerBottomLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 147px;
  padding: 28px 0;
}
.footerBottomLinkBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.footerBottomLink {
  color: #f6f6f6;
  font-family: Helvetica;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
}
.footerBottomLinks1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 27px;
  -moz-column-gap: 27px;
  column-gap: 27px;
  row-gap: 24px;
  padding-top: 17px;
  border-top: 1px solid #8a8c8e;
}
.footerBottomLink1 {
  color: #f6f6f6;
  font-family: Helvetica;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
}
.footerSub {
  color: #f6f6f6;
  font-family: Helvetica;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  margin-top: 23px;
}
.footerSub a {
  color: #f6f6f6;
  font-family: Helvetica;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
}

/* system */
.system {
  border-width: 1px 0px 1px 0px;
  border-style: solid;
  border-color: #0000000d;
  padding: 5px 0;
  background: #dbdbdb;
  box-shadow: 0px 10px 24px 0px rgba(54, 61, 77, 0.15);
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 1000;
}
.systemInner {
  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: 30px;
}
.systemLeft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
.systemLeftImg img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.systemTitle {
  color: #0f0f0f;
  text-align: center;
  font-family: Helvetica;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24.89px; /* 155.562% */
}
.systemRight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
.systemPrice {
  color: #65c466;
  text-align: center;
  font-family: Helvetica;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 155.556% */
  width: 180px;
}
.systemBtn {
  display: inline-block;
  color: #0f0f0f;
  text-align: center;
  font-family: Helvetica;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 21.78px; /* 155.571% */
  text-transform: uppercase;
  padding: 9px 17px;
  border: 3px solid #0f0f0f;
}
