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

/* forms */
.formbox {
  padding-top: 73px;
  padding-bottom: 127px;
}
.formTitle {
  color: #383838;
  text-align: center;
  font-family: 'Open Sans';
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 39px */
}
.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;
  position: relative;
  margin-top: 44px;
}
.fname,
.lname,
.email,
.phone {
  display: block;
  width: 100%;
  color: #000;
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  border-radius: 5px;
  border: 1px solid #ebebeb;
  background: #fff;
  padding: 10.5px 15px;
  margin-bottom: 20px;
}
.phone {
  padding-left: 60px;
}
.checklabel,
.check {
  display: none;
}
.intl-tel-input {
  width: 100%;
}
.submit {
  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;
  font-family: 'Open Sans';
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 25.5px */
  border-radius: 25px;
  background: #da2729;
  border: 0;
  padding: 14.5px 0;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin-top: 30px;
}
.submit:hover {
  -webkit-box-shadow: 0 0 10px #da2729;
  box-shadow: 0 0 10px #da2729;
}
.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: 1197px;
  margin: 0 auto;
}

/* header */
.header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  padding: 32px 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.header.active {
  background: rgba(0, 0, 0, 0.49);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
}
.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 {
  width: 100%;
}
.logo img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

/* intro */
.intro {
  background: url('../../assets/img/introBg.webp') lightgray -16.285px 0.644px /
    105.768% 141% no-repeat;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
  padding-top: 200px;
  padding-bottom: 150px;
}
.introText {
  background: rgba(0, 0, 0, 0.49);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  padding: 60px;
}
.introTitle {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 84px */
}
.introList {
  list-style: none;
  margin: 0;
  margin-top: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 10px;
}
.introListItem {
  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;
}
.introListItem img {
  display: block;
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.introListItemSub {
  color: #fff;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 36px */
}
.btnContainer {
  text-align: center;
  margin-top: 21px;
}
.btnContainer1 {
  margin-top: 40px;
}
.btn {
  display: inline-block;
  color: #fff;
  text-align: center;
  font-family: 'Open Sans';
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  text-transform: uppercase;
  border-radius: 105px;
  background: #da2729;
  padding: 15px 144px;
  -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 #da2729;
  box-shadow: 0 0 10px #da2729;
}

/* click */
.click {
  background: #f7f7f7;
  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 {
  color: #212121;
  font-family: 'IBM Plex Serif';
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 54px */
}
.clickTitle span {
  color: #da2729;
  font-family: 'IBM Plex Serif';
}
.clickBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0px 82px 23px 0px rgba(0, 0, 0, 0),
    0px 52px 21px 0px rgba(0, 0, 0, 0.01), 0px 29px 18px 0px rgba(0, 0, 0, 0.05),
    0px 13px 13px 0px rgba(0, 0, 0, 0.09), 0px 3px 7px 0px rgba(0, 0, 0, 0.1),
    0px 0px 0px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 82px 23px 0px rgba(0, 0, 0, 0),
    0px 52px 21px 0px rgba(0, 0, 0, 0.01), 0px 29px 18px 0px rgba(0, 0, 0, 0.05),
    0px 13px 13px 0px rgba(0, 0, 0, 0.09), 0px 3px 7px 0px rgba(0, 0, 0, 0.1),
    0px 0px 0px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 32px;
  max-width: 1150px;
  margin: 0 auto;
  margin-top: 20px;
}
.clickBoxImg {
  width: 33%;
}
.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;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0px 27px 0 49px;
}
.clickBoxDivider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
}
.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 {
  color: #71768a;
  text-align: center;
  font-family: 'Open Sans';
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 22.5px */
}
.clickBoxBottomSub img {
  display: block;
  width: 14px;
  height: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* work */
.work {
  margin-top: 60px;
}
.workInner {
  max-width: 1031px;
  margin: 0 auto;
}
.workTitle {
  color: #565656;
  text-align: center;
  font-family: Montserrat;
  font-size: 35px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 52.5px */
}
.workTitle span {
  color: #1f445a;
}
.workSub {
  color: #565656;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  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;
}

/* about */
.about {
  margin-top: 60px;
}
.aboutInner {
  max-width: 1030px;
  margin: 0 auto;
}
.aboutTitle {
  color: #565656;
  text-align: center;
  font-family: Montserrat;
  font-size: 35px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.aboutTitle span {
  font-weight: 700;
  color: #1f445a;
}
.aboutSub {
  color: #565656;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-top: 5px;
}
.aboutImg {
  margin-top: 20px;
}
.aboutImg img {
  display: block;
  max-width: 100%;
  width: 100%;
}
.aboutText {
  max-width: 950px;
  margin: 0 auto;
  margin-top: 20px;
}
.aboutSub1 {
  color: #565656;
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 21px */
}

/* 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%;
}

/* why */
.why {
  margin-top: 60px;
}
.whyInner {
  max-width: 1030px;
  margin: 0 auto;
}
.whyTitle {
  color: #565656;
  text-align: center;
  font-family: Montserrat;
  font-size: 35px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  text-transform: uppercase;
}
.whyTitle span {
  color: #1f445a;
  font-weight: 700;
  font-family: Montserrat;
}
.whySub {
  color: #565656;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  margin-top: 10px;
}
.whyBlocks {
  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;
  gap: 50px;
  margin-top: 50px;
}
.whyBlock {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
}
.whyBlockTitle {
  color: #1f445a;
  text-align: center;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  margin-top: 20px;
}
.whyBlockSub {
  color: #565656;
  text-align: center;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 22.5px */
  margin-top: 10px;
}
.why .btnContainer {
  margin-top: 60px;
}
.whyBlockImg img {
  display: block;
  width: 490px;
}

/* ask */
.ask {
  margin-top: 60px;
}
.askInner {
  max-width: 1030px;
  margin: 0 auto;
}
.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: -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%;
}

/* tell */
.tell {
  padding: 110px 0;
  background: #1f445a;
}
.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: 30px 0;
  background: #f1f7fb;
}
.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: #131313;
  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;
}
