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


@-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);
  }
}


/* form */
.form {
  margin-top: 48px;
}
#formbox {
  max-width: 390px;
  margin: 0 auto;
  width: 100%;
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
}
.formTitleContainer {
  border-radius: 10px 10px 0px 0px;
  background: #0f64a1;
  padding: 10px 20px;
}
.formTitle {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
}
.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;
  padding: 20px 37px 41px 37px;
  position: relative;
}
.intl-tel-input {
  width: 100%;
}
#fname,
#lname,
#email,
#phone {
  display: block;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  border-radius: 5px;
  border: 1px solid #ebebeb;
  background: #fff;
  width: 100%;
  padding: 10px 15px;
  margin-bottom: 20px;
}
#phone {
  padding-left: 60px;
  margin: 0;
}
#checklabel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3.5px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 21px;
}
#checklabel,
#check {
  display: none;
}
.submit {
  display: block;
  color: #fff;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  border-radius: 5px;
  background: #211254;
  border: 0;
  cursor: pointer;
  margin-top: 30px;
  padding: 15px 0px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-animation: bounce 1s infinite;
  animation: bounce 1s infinite;
}
.submit:hover {
  -webkit-box-shadow: 0 0 10px #211254;
  box-shadow: 0 0 10px #211254;
}
#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%;
}

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

/* header */
.headerTop {
  padding: 5px 0;
}
.headerTopInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.headerTopSub {
  color: #cecece;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px; /* 120% */
  text-transform: uppercase;
  padding-right: 8px;
  border-right: 1px solid #cecece;
  text-wrap: nowrap;
}
.headerTopLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  width: auto;
  overflow-x: hidden;
  position: relative;
}
.headerTopLinks:after {
  content: '';
  width: 3.125rem;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: -o-linear-gradient(left, transparent, #fff);
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(transparent),
    to(#fff)
  );
  background-image: linear-gradient(90deg, transparent, #fff);
}
.headerTopLink {
  display: block;
  color: #cecece;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 10px;
  padding-right: 8px;
  border-right: 1px solid #cecece;
  text-wrap: nowrap;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.headerTopLink:hover {
  color: #000;
}
.headerMiddle {
  padding: 4.4px 0;
  border-bottom: 1px solid #000;
  background: #fff;
}
.headerMiddleInner {
  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;
}
.logo img {
  display: block;
}
.headerMiddleLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 27px;
}
.headerMiddleLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 13px;
  color: #000;
  font-family: 'Times New Roman', Times, serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 13px; /* 100% */
  letter-spacing: 0.26px;
}
.headerMiddleLink img {
  display: block;
}
.headerMiddleRight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 13px;
}
.suscribeBtn {
  display: inline-block;
  color: #000;
  font-family: 'Times New Roman', Times, serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px; /* 127.273% */
  text-transform: uppercase;
  border-radius: 5px;
  background: #b2e3f4;
  padding: 3px 5px 16.2px 5px;
}
.headerMiddleRightSub {
  color: #000;
  text-align: center;
  font-family: Arial;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
}
.headerBottom {
  border-bottom: 1px solid #000;
  background: #f7f7f7;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
}
.headerBottomInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.headerBottomSub {
  color: #000;
  font-family: 'Times New Roman', Times, serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0.32px;
  padding: 14px 21.07px 13px 12.8px;
  border-right: 1px solid #17435e;
}
.headerBottomLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
  padding: 14px 16px;
}
.headerBottomLink {
  color: #000;
  font-family: 'Times New Roman', Times, serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 13px; /* 100% */
  letter-spacing: 0.26px;
}

/* content */
.content {
  margin-top: 30px;
}
.contentInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 823px;
  margin-left: auto;
}
.contentLeft {
  width: 57%;
}
.contentLeftSub {
  color: #2e6d9d;
  font-family: Tahoma;
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: 19px; /* 100% */
  text-transform: uppercase;
}
.contentLeftSub span {
  color: #808080;
}
.contentLeftTitle {
  color: #000;
  font-family: 'Times New Roman', Times, serif;
  font-size: 39px;
  font-style: normal;
  font-weight: 700;
  line-height: 43px; /* 110.256% */
  margin-top: 15.5px;
}
.contentLeftBlocks {
  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: 32px;
}
.contentLeftBlockImg img {
  display: block;
  max-width: 100%;
}
.contentLeftBlockSubs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 21px;
  margin-top: 15px;
}
.contentLeftBlockSub {
  color: #202020;
  font-family: 'Times New Roman', Times, serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
}
.contentLeftBlockSub a {
  color: #2e6d9d;
}
.contentLeftBlockImgSub {
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px; /* 116.667% */
  letter-spacing: 0.5px;
  margin-top: 5px;
}
.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: 15px;
  margin-top: 15px;
}
.dayBoxTitle {
  color: #fff;
  text-align: center;
  font-family: Helvetica Neue;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 30.8px; /* 140% */
  background: #3b5998;
}
.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: 16px;
  padding: 5px 6px 23px 6px;
  border-radius: 0px 0px 4px 4px;
  border: 1px solid #3b5998;
}
.dayBoxSub {
  color: #2a2e2e;
  font-family: Helvetica Neue;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 200% */
}
.dayBoxSub a {
  color: #2e6d9d;
}
.dayBoxImg img {
  display: block;
  max-width: 100%;
}
.contentLeftBlockTitle {
  color: #0f64a1;
  font-family: Helvetica Neue;
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: 29.9px; /* 130% */
}
.contentLeftBlockTitle a {
  color: #0f64a1;
}
.contentLeftBlockTitles {
  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: 27px;
}
.contentLeftBlockTitle a.redLink {
  color: #ca4521;
}
.today {
  color: #2a2e2e;
  font-family: Helvetica Neue;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 83.333% */
}
.btnContainer {
  text-align: center;
}
.contentLeftBlockBtn {
  display: inline-block;
  color: #fff;
  text-align: center;
  font-family: 'Arial';
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height:30px;
  text-transform: uppercase;
  border-radius: 5px;
  background: #211254;
  padding: 17px 76px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin-top: 22px;
  -webkit-animation: bounce 1s infinite;
  animation: bounce 1s infinite;
}
.contentLeftBlockBtn:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
/* comments */
.comments {
  margin-top: 30px;
}
.commentsTop {
  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;
  border-bottom: 2px solid #e7e9ee;
}
.commentsTopLeft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
.commentsTopLeftSub {
  color: #2a2e2e;
  text-align: center;
  font-family: Helvetica Neue;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px; /* 100% */
  text-transform: capitalize;
  padding: 12px 0;
  border-bottom: 2px solid #2e9fff;
}
.commentsTopLeftSub1 {
  color: #2e6d9d;
  font-family: Helvetica Neue;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px; /* 100% */
}
.commentsTopLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  color: #656c7a;
  font-family: Helvetica Neue;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px; /* 100% */
}
.arrowBottom {
  width: 0;
  height: 0;
  text-indent: -99999px;
  vertical-align: top;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #000;
  opacity: 0.3;
  content: '\2193';
}
.recomend {
  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-top: 12px;
}
.recomendLeft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
}
.recomendLeftSub {
  color: rgba(0, 0, 0, 0.76);
  text-align: center;
  font-family: Helvetica Neue;
  font-size: 19.2px;
  font-style: italic;
  font-weight: 700;
  line-height: 19.2px; /* 100% */
  padding-left: 12px;
}
.recomendLeftLink {
  display: block;
  color: rgba(0, 0, 0, 0.76);
  text-align: center;
  font-family: Helvetica Neue;
  font-size: 19.2px;
  font-style: italic;
  font-weight: 700;
  line-height: 19.2px; /* 100% */
}
.recomendLeftLink span {
  color: #656c7a;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 0px; /* 0% */
}
.recomendLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 13px;
  color: #656c7a;
  font-family: Helvetica Neue;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 13px;
}
.commentsBottom {
  margin-left: 60px;
  margin-top: 50px;
}
textarea {
  display: block;
  color: #687a86;
  font-family: Helvetica Neue;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
  width: 100%;
  resize: none;
  height: 170px;
  border-radius: 4px;
  border: 2px solid #dbdfe4;
  background: #fff;
  outline: none;
  padding: 7px 10px;
  margin-bottom: 12px;
}
.commentsBottomSub {
  color: #687a86;
  font-family: Helvetica Neue;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 11px; /* 100% */
  text-transform: uppercase;
}
.register {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3.6px;
  margin-top: 44px;
}
.registerIconContainer {
  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: 19px;
  height: 19px;
  border-radius: 9px;
  border: 2px solid #687a86;
}
.registerIcon {
  color: #656c7a;
  font-family: Helvetica Neue;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 12px; /* 100% */
}
.registerInput {
  display: block;
  color: #757575;
  font-family: Arial;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 4px;
  border: 2px solid #dbdfe4;
  background: #fff;
  outline: none;
  margin-top: 8px;
  width: 100%;
  padding: 8px 11px;
}
.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: 27px;
  margin-top: 36px;
}
.commentBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12px;
}
.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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
  color: #2e6d9d;
  font-family: Helvetica Neue;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 13px; /* 100% */
}
.commentBlockName span {
  color: #2e6d9d;
  font-family: Helvetica Neue;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 12px; /* 100% */
}
#dot {
  color: #c2c6cc;
  font-family: Helvetica Neue;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18.2px; /* 140% */
}
.commentBlockSub {
  color: #2a2e2e;
  font-family: Helvetica Neue;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 140% */
  margin-top: 4.7px;
}
.commentBlockTextBottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
  margin-top: 4.5px;
}
.commentBlockLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}
.triangle {
  color: #2e6d9d;
  font-family: Songti SC;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
}
.triangle:last-child {
  border-left: 2px solid #e7e9ee;
  padding-left: 8px;
}
.commentBlockTextBottomSub {
  color: #2e6d9d;
  font-family: Helvetica Neue;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 13px; /* 100% */
}
.commentBlockTextBottomSub1 {
  color: #656c7a;
  font-family: Helvetica Neue;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 13px; /* 100% */
}
.commentBlockImg1 img {
  width: 36px;
  height: 36px;
}
.commentAnimation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}
.commentAnimation img {
  display: block;
  width: 40px;
  height: 10.78px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.commentAnimationSub {
  color: #2a2e2e;
  font-family: Helvetica Neue;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px; /* 100% */
}
.contentRight {
  width: 36%;
}
.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: 21px;
}
.contentRightBlockImg img {
  display: block;
  max-width: 100%;
}
.contentRightBlockSub {
  color: #222526;
  text-align: center;
  font-family: 'Times New Roman', Times, serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 138.889% */
  padding: 10px 17px;
  background: #f3f6f7;
}
.popular {
  margin-top: 51px;
}
.popularTitle {
  color: #000;
  font-family: 'Times New Roman', Times, serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
  text-transform: uppercase;
}
.popularBlocks {
  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: 15px;
}
.popularBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 17px;
}
.popularBlockImg img {
  display: block;
  width: 100px;
  height: 75px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.popularBlockSub {
  color: #000;
  font-family: 'Times New Roman', Times, serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

/* footer */
.footer {
  margin-top: 20px;
}
.footerTitleBox {
  padding-top: 8px;
  padding-bottom: 10px;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
}
.footerTitle {
  color: #1b1b1b;
  text-align: center;
  font-family: Tahoma;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px; /* 100% */
  text-transform: uppercase;
}
.footerLinksBoxsContainer {
  padding-top: 10px;
  padding-bottom: 18px;
}
.footerLinksBoxs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footerLinkBoxTitle {
  color: #333;
  font-family: Arial;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.footerLinkBoxItems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3px;
  margin-top: 12.5px;
}
.footerLinkBoxItem {
  color: #2e6d9d;
  font-family: Tahoma;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px; /* 100% */
}
.footerMiddle {
  padding: 20.5px 0;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
}
.footerMidlleInner {
  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;
  position: relative;
}
.footerLogo {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
.footerLogoSub {
  color: #4a4a4a;
  text-align: center;
  font-family: Arial;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px; /* 100% */
}
.footerSocial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 11px;
}
.footerSocialBox {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  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;
  border: 1px solid rgba(33, 96, 135, 1);
}
.footerSocialBox img {
  display: block;
}
.footerLinks {
  padding: 11px 40px;
}
.footerLinksInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 13px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footerLink {
  color: #2e6d9d;
  text-align: center;
  font-family: Arial;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 123.077% */
  padding-right: 11.5px;
  border-right: 1px solid #a8a8a8;
}
.footerLink:last-child {
  border: 0;
}
