html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  list-style-type: none;
}

body {
  font-family: "Open Sans";
  font-weight: normal;
  color: #5e5d6c;
  font-size: 18px;
}

h1,
h2,
a {
  font-family: "Montserrat";
  font-weight: 500;
}

h1 {
  font-size: 70px;
  color: #fff;
}

h2 {
  font-size: 52px;
  color: #39374d;
  font-family: "Montserrat";
  font-weight: 600;
}

h3 {
  font-size: 22px;
  font-weight: bold;
}

p {
  line-height: 28px;
}

.btn {
  width: 150px;
  height: 50px;
  border-radius: 4px;
  background-color: #fff;
  color: #212c52;
  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;
  font-size: 14px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.btn:hover {
  background-color: #ee8839;
  color: #fff;
}
.btn2 {
  color: #66c0c3;
}
.btn2:hover {
  background-color: #212c52;
}

.blue-txt {
  color: #212c52 !important;
}

.bold {
  font-weight: bold;
}

/* The container */
.check {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 45px;
}

.check label {
  margin-left: 30px;
}

/* Hide the browser's default checkbox */
.check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.check:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.check input:checked ~ .checkmark {
  background-color: #0a3c5d;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.check input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.check .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.icon-bar {
  width: 25px;
  height: 3px;
  background-color: #ee8839;
  display: block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  margin-top: 4px;
}

.navbar-toggler {
  border: none;
  background: transparent !important;
  outline: none !important;
}

header {
  background-color: #212c52;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: 0.3s all;
}

header .head_top {
  border-bottom: 1px solid #485170;
}
header.sticky {
  position: fixed;
  animation: scDown forwards 0.5s ease-in-out;
}
header.sticky .head_top {
  display: none;
}
header.sticky .navbar .navbar-brand img {
  max-width: 170px;
}
header.sticky .navbar .btn {
  width: 120px;
  height: 40px;
}
header.sticky .header_bottom {
  padding: 10px 0;
}

@keyframes scDown {
  0% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0);
  }
}

header .head_top .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

header .head_top .contact li a {
  padding: 15px 20px;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  border-right: 1px solid #485170;
}

header .header_bottom {
  padding: 15px 0;
  border-bottom: 1px solid #485170;
}

header .navbar {
  padding: 0;
  margin: 0;
}

header .navbar .navbar-brand {
  padding: 0;
}

header .navbar .navbar-nav .nav-link {
  color: #fff;
  font-size: 16px;
  padding: 0;
  padding-right: 30px;
}
/* ====================================== */
/* banner */
/* ====================================== */
.banner {
  padding: 266px 0 360px 0;
  background-color: #ee8839;
  position: relative;
  height: 100vh;
}

.banner .cnt {
  max-width: 930px;
}

.banner .cnt p {
  max-width: 680px;
  margin: 45px 0;
  color: #fff;
}

.banner .cnt ul.btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.banner .cnt ul.btns li a {
  margin-right: 10px;
}

.banner .cnt ul.btns li:last-child a {
  margin-right: 0;
}

.banner .banner_right {
  position: absolute;
  right: 0;
  bottom: 0;
}
.banner .banner_right img {
  max-width: 600px;
}

.banner .scrolldown {
  width: 200px;
  height: 60px;
  background-image: url(../images/scroll_bg.png);
  background-repeat: no-repeat;
  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;
  position: absolute;
  bottom: -2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  cursor: pointer;
}

.how_works {
  padding: 190px 0 100px 0;
}

.how_works .row {
  counter-reset: post_count;
}

.how_works h2 {
  text-align: center;
  margin-bottom: 108px;
}

.how_works .cnt {
  max-width: 500px;
}
.how_works .how-list p {
  font-size: 17px;
  color: #5e5d6c;
}
.how_works .how-list li {
  margin-top: 30px;
  padding-left: 40px;
  position: relative;
}
.how_works .how-list li::before {
  content: "";
  position: absolute;
  background-image: url("../images/tick.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 5px;
  width: 25px;
  height: 25px;
}
.how_works .how-list li.im::before {
  display: none;
}
.sample_tool.vacancy {
  background-color: #f2f1f1;
  padding: 100px 0;
}

.sample_tool .cnt {
  text-align: center;
  width: 100% !important;
  max-width: 100% !important;
  margin-top: 0 !important;
}
.sample_tool .cnt h2 {
  color: #39374d !important;
}

.sample_tool .cnt p {
  padding: 30px 0 47px 0;
}
/* check */
.checkbox {
  display: flex;
  position: relative;
  margin-top: 6px;
  flex-direction: column-reverse;
  justify-content: flex-end;
}
.checkbox input[type="checkbox"] {
  position: absolute;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.check {
  position: relative;
  padding-left: 40px;
}
.check:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #acacac;
}
.check:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 7px;
  width: 9px;
  height: 4px;
  border-width: 0px 0px 2px 2px;
  border-bottom-style: solid;
  border-left-style: solid;
  border-bottom-color: rgb(255, 255, 255);
  border-left-color: rgb(255, 255, 255);
  border-image: initial;
  border-top-style: initial;
  border-top-color: initial;
  border-right-style: initial;
  border-right-color: initial;
  transform: rotate(-50deg);
  opacity: 0;
  transition: all 0.3s ease 0s;
}
.checkbox input:checked ~ .check:after {
  opacity: 1;
}
.check.active::after {
  opacity: 1;
}
.check.active::before {
  background-color: #0a3c5d;
}
.vacancy .vacancy-form form input[type="submit"] {
  background-color: transparent;
  color: #fff;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
}
.vacancy .vacancy-form form textarea {
  width: 100%;
  height: 250px;
}
.btn-3 {
  background-color: #ee8839 !important;
  margin-top: 35px !important;
  margin-left: auto;
}
.btn-3:hover {
  border: 2px solid #212c52;
}
.about-us {
  padding: 100px 0;
}

.about-us .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about-us .cnt p {
  padding: 30px 0 0px 0;
}

.about-us .cnt p:last-child {
  padding-bottom: 0;
}

.contact_us {
  background-color: #0a3c5d;
  padding: 100px 0;
}

.contact_us h2 {
  color: #fff;
  font-size: 40px;
  font-family: "Montserrat";
  font-weight: 500;
}

.contact_us .cnt {
  margin-top: 100px;
  max-width: 520px;
}

.contact_us .cnt figure {
  margin-top: 88px;
}

.contact_us .sec {
  padding: 44px 0 18px 0;
  border-bottom: 1px solid #365e79;
}

.contact_us .sec h3 {
  font-size: 22px;
  color: #fff;
  font-family: "Montserrat";
  font-weight: 500;
}

.contact_us .sec address,
.contact_us .sec a,
.contact_us .sec p {
  color: #cacaca;
}

.contact_us .form {
  background-color: #fff;
  padding: 56px 60px;
  border-radius: 6px;
}

.contact_us .form .input-group {
  margin-bottom: 15px;
}

.contact_us .form h3 {
  font-size: 16px;
  color: #39374d;
  font-weight: 800;
  margin-bottom: 30px;
}

.contact_us .form input[type="text"],
.contact_us .form input[type="number"],
.contact_us .form input[type="email"] {
  width: 100%;
  height: 50px;
  background-color: #f5f5f5;
  border: 0;
  outline: none;
  padding: 0 20px;
}

.contact_us .form textarea {
  width: 100%;
  height: 150px;
  background-color: #f5f5f5;
  border: 0;
  outline: none;
  padding: 20px;
}

.contact_us .form form h3 {
  margin-top: 45px;
}

.contact_us .form form .msg {
  margin-top: 0px;
  margin-bottom: 25px;
}

.contact_us .form form .check {
  margin-bottom: 10px;
}

.contact_us .form form input[type="submit"] {
  background-color: transparent;
  color: #fff;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
}

.contact_us .form form input[type="submit"]:hover {
  color: #fff;
}

.contact_us .form form .btn {
  padding: 0;
  background-color: #66c0c3;
  margin: 0 auto;
}

.contact_us .form form .btn:hover {
  color: #fff;
  border: 2px solid #212c52;
}

footer {
  padding: 44px 0;
}

footer .cridentials {
  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;
}

footer .cridentials li,
footer .cridentials li a {
  color: #5e5d6c;
  font-size: 14px;
  text-decoration: none;
}

.banner.privacy {
  padding: 260px 0 136px;
  height: auto;
}

.privacy-cnt {
  border-bottom: 3px solid #0a3c5d;
  padding: 120px 80px;
}

.privacy-cnt p {
  margin-bottom: 36px;
}

.privacy-cnt h5 {
  margin-bottom: 60px;
}

.privacy-cnt h3 {
  margin-bottom: 10px;
}
/* error */
span.error {
  color: red;
  font-size: 10px;
  display: block;
  width: 100%;
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
}
.input-group.check span.error {
  bottom: unset;
  top: -20px;
}

/*recaptcha*/
.g-recaptcha.brochure__form__captcha {
  margin-bottom: 20px;
}
.g-recaptcha.brochure__form__captcha > div iframe {
  width: 100%;
  height: 100px;
}
.g-recaptcha {
  transform-origin: left top;
  -webkit-transform-origin: left top;
}
.rc-anchor-normal .rc-anchor-pt {
  display: none;
}

/*Responsive*/

@media (max-width: 1600px) {
}
@media (max-width: 1400px) {
  .banner {
    padding: 160px 0 260px;
  }
  .banner .banner_right {
    text-align: right;
  }
  .banner .banner_right img {
    max-width: 60%;
  }
  .g-recaptcha.brochure__form__captcha > div {
    width: 333px !important;
  }
}

@media (max-width: 1199px) {
  .how_works {
    padding: 100px 0;
  }
  .tool_descr .col {
    padding: 10px;
  }
  .tool_descr h4 {
    font-size: 16px;
  }
  p {
    font-size: 16px;
    line-height: 26px;
  }
  .contact_us address,
  .contact_us a {
    font-size: 16px;
    line-height: 26px;
  }
  input::-webkit-input-placeholder,
  label,
  textarea::-webkit-input-placeholder {
    font-size: 16px;
  }
  input:-ms-input-placeholder,
  label,
  textarea:-ms-input-placeholder {
    font-size: 16px;
  }
  input::-ms-input-placeholder,
  label,
  textarea::-ms-input-placeholder {
    font-size: 16px;
  }
  input::placeholder,
  label,
  textarea::placeholder {
    font-size: 16px;
  }
  .privacy-cnt {
    padding: 80px 0 60px 0;
  }
  .privacy-cnt p {
    margin-bottom: 28px;
  }
  .privacy-cnt h5 {
    margin-bottom: 40px;
  }
  .g-recaptcha.brochure__form__captcha > div {
    width: 333px !important;
  }
  .how_works .how-list li.im img {
    width: 75%;
  }
}

@media (max-width: 991px) {
  .banner {
    padding: 262px 0 219px;
  }
  h1 {
    font-size: 50px;
  }
  .banner .banner_right img {
    max-width: 50%;
  }
  .banner .cnt p {
    max-width: 475px;
  }
  .banner .banner_right {
    width: 85%;
  }
  .how_works {
    padding: 60px 0;
  }
  h2 {
    font-size: 38px;
  }
  .how_works h2 {
    margin-bottom: 50px;
  }
  .tool_descr .col {
    padding: 0;
  }
  .tool_descr h4 {
    font-size: 14px;
  }
  .tool_descr .values p {
    padding: 10px 0;
    font-size: 14px;
    line-height: 22px;
  }
  .index {
    font-size: 14px;
  }
  .sample_tool {
    padding: 60px 0;
  }
  .banner .cnt p {
    margin: 20px 0;
  }
  .sample_tool .cnt p {
    padding: 20px 0;
  }
  .about-us {
    padding: 60px 0;
  }
  .about-us .cnt p {
    padding: 20px 0 30px 0;
  }
  .contact_us address,
  .contact_us a {
    font-size: 14px;
  }
  .contact_us .form h3 {
    font-size: 14px;
    line-height: 22px;
  }
  input::-webkit-input-placeholder,
  label,
  textarea::-webkit-input-placeholder {
    font-size: 14px;
  }
  input:-ms-input-placeholder,
  label,
  textarea:-ms-input-placeholder {
    font-size: 14px;
  }
  input::-ms-input-placeholder,
  label,
  textarea::-ms-input-placeholder {
    font-size: 14px;
  }
  input::placeholder,
  label,
  textarea::placeholder {
    font-size: 14px;
  }
  .contact_us .form textarea {
    height: 110px;
  }
  .contact_us {
    padding: 60px 0;
  }
  .contact_us .sec {
    padding: 30px 0 15px 0;
  }
  .contact_us .cnt figure {
    margin-top: 30px;
  }
  .contact_us .form {
    padding: 30px 20px;
  }
  footer {
    padding: 30px 0;
  }
  .navbar-nav {
    padding: 40px;
  }
  header .navbar .navbar-nav .nav-link {
    padding: 10px 0;
  }
  .banner.privacy {
    padding: 210px 0 80px;
  }
  .privacy-cnt {
    padding: 40px 0;
  }
  .privacy-cnt p {
    margin-bottom: 20px;
  }
  .privacy-cnt p:last-child {
    margin-bottom: 0;
  }
  .privacy-cnt h5 {
    margin-bottom: 30px;
  }
  .privacy-cnt h3 {
    margin-bottom: 6px;
  }

  /*recaptcha*/
  .g-recaptcha {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 28px;
  }
  p {
    font-size: 14px;
  }
  header .head_top .contact li a {
    padding: 15px;
  }
  .btn {
    width: 130px;
    height: 46px;
  }

  .banner .banner_right img {
    max-width: 70%;
  }
  .how_works {
    padding: 30px 0;
  }
  .how_works h2 {
    margin-bottom: 30px;
  }
  h3 {
    font-size: 20px;
  }
  .how_works .cnt h3 {
    padding: 20px 0;
  }
  .how_works .cnt p {
    margin-bottom: 20px;
  }
  .sample_tool {
    padding: 30px 0;
  }
  .headings .col {
    display: none;
  }
  .tool_descr .values h4 {
    display: block;
  }
  .tool_descr .col-md-10,
  .tool_descr .col-md-2,
  .headings .col-md-5 {
    border: 0;
  }
  .tool_descr .col-md-5 {
    border-top: 0;
  }
  .tool_descr .col {
    border-bottom: 1px solid #000;
    padding: 10px 0;
  }
  .values .row .col:last-child {
    border-right: 1px solid #000;
  }
  .values > .row {
    margin-bottom: 20px;
  }
  .tool_descr .headings h3 {
    padding: 20px 0;
  }
  .tool_descr {
    padding: 30px;
  }
  .about-us {
    padding: 30px 0;
  }
  .about-us .cnt p {
    padding: 15px 0 10px 0;
  }
  .contact_us {
    padding: 40px 0;
  }
  .contact_us .cnt {
    margin-top: 0;
  }
  .contact_us h2 {
    font-size: 28px;
  }
  .contact_us .sec h3 {
    font-size: 19px;
  }
  .contact_us .sec {
    padding: 15px 0 10px 0;
  }
  .contact_us .form {
    padding: 30px 60px;
  }
  header .navbar .navbar-nav .nav-link {
    padding: 8px 0;
  }
  footer .cridentials li,
  footer .cridentials li a {
    font-size: 12px;
  }
  footer {
    padding: 20px 0;
  }
  .privacy-cnt {
    padding: 30px 0;
  }
  .privacy-cnt p {
    margin-bottom: 15px;
  }
  .banner .cnt ul.btns li:last-child a {
    background-color: #fff;
    color: #0a3c5d;
  }
  .tool_descr .col {
    padding: 0;
    justify-content: start;
  }
  .tool_descr .values h4 {
    width: 100%;
    min-height: 50px;
    vertical-align: middle;
    border-bottom: 1px solid #000;
    padding: 8px 0;
    font-size: 12px;
  }
  .tool_descr .col span {
    display: block;
    min-height: 30px;
  }
  .choose-right {
    padding-top: 70px;
  }
}

@media (max-width: 575px) {
  header .head_top .contact li a {
    font-size: 14px;
  }
  h1 {
    font-size: 38px;
  }
  .banner {
    z-index: 1;
  }
  .banner .scrolldown {
    width: 140px;
    height: 44px;
    background-size: 100%;
  }
  .banner .banner_right {
    z-index: -1;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  footer .cridentials li,
  footer .cridentials li a {
    font-size: 11px;
  }
  .banner.privacy {
    padding: 140px 0 40px;
  }
  .privacy-cnt {
    padding: 20px 0;
  }
  .privacy-cnt h5 {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .privacy-cnt h3 {
    font-size: 18px;
  }
  header.sticky .navbar .navbar-brand img {
    max-width: 130px;
  }
  .banner {
    padding: 227px 0 219px;
  }
}

@media (max-width: 398px) {
  .banner {
    padding: 152px 0 219px;
  }
  header .navbar .navbar-brand img {
    width: 170px;
  }
  h1 {
    font-size: 32px;
  }
  header .head_top .contact li a {
    padding: 8px;
  }
  .navbar-nav {
    padding: 20px 30px;
  }
  .banner .cnt p {
    margin: 10px 0;
  }
  h2 {
    font-size: 26px;
  }

  .tool_descr .col-md-10 {
    padding: 8px 0px;
  }
  .contact_us .form {
    padding: 30px;
  }
  footer .cridentials {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .values > .row {
    margin-bottom: 30px;
  }
  .banner .banner_right {
    text-align: center;
  }
  .banner .banner_right img {
    max-width: 70%;
  }
  .banner .cnt ul.btns {
    margin-top: 42px;
  }
  .tool_descr .values h4 {
    font-size: 10px;
  }
}
@media (max-width: 324px) {
  h1 {
    font-size: 28px;
  }
  .banner .banner_right img {
    max-width: 58%;
  }
  .tool_descr .col {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
  }
  .values > .row .col:nth-child(-n + 3) {
    border-bottom: 0;
  }
  .values > .row .col:nth-child(3) {
    border-right: 1px solid #000;
  }
  header .head_top .contact li a {
    font-size: 12px;
  }
  .g-recaptcha {
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
  }
}

.navbar-toggler .top-bar {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 10% 10%;
  transform-origin: 10% 10%;
}

.navbar-toggler .middle-bar {
  opacity: 0;
}

.navbar-toggler .bottom-bar {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 10% 90%;
  transform-origin: 10% 90%;
}

.navbar-toggler.collapsed .top-bar {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar {
  opacity: 1;
}

.navbar-toggler.collapsed .bottom-bar {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
/*# sourceMappingURL=custom.css.map */
