@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&amp;family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;display=swap");
h1 {
  color: #212529;
  margin-top: 25px;
  margin-bottom: 25px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 58px;
}

h2 {
  color: #212529;
  margin-top: 50px;
  margin-bottom: 15px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 50px;
}

h3 {
  color: #212529;
  margin-top: 20px;
  margin-bottom: 15px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}

p {
  color: #727a86;
  margin-top: 0;
  margin-bottom: 15px;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 24px;
}

ul {
  margin: 20px 0 15px;
}
ul > li {
  color: #141414;
  margin-top: 30px;
  padding-left: 30px;
  list-style: none;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  background: url("../img/general/checkmark.svg") left top 5px no-repeat;
}
ul > li:first-child {
  margin-top: 0;
}
ul.blue {
  max-width: 540px;
}
ul.blue li {
  display: inline-block;
  margin-top: 20px;
  vertical-align: top;
  background: none;
  padding-left: 15px;
  padding-right: 15px;
}
ul.blue li::before {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 12px;
  left: 0;
  top: 5px;
  background: #23b2f0;
}

.wrap {
  max-width: 1720px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  position: relative;
  box-sizing: border-box;
}

.wrap-desktop {
  box-sizing: border-box;
}

.blue h3 {
  color: #ffffff;
  margin: 0;
}

.description {
  color: #727272;
  max-width: 540px;
  margin-top: 15px;
  margin-bottom: 20px;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
}

.center {
  text-align: center;
}

.mobile-center {
  text-align: center;
}

.card {
  width: 100%;
  max-width: 320px;
  padding: 20px;
  margin: 0 auto 20px;
  border-radius: 10px;
  box-shadow: 5px 5px 38px rgba(130, 141, 167, 0.1);
  background: #ffffff;
}

/* ===== LINKS & BUTTONS ===== */
a {
  display: inline-block;
  position: relative;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #3d7fe4;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  -webkit-transition: all 275ms ease;
  transition: all 275ms ease;
  cursor: pointer;
}

a.unl::after {
  content: "";
  display: block;
  position: absolute;
  /*bottom: 0;*/
  /*right: 0;*/
  height: 2px;
  width: 0;
  background: #3d7fe4;
  margin-top: -2px;
  -webkit-transition: all 275ms ease;
  transition: all 275ms ease;
}

a.unl:hover::after {
  width: 100%;
}

a.unl:visited::after {
  background: #6966ff;
}

a.unl-2::after {
  content: "";
  display: block;
  position: absolute;
  /*bottom: 0;*/
  /*right: 0;*/
  height: 2px;
  width: 100%;
  background: #3d7fe4;
  margin-top: -2px;
  -webkit-transition: all 275ms ease;
  transition: all 275ms ease;
}

a.unl-2:hover::after {
  width: 0;
}

a.unl-2:visited::after {
  background: #6966ff;
}

.btn {
  display: table;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding: 23px 40px;
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  background: #397ce7;
  border-radius: 40px;
  border: 0;
  cursor: pointer;
  -webkit-transition: all 275ms ease;
  transition: all 275ms ease;
}

.btn:hover {
  color: #ffffff;
  background: #255cff;
  box-shadow: none;
}

.btn.light {
  color: #2b62fb !important;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(43, 56, 108, 0.3);
}

.btn.light:hover {
  color: #ffffff !important;
  background: #092997;
}

.btn:active,
.btn.light:active {
  background: #c3c9d9;
}

.btn:visited,
.btn:visited:hover {
  color: #ffffff;
}

p > a {
  line-height: inherit;
  font-size: inherit;
  margin: 0;
  font-weight: 600;
  color: #5273EF;
}

div.close {
  height: 30px;
  width: 30px;
  top: 15px;
  right: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  cursor: pointer;
}

div.close::after {
  content: "";
  width: 30px;
  height: 2px;
  display: block;
  background: #d1d1d1;
  position: absolute;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: 15px;
  border-radius: 2px;
  -webkit-transition: 275ms ease-in-out;
  -o-transition: 275ms ease-in-out;
  transition: 275ms ease-in-out;
}

div.close:hover::after {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  background-color: #5273EF;
  height: 3px;
}

div.close::before {
  content: "";
  width: 30px;
  height: 2px;
  display: block;
  background: #d1d1d1;
  position: absolute;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  margin-top: 15px;
  border-radius: 2px;
  -webkit-transition: 275ms ease-in-out;
  -o-transition: 275ms ease-in-out;
  transition: 275ms ease-in-out;
}

div.close:hover::before {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
  background-color: #5273EF;
  height: 3px;
}

a.read-more {
  display: block;
  position: absolute;
  margin: 0;
  right: -10px;
  bottom: -10px;
  width: 60px;
  height: 60px;
  border-radius: 10px 0;
  background: #f16643 url("../img/general/arrow-r.svg") right 19px center no-repeat;
}

a.read-more:hover {
  background-color: #ff843a;
}

h3 > a,
h3 > a:visited {
  margin: 0;
  color: #212529;
  font-size: 18px;
  line-height: 28px;
}

/* ===== SWIPER ===== */
.move {
  transition: left 175ms ease;
  -webkit-transition: left 175ms ease;
}

.draw {
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
}

.draw::before,
.draw::after {
  border: 1px solid transparent;
  width: 0;
  height: 0;
}

.draw::before {
  top: 0;
  left: 0;
}

.draw::after {
  bottom: 0;
  right: 0;
}

.draw:hover {
  color: #2fa4e2;
}

.draw:hover::before,
.draw:hover::after {
  width: 100%;
  height: 100%;
}

.draw:hover::before {
  border-top-color: #2fa4e2;
  border-right-color: #2fa4e2;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.draw:hover::after {
  border-bottom-color: #2fa4e2;
  border-left-color: #2fa4e2;
  -webkit-transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s, height 0.25s ease-out 0.75s;
  transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s, height 0.25s ease-out 0.75s;
}

div.swiper div.wrapper {
  width: 100%;
  height: 360px;
  margin: auto;
  position: relative;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  /*user-select: none;*/
}

div.swiper div.wrapper div.wrap-slide {
  /*width: 280px;*/
  width: 100%;
  /*max-width: 885px;*/
  height: 330px;
  display: block;
  position: absolute;
}

div.swiper div.wrapper div.wrap-slide > div.slider {
  width: 500%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  cursor: grab;
}

div.swiper div.wrapper div.wrap-slide > div.slider:active {
  cursor: grabbing;
}

div.swiper div.wrapper div.wrap-slide > div.slider > div {
  width: 295px;
  height: 100%;
  position: relative;
  float: left;
  background-size: 100% 100% !important;
}

div.swiper div.wrapper div.wrap-slide > div.slider > div > div.slide {
  position: absolute;
  padding: 20px;
  top: 0;
  right: 15px;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  box-shadow: 5px 5px 38px rgba(130, 140, 168, 0.1);
  background-color: #ffffff;
  transition: 275ms ease;
  -webkit-transition: 275ms ease;
}

div.swiper div.wrapper div.wrap-slide > div.slider > div.active > div.slide {
  box-shadow: 15px 15px 51px rgba(98, 109, 128, 0.3);
}

div.swiper div.wrapper div.controls {
  height: 30px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}

div.swiper div.wrapper div.controls > div {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 20px 5px 0;
  vertical-align: middle;
  border-radius: 50%;
  cursor: pointer;
  border: transparent 2px solid;
  background: #ff4000;
}

div.swiper div.wrapper div.controls > div.active {
  width: 11px;
  height: 11px;
  border: #ff4000 2px solid;
  background: transparent;
}

div.swiper div.wrapper div.wrap-slide div.slider div.slide img {
  display: block;
  width: auto;
  height: 100px;
}

div.swiper div.wrapper div.wrap-slide > div.slider > div > div.slide h3 {
  margin: 10px 0;
}

div.swiper div.wrapper div.wrap-slide > div.slider > div > div.slide p {
  margin: 0;
}

/* ===== FORM ===== */
form {
  padding: 10px;
}

form label,
form div.radio {
  display: block;
  max-width: 340px;
  margin: 10px auto 0;
  padding: 10px 10px 0;
}

form label span {
  display: block;
  color: #727a85;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 2px 7px;
}

form label input,
form label textarea {
  width: 100%;
  padding: 13px 15px;
  color: #212529;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  border: #e1e4ee 1px solid;
  -webkit-transition: all 275ms ease;
  transition: all 275ms ease;
}

form label input {
  /*border-radius: 23px;*/
  border-radius: 25px;
  box-shadow: none;
}

html body form input[name=bait] {
  display: none;
  position: absolute;
  z-index: -1000;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  outline: none;
}

form label textarea {
  border-radius: 10px;
  resize: vertical;
}

form label input::placeholder,
form label textarea::placeholder {
  color: #bbc1ca;
}

form div.submit-wrap .btn {
  max-width: 250px;
  margin-left: auto;
}

form.processing div.submit-wrap {
  background: url("../img/general/loader.svg") center center no-repeat;
}

form.processing div.submit-wrap .btn {
  visibility: hidden;
  -webkit-transition: none;
  transition: none;
}

/* custom-select */
form label.custom-select select {
  position: absolute;
  opacity: 0;
}

form label.custom-select .select {
  width: 100%;
  padding: 13px 30px 13px 15px;
  color: #212529;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  border: #e1e4ee 1px solid;
  border-radius: 23px;
  background: #ffffff;
  z-index: 2;
  -webkit-transition: all 275ms ease;
  transition: all 275ms ease;
}

form label.custom-select .select::after {
  position: absolute;
  content: "";
  top: 20px;
  right: 15px;
  width: 12px;
  height: 7px;
  background: url("../img/general/arrow-d.svg") top right no-repeat;
  -webkit-transition: all 275ms ease-out;
  transition: all 275ms ease-out;
}

form label.custom-select.focus .select::after {
  transform: rotate(180deg);
}

form label.custom-select .select.unset {
  color: #bbc1ca;
}

form label.custom-select .select,
form label.custom-select .items div {
  cursor: pointer;
  /*user-select: none;*/
}

form label.custom-select .items {
  position: absolute;
  background: #ffffff;
  padding-top: 24px;
  margin-top: -24px;
  /*top: 100%;*/
  left: 10px;
  right: 10px;
  max-height: 0;
  border-radius: 0 0 23px 23px;
  box-shadow: none;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: all 275ms ease-out;
  transition: all 275ms ease-out;
}

form label.custom-select.focus .items {
  max-height: 600px;
  box-shadow: 5px 0 18px rgba(225, 228, 238, 0.89);
}

form label.custom-select .items div {
  padding: 13px 15px;
  color: #727a86;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  border-radius: 23px;
  -webkit-transition: background-color 125ms ease-out;
  transition: background-color 125ms ease-out;
}

form label.custom-select .same-as-selected,
form label.custom-select .items div:hover {
  background-color: #f7f9fe;
  color: #212529;
}

form label.custom-select.multiple .same-as-selected {
  background-color: #ffffff;
  background-image: url("../img/general/checkmark-form.svg");
  background-position: center right 15px;
  background-repeat: no-repeat;
}

form label.custom-select.multiple .select {
  padding: 7px 25px 7px 15px;
  -webkit-transition: unset;
  transition: unset;
}

form label.custom-select.multiple .select.unset {
  padding: 13px;
}

form label.custom-select.multiple .select > div {
  display: inline-block;
  margin: 3px 5px 3px 0;
  padding: 2px 10px 4px;
  font-size: 14px;
  background: #ebedf4;
  border-radius: 11px;
}

form label.custom-select.multiple .select > div > img {
  margin-left: 10px;
}

form label input:disabled,
form label select:disabled ~ div.select {
  background: #efefef;
}

form label.invalid input,
form label.invalid div.select {
  border-color: #ee6660;
}

form div.radio h3 {
  color: #727a86;
  font-size: 15px;
  line-height: 24px;
}

form div.radio label {
  color: #212529;
  padding: 0 0 0 35px;
  margin: 20px 0 23px;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
}

form div.radio label {
  padding-left: 35px;
}

form div.radio label input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
}

form div.radio label span.checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  margin: 0;
  border-radius: 50%;
  border: #e1e4ee 1px solid;
  -webkit-transition: all 275ms ease;
  transition: all 275ms ease;
}

form div.radio label:hover input[type=radio] ~ .checkmark {
  border-color: #3d7fe4;
}

form div.radio label input[type=radio]:checked ~ .checkmark {
  background-color: #3d7fe4;
  border-color: #3d7fe4;
}

form div.radio label .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

form div.radio label input[type=radio]:checked ~ .checkmark:after {
  display: block;
}

form div.radio label .checkmark:after {
  top: 6px;
  left: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
}

form div.radio label input[type=radio]:disabled ~ .checkmark {
  border-color: #e1e4ee;
  background-color: #e1e4ee;
}

/* BLOG NEW DESIGN */
/*************************************
 *                                   *
 *     M E D I A   Q U E R I E S     *
 *                                   *
 *************************************/
@media (min-width: 768px) {
  .wrap {
    padding: 0 40px;
  }
}
@media (min-width: 768px) and (min-width: 1024px) {
  .wrap-desktop {
    padding: 0 40px;
    margin: 0;
  }

  h1 {
    max-width: 545px;
    margin-top: 90px;
    margin-bottom: 50px;
    font-size: 60px;
    line-height: 70px;
  }

  h2 {
    max-width: 605px;
    margin-top: 90px;
    margin-bottom: 22px;
    font-size: 48px;
    line-height: 58px;
  }

  h3 {
    margin-top: 25px;
    font-size: 20px;
    line-height: 30px;
  }

  p {
    margin-top: 10px;
    font-size: 16px;
  }

  .description {
    margin-top: 22px;
    font-size: 20px;
    line-height: 33px;
  }

  .mobile-center {
    text-align: left;
  }

  a, .btn {
    font-size: 18px;
  }

  .btn {
    margin-left: 0;
  }

  a.read-more:hover {
    width: 167px;
    background-color: #f16643;
  }

  a.read-more::before {
    content: "";
    margin-left: 19px;
    color: #d16643;
    line-height: 60px;
    font-size: 1px;
    -webkit-transition: all 275ms ease;
    transition: all 275ms ease;
  }

  a.read-more:hover::before {
    content: "Read more";
    color: #ffffff;
    font-size: 16px;
  }

  h3 > a {
    font-size: 20px;
    line-height: 30px;
  }

  a.tag {
    font-size: 14px;
    /*line-height: 36px;*/
  }

  body {
    padding-top: 64px;
  }

  ul > li {
    font-size: 16px;
  }

  div.swiper.mobile-only div.wrapper {
    height: inherit;
  }

  div.swiper.mobile-only div.wrapper div.wrap-slide {
    position: relative;
    height: 100%;
    width: 100%;
    max-width: none;
  }

  div.swiper.mobile-only div.wrapper div.wrap-slide > div.slider {
    position: relative;
    width: 100%;
    cursor: default;
  }

  div.swiper.mobile-only div.wrapper div.wrap-slide > div.slider > div {
    display: inline-block;
    width: 50%;
    float: inherit;
    vertical-align: top;
  }

  div.swiper.mobile-only div.wrapper div.wrap-slide > div.slider > div > div.slide {
    position: relative;
    margin: 0 0 30px 30px;
  }

  div.swiper.mobile-only div.wrapper div.wrap-slide > div.slider > div.active > div.slide {
    box-shadow: 5px 5px 38px rgba(130, 140, 168, 0.1);
  }

  div.swiper div.wrapper div.controls {
    display: none;
  }

  form label,
form div.radio {
    max-width: 435px;
  }

  form label span {
    font-size: 13px;
  }

  form label input,
form label textarea,
form label.custom-select .select,
form label.custom-select .items div {
    font-size: 16px;
  }

  form label.custom-select .select {
    border-radius: 25px;
  }

  form label.custom-select.multiple .select > div {
    font-size: 16px;
    border-radius: 14px;
  }

  form div.radio label {
    margin: 20px 0;
    font-size: 16px;
    line-height: 24px;
  }

  form div.radio label:nth-child(2) {
    margin-top: 15px;
  }

  form div.radio h3 {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (min-width: 768px) and (min-width: 1024px) and (min-width: 1280px) {
  .wrap {
    padding: 0 80px;
  }

  .wrap-desktop {
    padding: 0 80px;
    max-width: 1720px;
    margin: 0 auto;
  }
}

/*# sourceMappingURL=general-old.css.map */
