/*
Theme Name: Glove
Theme URI: http://glove.com.ua/
Author: glove
Author URI: http://glove.com.ua/
*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");

* {
  margin: 0;
  padding: 0;
  color: #0f1833;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

img {
  max-width: 100%;
  max-height: 100%;
}

input:focus-visible,
textarea:focus-visible {
  outline: 0;
}

h1 {
  font-weight: 600;
  font-size: 60px;
  line-height: 90px;
  margin-bottom: 18px;
}

h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 60px;
  margin-bottom: 18px;
}

h3 {
  font-weight: 600;
  font-size: 36px;
  line-height: 54px;
  margin-bottom: 18px;
}

h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 18px;
}

p,
span {
  font-size: 16px;
  line-height: 21px;
  color: #696a74;
}

.text_from_wp_content p {
  margin-bottom: 18px;
  line-height: 24px;
}

.default_btn {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  color: #fafafa;
  padding: 8px 28px;
  background: #35d18d;
  box-shadow: 0px 6px 8px -6px rgba(24, 39, 75, 0.12),
    0px 8px 16px -6px rgba(24, 39, 75, 0.08);
  border-radius: 50px;
  font-family: "Open Sans", sans-serif;
}

.default_btn.bigger {
  font-size: 18px;
  line-height: 28px;
  padding: 10px 48px;
}

.default_btn:hover {
  background: #2dac75;
  color: #fafafa;
}

.default_section {
  padding: 120px 15px;
}

.default_container {
  width: 1170px;
  max-width: 100%;
  margin: 0 auto;
}

.default_text {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.default_intro .default_text {
  margin-bottom: 0;
}

.no_scroll {
  overflow: hidden;
}

.no_opacity {
  opacity: 0;
}

@media (min-width: 1200px) {
  .text_from_wp_content h4 {
    font-size: 22px;
  }
}

@media (min-width: 1400px) {
  .text_from_wp_content h4 {
    font-size: 24px;
    line-height: 36px;
  }
}

@media (max-width: 1400px) {
  h1 {
    font-size: 58px;
    line-height: 1.4;
  }
  h2 {
    line-height: 1.4;
  }
  h3 {
    font-size: 34px;
    line-height: 1.4;
  }
  h4 {
    line-height: 1.4;
  }
  .default_btn.bigger {
    padding: 10px 45px;
  }
}

@media (max-width: 1200px) {
  h1 {
    font-size: 55px;
    line-height: 1.3;
  }
  h2 {
    font-size: 38px;
    line-height: 1.3;
  }
  h3 {
    font-size: 32px;
    line-height: 1.3;
  }
  h4 {
    line-height: 1.3;
  }
  .default_btn {
    padding: 10px 25px;
  }
  .default_btn.bigger {
    padding: 10px 40px;
  }
}

@media (max-width: 991px) {
  h1 {
    font-size: 50px;
  }

  .default_section {
    padding: 100px 15px;
  }

  .default_text {
    margin-bottom: 50px;
  }

  .default_intro .default_text {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 35px;
  }
  h3 {
    font-size: 30px;
  }
  h4 {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 28px;
  }
  .default_section {
    padding: 80px 15px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 25px;
  }
}

/* HEADER */

.main {
  padding-top: 95px;
}

.main.home {
  padding-top: 0;
}

.header {
  background-color: transparent;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 14px 40px;
  transition: 0.3s;
}

.header.show_bg,
.header.header_bg {
  background: #131c37;
}

.header_container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_links {
  display: flex;
  align-items: center;
}

.main_menu ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main_menu ul li {
  margin-right: 30px;
}

.main_menu ul li:last-child {
  margin-right: 0;
}

.main_menu ul li a {
  font-size: 14px;
  line-height: 22px;
  color: #fafafa;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
}

.main_menu ul li a:hover {
  color: #35d18d;
}

.main_menu ul li.menu-item-has-children {
  position: relative;
  overflow: hidden;
}

.main_menu ul li.menu-item-has-children.opened {
  overflow: unset;
}

.main_menu ul.sub-menu {
  position: absolute;
  flex-direction: column;
  background: #fafafa;
  width: fit-content;
  min-width: 170px;
  padding: 10px 12px;
  z-index: -1;
  margin-top: 7px;
  box-shadow: 0px 0px 13px rgb(24 39 75 / 20%);
  opacity: 0;
  transition: 0.3s;
}

.main_menu ul.sub-menu.opened {
  z-index: 999;
  opacity: 1;
}

.main_menu ul.sub-menu li {
  margin-right: 0;
  margin-bottom: 10px;
}

.main_menu ul.sub-menu li:last-child {
  margin-bottom: 0;
}

.main_menu ul.sub-menu li a {
  color: #131c37;
}

.main_menu ul.sub-menu li a:hover {
  color: #35d18d;
}

.mob_menu ul.sub-menu {
  display: none;
  margin: 0;
  padding: 10px 0 10px 10px;
}

.mob_menu ul.sub-menu.opened {
  display: flex;
}

.mob_menu ul.sub-menu li:last-child {
  border: none;
  padding-bottom: 0;
}

.default_btn.login_btn {
  margin-left: 30px;
  border: 1px solid #d1d5dd;
  background-color: transparent;
}

.default_btn.login_btn:hover {
  color: #0f1833;
  background-color: #d1d5dd;
}

.header_phone {
  display: flex;
  align-items: center;
  margin-right: 61px;
}

.header_phone img {
  margin-right: 14px;
}

.header_phone span {
  font-size: 14px;
  line-height: 21px;
  color: #fafafa;
}

.mob_menu_container,
.mob_menu_open {
  display: none;
}

.mob_menu_open,
.mob_menu_close {
  outline: none;
  background: transparent;
  border: none;
}

@media (max-width: 1400px) {
  .header {
    padding: 14px 15px;
  }

  .header_center {
    margin: 0 20px;
  }

  .default_btn.login_btn {
    margin-left: 20px;
  }

  .header_phone {
    margin-right: 30px;
  }
}

@media (max-width: 1200px) {
  .header_phone img {
    margin: 0;
  }
  .header_phone span {
    display: none;
  }
  .main {
    padding-top: 80px;
  }

  .header_logo {
    width: 200px;
  }

  .main_menu ul li {
    margin-right: 25px;
  }

  .main_menu ul li:last-child {
    margin-right: 0;
  }
}

@media (max-width: 991px) {
  .main {
    padding-top: 68px;
  }

  .header_links {
    display: none;
  }

  .mob_menu_open {
    display: flex;
  }

  .header_phone span {
    display: inline-block;
  }

  .header_phone img {
    margin-right: 5px;
  }

  .mob_menu_container {
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: column;
    background: #0f1833;
    padding: 14px 15px 30px;
    z-index: 0;
    transition: 0.3s;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    overflow: scroll;
  }

  .header_phone {
    margin-bottom: 30px;
  }

  .mob_menu_auth {
    display: flex;
  }

  .mob_menu_container.show {
    z-index: 999;
    transform: translateX(00%);
  }

  .mob_menu_top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #fafafa;
  }

  .header_logo,
  .mob_menu_logo {
    width: 150px;
  }

  .mob_menu ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin-bottom: 30px;
  }

  .mob_menu ul li {
    padding: 10px 0;
    border-bottom: 1px solid #fafafa;
  }

  .mob_menu ul li a {
    color: #fafafa;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1.3;
  }
}

@media (max-width: 575px) {
}

@media (max-width: 480px) {
}

@media (max-width: 360px) {
}

/* FOOTER */

.footer_top {
  background: #0f1833;
  padding: 80px 15px;
}

.footer_top_container {
  justify-content: space-between;
  display: flex;
}

.footer_top_side {
  width: 470px;
  max-width: 100%;
}

.footer_logo {
  margin-bottom: 18px;
}

.footer h3 {
  margin-bottom: 19px;
  color: #fff;
}

.footer_socials {
  display: flex;
}

.footer_social {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}

.footer_social:last-child {
  margin-right: 0;
}

.footer p {
  margin-bottom: 30px;
  line-height: 24px;
  color: #fff;
}

.footer .footer_top_contact p {
  margin-bottom: 18px;
  color: #fff;
}

.footer_top_contact a {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #35d18d;
  display: block;
}

.footer_top_contact a:last-child {
  margin-bottom: 0;
}

.footer_bottom {
  background: #fff;
  padding: 30px 15px;
}

.footer_bottom_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rights {
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  color: #000000;
  font-family: "Open Sans", sans-serif;
}

.footer_menu ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
}

.footer_menu ul li {
  margin-left: 30px;
}

.footer_menu ul li:first-child {
  margin-left: 0;
}

.footer_menu ul li a {
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  color: #0f1833;
  font-family: "Open Sans", sans-serif;
}

@media (max-width: 1200px) {
  .footer_top_side {
    width: 48%;
  }
}

@media (max-width: 991px) {
  .footer_menu ul li {
    margin-left: 25px;
  }
}

@media (max-width: 991px) {
  .footer_bottom_container {
    flex-direction: column-reverse;
  }
  .footer_menu ul {
    margin-bottom: 15px;
  }
  .footer_menu ul li {
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .footer_top_container {
    flex-direction: column;
    align-items: center;
  }

  .footer_top_side {
    width: 90%;
  }

  .footer_top_side:first-child {
    margin-bottom: 50px;
  }
}

@media (max-width: 480px) {
  .footer_top_side {
    width: 100%;
  }
}

/* HOME PAGE */

.intro {
  position: relative;
  background: #f4f6fc;
}

.intro_bg {
  position: absolute;
  width: 100%;
}

.intro_bg img {
  width: 100%;
}

.intro_content {
  padding-top: 190px;
  display: flex;
}

.intro_text {
  max-width: 600px;
  padding-top: 80px;
  z-index: 1;
}

.intro_img {
  z-index: 1;
  position: absolute;
  right: 0;
  width: 50%;
}

.intro_mobile_image {
  display: none;
}

.intro_text h1 {
  color: #fff;
}

.intro_text p {
  font-size: 20px;
  line-height: 30px;
  color: #fafafa;
  margin-bottom: 30px;
  max-width: 440px;
}

@media (max-width: 1600px) {
  .intro_content {
    padding-top: 150px;
  }
}

@media (max-width: 1400px) {
  .intro_text {
    padding: 20px 15px 0;
    max-width: 630px;
  }

  .intro_bg {
    position: absolute;
    width: 100%;
    transform: scaleY(1.1);
  }
}

@media (max-width: 1200px) {
  .intro_content {
    padding-top: 120px;
  }
  .intro_img {
    width: 47%;
  }
  .intro_text p {
    font-size: 18px;
    line-height: 1.5;
  }
  .intro_text br {
    display: none;
  }
}

@media (max-width: 991px) {
  .intro {
    background: linear-gradient(
      180deg,
      #0f1833 0%,
      #1a233e 37.5%,
      #0f1833 100%
    );
    box-shadow: 0px 8px 28px rgba(24, 39, 75, 0.12),
      0px 18px 88px rgba(24, 39, 75, 0.14);
    padding-bottom: 100px;
  }
  .intro_bg {
    display: none;
  }
  .intro_content {
    padding-top: 140px;
  }
  .intro_text {
    width: 50%;
    padding-top: 0;
  }
  .intro_img {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .intro_content {
    flex-direction: column;
    padding-top: 120px;
  }
  .intro_text {
    width: 100%;
    max-width: 100%;
    padding-top: 0;
    margin-bottom: 60px;
  }
  .intro_img {
    width: 90%;
    position: static;
    margin: 0 auto;
  }

  .intro_mobile_image {
    display: block;
  }

  .intro_desktop_image {
    display: none;
  }
}

@media (max-width: 575px) {
  .intro_content {
    padding-top: 120px;
  }
  .intro {
    padding-bottom: 80px;
  }
}

.help.default_section {
  background: #f4f6fc;
  padding-top: 220px;
  text-align: center;
}

.help .default_text {
  position: relative;
}

.help .default_container {
  width: 1200px;
}

.help_items {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.help_item {
  margin: 0 15px;
  width: 370px;
  max-width: 100%;
  padding: 30px 50px 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.help_number {
  width: 170px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border: 10px solid #35d18d;
  border-radius: 50%;
}

.help_item:nth-child(2) .help_number {
  border: none;
  background-image: url("/wp-content/uploads/2022/03/img.svg");
}

.help_number h3 {
  color: #35d18d;
  margin: 0;
}

.help_item p {
  margin-top: auto;
  line-height: 24px;
}

@media (min-width: 1950px) {
  .help.default_section {
    padding-top: 210px;
  }
}

@media (min-width: 2100px) {
  .help.default_section {
    padding-top: 230px;
  }
}

@media (min-width: 2200px) {
  .help.default_section {
    padding-top: 250px;
  }
}

@media (min-width: 2300px) {
  .help.default_section {
    padding-top: 285px;
  }
}

@media (min-width: 2400px) {
  .help.default_section {
    padding-top: 320px;
  }
}

@media (min-width: 2500px) {
  .help.default_section {
    padding-top: 350px;
  }
}

@media (min-width: 2600px) {
  .help.default_section {
    padding-top: 390px;
  }
}

@media (min-width: 2800px) {
  .intro_content {
    padding-bottom: 250px;
  }

  .help.default_section {
    position: relative;
    padding-top: 120px;
  }

  .default_section.solotions {
    position: relative;
    background: #fff;
  }
}

@media (max-width: 1800px) {
  .help.default_section {
    padding-top: 150px;
  }
}

@media (max-width: 1600px) {
  .help.default_section {
    padding-top: 120px;
  }
}

@media (max-width: 1400px) {
  .help.default_section {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}

@media (max-width: 1300px) {
  .help.default_section {
    padding-top: 80px;
  }
}

@media (max-width: 1200px) {
  .help.default_section {
    padding-top: 50px;
  }
  .help_item {
    padding: 30px 40px 40px;
    width: 30%;
  }
}

@media (max-width: 991px) {
  .help.default_section {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .help_item {
    width: 44%;
  }
}

@media (max-width: 767px) {
  .help_item {
    padding: 30px 25px;
  }
}

@media (max-width: 575px) {
  .help.default_section {
    padding-top: 80px;
    padding-bottom: 50px;
  }
  .help_item {
    width: 350px;
    padding: 30px 15px;
  }
}

.solotions_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.solotions_text {
  max-width: 420px;
}

.solotions_text p {
  margin-bottom: 30px;
  line-height: 24px;
}

.solotions_items {
  max-width: 600px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-right: -15px;
}

.solotions_item {
  width: 170px;
  height: 170px;
  box-shadow: 0px 6px 14px -6px rgba(24, 39, 75, 0.12),
    0px 10px 32px -4px rgba(24, 39, 75, 0.1);
  border-radius: 8px;
  margin: 0 15px 30px;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.solotions_item img {
  margin-bottom: 18px;
}

.solotions_item span {
  color: #0f1833;
}

@media (max-width: 1200px) {
  .solotions_text {
    max-width: 390px;
  }
  .solotions_item {
    margin: 0 12px 30px;
  }
}

@media (max-width: 991px) {
  .solotions_container {
    flex-direction: column;
  }
  .solotions_text {
    max-width: 420px;
    margin-bottom: 50px;
    text-align: center;
  }
  .solotions_items {
    margin: 0;
  }
  .solotions_item {
    margin: 0 15px 30px;
  }
}

@media (max-width: 575px) {
  .solotions_item {
    margin: 0 10px 20px;
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 575px) {
  .solotions_item {
    margin: 0 10px 20px;
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 390px) {
  .solotions_item {
    width: 180px;
    height: 180px;
  }
}

.features {
  background: #f4f6fc;
  text-align: center;
}

.features .default_container {
  width: 1200px;
}

.features_items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.features_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 15px 30px;
  width: 270px;
  padding: 60px 15px;
  background: #fff;
  border-radius: 8px;
}

.features_item img {
  margin-bottom: 18px;
}

.features_item span {
  line-height: 24px;
  color: #0f1833;
}

@media (max-width: 767px) {
}

.pricing .default_container {
  width: 1200px;
}

.pricing_plans {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: -30px;
}

.pricing_plan {
  margin: 0 15px 30px;
  width: 370px;
  max-width: 100%;
  padding: 50px 40px;
  background: #f4f6fc;
  border-radius: 8px;
  text-align: center;
}

.pricing_plan_text {
  margin-bottom: 30px;
}

.pricing_plan_title {
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  text-transform: uppercase;
  color: #35d18d;
  margin-bottom: 8px;
}

.pricing_plan_price {
  font-weight: 600;
  font-size: 48px;
  line-height: 72px;
  color: #0f1833;
}

.pricing_plan_text span {
  line-height: 24px;
}

.pricing_plan .default_btn {
  box-shadow: none;
}

.pricing_plan_features {
  text-align: left;
  margin-bottom: 30px;
}

.pricing_plan_feature {
  margin-bottom: 9px;
  display: flex;
  align-items: center;
}

.pricing_plan_feature:last-child {
  margin-bottom: 0;
}

.pricing_plan_feature_status {
  width: 14px;
  height: 14px;
  background: #cdcfd3;
  border-radius: 2px;
  margin-right: 6px;
}

.pricing_plan_feature_status.available {
  background: #35d18d;
}

.pricing_plan_feature span {
  line-height: 24px;
  color: #0f1833;
}

.pricing_plan:nth-child(2) {
  background: #0f1833;
  box-shadow: 0px 8px 18px -6px rgba(24, 39, 75, 0.12),
    0px 12px 42px -4px rgba(24, 39, 75, 0.12);
}

.pricing_plan:nth-child(2) .pricing_plan_price,
.pricing_plan:nth-child(2) .pricing_plan_text span,
.pricing_plan:nth-child(2) .pricing_plan_feature span {
  color: #fafafa;
}

@media (min-width: 1400px) {
  .pricing.default_section {
    padding-bottom: 130px;
  }
}

@media (max-width: 991px) {
  .pricing_plan_price {
    font-size: 45px;
  }
}

@media (max-width: 767px) {
  .pricing_plan {
    padding: 40px 30px;
  }
  .pricing_plan_price {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .pricing_plan_price {
    font-size: 36px;
  }
}

@media (max-width: 360px) {
  .pricing_plan_price {
    font-size: 34px;
  }
}

.reviews {
  background: #f4f6fc;
}

.reviews .default_container {
  width: 1200px;
}

.reviews_items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: -30px;
}

.review {
  background: #ffffff;
  border-radius: 8px;
  margin: 0 15px 30px;
  padding: 39px 15px;
  width: 270px;
}

.review_top {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.review_stars {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.review_stars:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 6px;
  left: 0px;
  top: 5px;
  background: #35d18d;
  border-radius: 8px;
}

.review_top h4 {
  margin-bottom: 8px;
  font-weight: 500;
}

.review_top span {
  font-size: 11px;
  line-height: 16px;
  text-transform: uppercase;
  color: #707887;
}

.review_bottom p {
  line-height: 24px;
}

@media (max-width: 767px) {
}

.delivery {
  height: 772px;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: cover;
  position: relative;
  display: flex;
  flex-direction: column;
}

.delivery_container {
  padding: 102px 15px 0;
  text-align: center;
}

.delivery_container h2,
.delivery_container p,
.delivery_container span {
  color: #fafafa;
}

.delivery_image {
  margin-top: auto;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.delivery_image img {
  transform: translateX(-100%);
  -webkit-animation: 4s linear 1s infinite running move_car;
  -moz-animation: 4s linear 1s infinite running move_car;
  -o-animation: 4s linear 1s infinite running move_car;
  animation: 4s linear 1s infinite running move_car;
}

@-webkit-keyframes move_car {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100vw);
  }
}
@-moz-keyframes move_car {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100vw);
  }
}
@-o-keyframes move_car {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100vw);
  }
}
@keyframes move_car {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100vw);
  }
}

.delivery_counter {
  display: flex;
  margin-bottom: 30px;
  justify-content: center;
}

.delivery_number {
  width: 56px;
  position: relative;
  z-index: 900;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 36px;
  line-height: 54px;
  background: linear-gradient(
    126.08deg,
    rgba(255, 255, 255, 0.3) 13.84%,
    rgba(255, 255, 255, 0.1) 74.14%
  );
  border: 1px solid rgba(250, 250, 250, 0.15);
  box-sizing: border-box;
  box-shadow: 0px 4px 20px 1px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  margin-right: 4px;
}

.delivery_number:last-child {
  margin-right: 0;
}

@media (max-width: 1200px) {
  .delivery {
    height: auto;
  }
  .delivery_container {
    padding: 100px 15px;
  }
  .delivery_image {
    display: none;
  }
  .delivery_number {
    background-color: #0f1833;
  }
}

@media (max-width: 991px) {
  .delivery {
    background-position: 70% bottom;
  }
}

@media (max-width: 575px) {
  .delivery_container {
    padding: 80px 15px;
  }
}

@media (max-width: 480px) {
  .delivery {
    background-position: 76% bottom;
  }
}

/* PRIVACY */

.privacy_text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.text_from_wp_content .privacy_text {
  text-align: left;
}

.privacy .text_from_wp_content.default_section {
  padding-top: 0;
}

/* 404 */

.not_found_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.not_found_text {
  max-width: 400px;
}

.not_found_text p {
  margin-bottom: 30px;
}

.not_found_links {
  display: flex;
}

.not_found_links .default_btn {
  box-shadow: none;
}

.not_found_links .default_btn:first-child {
  margin-right: 30px;
  color: #0f1833;
  border: 1px solid #d1d5dd;
  background-color: #fff;
}

.not_found_links .default_btn:first-child:hover {
  background-color: #d1d5dd;
}

.not_found_img {
  max-width: 570px;
}

@media (max-width: 767px) {
  .not_found_container {
    flex-direction: column;
    text-align: center;
  }
  .not_found_links {
    width: 100%;
    justify-content: space-around;
    margin-bottom: 50px;
  }
  .not_found_links .default_btn:first-child {
    margin-right: 0;
  }
}

@media (max-width: 360px) {
  .not_found_links {
    justify-content: space-between;
  }
}

/* FAQ TEMPLATE */

.faq {
  background: #f4f6fc;
}

.faq_items {
  max-width: 770px;
  margin: 0 auto 60px;
}

.faq_item {
  border-bottom: 1px solid #d1d5dd;
  padding: 30px 0 16px;
}

.faq_item:first-child {
  padding-top: 0;
}

.faq_question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.faq_question span {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #0f1833;
  display: inline-block;
  width: calc(100% - 35px);
  max-width: 716px;
}

.faq_question_btn {
  background-color: transparent;
  outline: none;
  border: none;
  display: block;
  cursor: pointer;
}

.faq_question_open {
  display: block;
}

.faq_question_close {
  display: none;
}

.faq_answer {
  transition: 0.3s;
  display: none;
}

.faq_answer p {
  margin-bottom: 8px;
  width: calc(100% - 35px);
  max-width: 716px;
  line-height: 24px;
}

.faq_item.opened .faq_question_open {
  display: none;
}

.faq_item.opened .faq_question_close {
  display: block;
}

.faq_item.opened .faq_answer {
  display: block;
}

.have_questions {
  background-color: #fff;
  border-radius: 20px;
  padding: 60px 15px;
  text-align: center;
}

.have_questions p {
  max-width: 760px;
  margin: 0 auto 30px;
}

@media (min-width: 1200px) {
  .have_questions h4 {
    font-size: 22px;
  }
}

@media (min-width: 1400px) {
  .have_questions h4 {
    font-size: 24px;
    line-height: 36px;
  }
}

@media (max-width: 991px) {
  .faq_items {
    margin-bottom: 50px;
  }
  .have_questions {
    padding: 50px 15px;
  }
}

@media (max-width: 767px) {
  .have_questions {
    padding: 40px 15px;
  }
}

@media (max-width: 575px) {
  .have_questions {
    padding: 35px 15px;
  }
}

@media (max-width: 360px) {
  .have_questions {
    padding: 30px 15px;
  }
}

/* PRICING */

.pricing_page .default_section.pricing {
  padding-top: 0;
}

.pricing_features {
  background: #f4f6fc;
}

.pricing_features_text {
  text-align: center;
  margin-bottom: 128px;
}

.comparison_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-bottom: 30px; */
  padding-bottom: 20px;
  padding-top: 20px;
  position: sticky;
  top: 95px;
  background: #f4f6fc;
}

.comparison_plans {
  display: flex;
  max-width: 100%;
  width: 570px;
}

.comparison_plan {
  width: 170px;
  margin-right: 30px;
  text-align: center;
}

.comparison_plan:last-child {
  margin-right: 0;
}

.comparison_top h3 {
  transition: 0.1s;
}

.comparison_top.sticky h3 {
  transform: scale(0.95);
}

.comparison_plan_name {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  text-transform: uppercase;
  color: #009bde;
  margin-bottom: 21px;
  transition: 0.1s;
}

.comparison_top.sticky .comparison_plan_name {
  margin-bottom: 10px;
  font-size: 21px;
}

.comparison_plan_price {
  font-weight: 600;
  font-size: 21px;
  line-height: 32px;
  text-align: center;
  color: #0f1833;
  margin-bottom: 20px;
  transition: 0.1s;
}

.comparison_top.sticky .comparison_plan_price {
  font-size: 19px;
  margin-bottom: 10px;
}

.comparison_plan .default_btn {
  box-shadow: none;
}

.comparison_item_name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 15px;
  border-top: 1px solid #d1d5dd;
}

.comparison_item:last-child .comparison_item_name {
  border-bottom: 1px solid #d1d5dd;
}

.comparison_item_name h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #009bde;
  margin-bottom: 0;
  max-width: calc(100% - 70px);
}

.comparison_item_btn {
  border: none;
  outline: none;
  background-color: transparent;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: block;
}

.comparison_item_close {
  display: none;
}

.comparison_item_description {
  display: none;
  padding: 30px 0 30px 15px;
}

.comparison_item_description:nth-child(2) {
  border-top: 1px solid #d1d5dd;
}

.comparison_item_description:nth-child(2n) {
  background: #ecf1f8;
}

.comparison_item_text {
  width: 500px;
  max-width: 50%;
}

.comparison_item_text h5 {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 8px;
}

.comparison_item_text span {
  line-height: 24px;
}

.comparison_item.opened .comparison_item_description {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.comparison_item.opened .comparison_item_open {
  display: none;
}

.comparison_item.opened .comparison_item_close {
  display: block;
}

@media (max-width: 1200px) {
  .pricing_features_text {
    margin-bottom: 100px;
  }

  .comparison_top {
    top: 80px;
  }
}

@media (max-width: 991px) {
  .pricing_features_text {
    margin-bottom: 80px;
  }

  .comparison_top {
    flex-direction: column;
    top: 68px;
  }

  .comparison_item.opened .comparison_item_description {
    flex-direction: column;
  }

  .comparison_plans {
    width: 700px;
    justify-content: space-around;
  }

  .comparison_item_description {
    padding: 30px 0;
  }

  .comparison_item_text {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .comparison_plan {
    margin: 0 5px;
  }

  .comparison_item_btn {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 767px) {
  .default_section.pricing_features {
    padding: 100px 0;
  }

  .comparison_item.opened .comparison_item_description {
    padding-bottom: 20px;
  }

  .comparison_item_text {
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .default_section.pricing_features {
    padding: 80px 0;
  }

  .pricing_features_text {
    margin-bottom: 60px;
  }

  .comparison_plans {
    padding: 0 5px;
  }

  .comparison_item_name h4 {
    font-size: 22px;
  }

  .comparison_plan_name {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
  }

  .comparison_top.sticky .comparison_plan_name {
    font-size: 17px;
    margin-bottom: 5px;
  }

  .comparison_plan_price {
    font-size: 19px;
    margin-bottom: 15px;
  }

  .comparison_top.sticky .comparison_plan_price {
    font-size: 15px;
    margin-bottom: 5px;
  }
  .comparison_item_btn {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .pricing_features_text {
    margin-bottom: 50px;
  }

  .comparison_plan .default_btn {
    padding: 10px 20px;
    transform: scale(0.95);
  }
}

@media (max-width: 440px) {
  .comparison_plan .default_btn {
    padding: 8px 15px;
  }

  .comparison_plan {
    margin: 0 3px;
  }
}

@media (max-width: 420px) {
  .comparison_plan .default_btn {
    padding: 6px 12px;
  }

  .comparison_plans {
    padding: 0 3px;
  }
}

@media (max-width: 390px) {
  .comparison_plans {
    padding: 0;
  }

  .comparison_plan_name {
    font-size: 18px;
    line-height: 25px;
  }

  .comparison_top.sticky .comparison_plan_name {
    font-size: 15px;
  }

  .comparison_plan_price {
    font-size: 17px;
  }

  .comparison_top.sticky .comparison_plan_price {
    font-size: 14px;
  }

  .comparison_plan .default_btn {
    padding: 6px 10px;
    font-size: 13px;
  }
}

@media (max-width: 390px) {
  .comparison_plan .default_btn {
    font-size: 12px;
  }
}

/* FEATURES */

.feature_section {
  display: flex;
  align-items: center;
  padding: 30px 0;
}

.feature_section:first-child {
  padding-top: 0;
}

.feature_section:last-child {
  padding-bottom: 120px;
}

.feature_section.feature_section_img_left {
  flex-direction: row-reverse;
}

.feature_section_text {
  max-width: 570px;
  margin-left: auto;
  margin-right: 120px;
}

.feature_section.feature_section_img_left .feature_section_text {
  margin-right: auto;
  margin-left: 120px;
}

.feature_section_text p {
  margin-bottom: 26px;
}

.feature_section_text ul {
  list-style: none;
  padding-left: 15px;
}

.feature_section_text li {
  position: relative;
  padding-left: 35px;
  font-size: 18px;
  line-height: 27px;
  color: #696a74;
  margin-bottom: 18px;
}

.feature_section_text li:before {
  content: "";
  background-image: url(/wp-content/uploads/2022/03/icon.svg);
  width: 28px;
  height: 28px;
  position: absolute;
  left: 0;
}

.feature_section_img {
  max-width: 860px;
  overflow: hidden;
  display: flex;
}

.feature_section.feature_section_img_left .feature_section_img {
  justify-content: flex-end;
}

.feature_section_img img {
  max-width: initial;
}

.sections .proposition {
  padding: 30px 15px;
}

.proposition_container {
  background-color: #f4f5fc;
  border-radius: 20px;
  padding: 60px 15px;
  text-align: center;
}

.proposition p {
  max-width: 760px;
  margin: 0 auto 30px;
}

.feature_section_img.with_shadow {
  margin: -60px 0 -90px;
}

@media (min-width: 1200px) {
  .proposition h4 {
    font-size: 22px;
  }
}

@media (min-width: 1400px) {
  .proposition h4 {
    font-size: 24px;
    line-height: 36px;
  }
}

@media (max-width: 1800px) {
  .feature_section_text {
    margin-right: 100px;
  }

  .feature_section.feature_section_img_left .feature_section_text {
    margin-left: 100px;
  }
}

@media (max-width: 1600px) {
  .feature_section_text {
    margin-right: 80px;
    padding: 0 15px;
  }

  .feature_section.feature_section_img_left .feature_section_text {
    margin-left: 80px;
    padding: 0 15px;
  }
}

@media (max-width: 1500px) {
  .feature_section_text {
    margin-right: 60px;
  }

  .feature_section.feature_section_img_left .feature_section_text {
    margin-left: 60px;
  }
}

@media (max-width: 1400px) {
  .feature_section,
  .feature_section.feature_section_img_left {
    justify-content: space-between;
  }

  .feature_section_text {
    margin-right: 20px;
  }

  .feature_section.feature_section_img_left .feature_section_text {
    margin-left: 20px;
  }
}

@media (max-width: 1200px) {
  .feature_section_text,
  .feature_section.feature_section_img_left .feature_section_text {
    width: 45%;
    margin: 0;
  }

  .feature_section_img {
    width: 50%;
  }

  .feature_section_text ul {
    padding-left: 0;
  }
}

@media (max-width: 991px) {
  .feature_section,
  .feature_section.feature_section_img_left {
    padding: 30px 15px;
    flex-direction: column;
  }

  .feature_section_img.with_shadow {
    margin: -15px 0 -30px;
  }

  .feature_section_text,
  .feature_section.feature_section_img_left .feature_section_text {
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .feature_section_img {
    width: 100%;
    max-width: 100%;
  }

  .feature_section_img img {
    max-width: 100%;
  }

  .feature_section p {
    width: 70%;
  }

  .feature_section:first-child {
    padding-top: 0;
  }

  .feature_section:last-child {
    padding-bottom: 100px;
  }

  .proposition_container {
    padding: 50px 15px;
  }
}

@media (max-width: 767px) {
  .feature_section p {
    width: 90%;
  }

  .proposition_container {
    padding: 40px 15px;
  }
}

@media (max-width: 575px) {
  .feature_section:first-child {
    padding-top: 0;
  }

  .feature_section:last-child {
    padding-bottom: 80px;
  }

  .feature_section p {
    width: 100%;
  }

  .proposition_container {
    padding: 35px 15px;
  }
}

@media (max-width: 360px) {
  .proposition_container {
    padding: 30px 15px;
  }
}

/* CONTACT US */

.contacts {
  position: relative;
}

.contacts_container {
  display: flex;
  justify-content: space-between;
}

.contacts_form {
  width: 470px;
  max-width: 100%;
}

.contacts_form_text {
  margin-bottom: 40px;
}

.contacts_form_el {
  margin-bottom: 30px;
}

.contacts_form_el.contacts_form_el_submit {
  margin-bottom: 0;
}

.contacts_form .form_top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contacts_form .form_top .contacts_form_el {
  width: 220px;
  max-width: 48%;
}

.contacts_form input,
.contacts_form textarea {
  width: 100%;
  border: 1px solid #d1d5dd;
  border-radius: 8px;
  padding: 12px 16px;
  transition: 0.3s;
}

.contacts_form textarea {
  resize: none;
  height: 128px;
}

.contacts_form label {
  font-size: 14px;
  margin-bottom: 8px;
  display: inline-block;
}

.contacts_form .wpcf7-acceptance .wpcf7-list-item {
  width: 100%;
  margin: 0;
  display: block;
}

.contacts_form .wpcf7-acceptance input {
  display: none;
}

.contacts_form .wpcf7-list-item-label {
  position: relative;
  padding-left: 32px;
}

.contacts_form .wpcf7-list-item-label::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 0;
  background: #ffffff;
  border: 1px solid #d1d5dd;
  border-radius: 6px;
  box-sizing: border-box;
}

.contacts_form .wpcf7-list-item-label::after {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(/wp-content/uploads/2022/03/checkmark.svg);
  background-position: center;
  background-color: transparent;
  border-radius: 6px;
  box-sizing: border-box;
  transition: 0.3s;
}

.contacts_form .wpcf7-acceptance input:checked ~ .wpcf7-list-item-label::after {
  background-color: #35d18d;
  border-color: #35d18d;
}

.contacts_form .wpcf7-submit {
  background: #35d18d;
  border-radius: 50px;
  padding: 8px 16px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #fafafa;
  cursor: pointer;
}

.contacts_form .wpcf7-submit:hover {
  background: #2dac75;
}

.wpcf7-spinner {
  display: none;
}

.contacts_form .wpcf7-not-valid-tip {
  font-size: 12px;
  line-height: 18px;
  color: #ff4e4e;
  display: inline-block;
  margin-top: 8px;
}

.contacts_form .wpcf7-not-valid {
  border-color: #ff4e4e;
}

.contacts_form .wpcf7-response-output {
  /*   position: absolute; */
  /*   top: 30px; */
  position: fixed;
  top: 140px;
  width: 470px;
  max-width: 98%;
  margin: 0 auto !important;
  left: calc(50%);
  transform: translateX(-50%);
  padding: 10px 40px 10px 14px !important;
  background: #ffffff;
  border: 1px solid #fafafa !important;
  box-sizing: border-box;
  box-shadow: 0px 6px 8px -6px rgba(24, 39, 75, 0.12),
    0px 8px 16px -6px rgba(24, 39, 75, 0.08);
  border-radius: 8px;
  border-left: 8px solid #ffb800 !important;
}

.contacts_form .wpcf7 form.sent .wpcf7-response-output {
  border-left-color: #35d18d !important;
}

.contacts_form .wpcf7 form.error .wpcf7-response-output {
  border-left-color: #ff4e4e !important;
}

.label_required {
  position: relative;
}

.label_required::after {
  content: "*";
  font-size: 14px;
  margin-left: 8px;
  line-height: 21px;
  color: #ff2323;
}

.contacts_map {
  width: 640px;
  max-width: 100%;
}

.contacts_link {
  display: block;
  position: relative;
  margin-bottom: 8px;
  padding-left: 32px;
}

.contacts_link:first-child {
  text-decoration: underline;
}

.contacts_link:last-child {
  margin-bottom: 18px;
  text-decoration: none;
}

.contacts_link:before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  background-image: url(/wp-content/uploads/2022/03/map-marker.svg);
  background-size: cover;
}

.contacts_link:last-child::before {
  background-image: url(/wp-content/uploads/2022/03/phone.svg);
  margin-bottom: 18px;
  line-height: 24px;
  color: #696a74;
}

.contacts_follow_title {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 14px;
}

.contacts_socials {
  width: 141px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.contacts_socials a {
  width: 24px;
  height: 24px;
}

.map iframe {
  width: 100%;
  height: 500px;
}

@media (max-width: 1200px) {
  .contacts_map,
  .contacts_form {
    width: 48%;
  }
}

@media (max-width: 991px) {
  .contacts_container {
    flex-direction: column;
    align-items: center;
  }

  .contacts_map {
    width: 80%;
  }

  .contacts_form {
    width: 80%;
    margin-bottom: 50px;
  }

  .contacts_form .form_top .contacts_form_el {
    width: 48%;
    max-width: 100%;
  }

  .contacts_form .wpcf7-response-output {
    /*     top: 20px; */
    top: 130px;
    padding: 6px 40px 6px 15px !important;
  }
}

@media (max-width: 767px) {
  .contacts_map,
  .contacts_form {
    width: 90%;
  }

  .map iframe {
    height: 480px;
  }
}

@media (max-width: 575px) {
  .contacts_map,
  .contacts_form {
    width: 100%;
  }

  .contacts_form .form_top .contacts_form_el {
    width: 100%;
  }

  .map iframe {
    height: 400px;
  }
}

/* SINGLE CASE */

.case_section {
  margin-top: -60px;
  margin-bottom: -18px;
  padding: 0 15px;
}

.case_text {
  max-width: 805px;
  margin-bottom: 60px;
}

.case_info {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

.case_items {
  display: flex;
  flex-wrap: wrap;
  width: 600px;
  max-width: 100%;
}

.case_item {
  width: 270px;
  height: 212px;
  margin: 15px 30px 15px 0;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.case_item_title {
  font-weight: 700;
  font-size: 48px;
  line-height: 72px;
  text-align: center;
  color: #35d18d;
  margin-bottom: 8px;
}

.case_item h4 {
  padding: 0 35px;
}

.case_item span {
  line-height: 24px;
  margin-top: auto;
}

.case_img {
  width: 570px;
  max-width: 50%;
}

.case_additional_text {
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .case_items {
    width: 100%;
    justify-content: center;
  }

  .case_info {
    flex-direction: column;
  }

  .case_items {
    margin-bottom: 50px;
  }

  .case_item {
    margin: 15px;
    height: auto;
    min-height: 150px;
    width: 210px;
  }

  .case_item h4 {
    padding: 0 5px;
  }

  .case_img {
    width: auto;
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .case_text {
    margin-bottom: 50px;
  }

  .case_item {
    width: 270px;
  }

  .case_item h4 {
    padding: 0;
  }
}

.grecaptcha-badge {
  display: none !important;
}

/* CASE STUDIES */

.cases {
  padding: 0 15px 60px;
}

.cases_single {
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cases_single:nth-child(2n) {
  flex-direction: row-reverse;
}

.cases_single_text,
.cases_single_img {
  width: 570px;
  max-width: 50%;
}

.cases_single_text p {
  margin-bottom: 26px;
  font-size: 18px;
  line-height: 27px;
}

.cases_single_text ul {
  list-style: none;
  padding-left: 15px;
}

.cases_single_text li {
  position: relative;
  padding-left: 35px;
  font-size: 18px;
  line-height: 27px;
  color: #696a74;
  margin-bottom: 18px;
}

.cases_single_text li:last-child {
  margin-bottom: 26px;
}

.cases_single_text li:before {
  content: "";
  background-image: url(/wp-content/uploads/2022/03/icon.svg);
  width: 28px;
  height: 28px;
  position: absolute;
  left: 0;
}

.cases_single_text .default_btn {
  margin-top: 4px;
}

@media (max-width: 1200px) {
  .cases_single_text,
  .cases_single_img {
    width: 48%;
  }

  .cases_single_text .default_btn {
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .cases {
    padding-bottom: 40px;
  }

  .cases_single {
    flex-direction: column !important;
  }

  .cases_single_text {
    width: 80%;
    max-width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }

  .cases_single_text ul {
    text-align: left;
  }

  .cases_single_img {
    width: 80%;
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .cases_single {
    padding-bottom: 40px;
  }

  .cases_single_text,
  .cases_single_img {
    width: 100%;
  }

  .cases_single_text ul {
    padding-left: 0;
  }

  .cases_single_text p,
  .cases_single_text li {
    font-size: 17px;
    line-height: 25px;
  }
}

@media (max-width: 1400px) {
}

@media (max-width: 1200px) {
}

@media (max-width: 991px) {
}

@media (max-width: 767px) {
}

@media (max-width: 575px) {
}

@media (max-width: 480px) {
}

@media (max-width: 360px) {
}
