h2 {
  text-align: center;
  font-family: Manrope, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 41px;
  text-transform: uppercase;
}

.left_btn {
  background: #549935;
  box-shadow: 26.2px 14.5px 50px rgba(92, 95, 101, 0.2);
  width: 270px;
  height: 46px;
  border-radius: 25px;
  font-family: Manrope, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  color: #fff;
  transition: 0.2s ease-in-out 0s;
  border: 0;
}
.left_btn:hover {
  cursor: pointer;
  transform: scale(1.11);
  background: #FFF;
  color: #549935;
  text-decoration: none;
}

.right_btn {
  margin-top: 5px;
  background: #FFFFFF;
  opacity: 0.83;
  box-shadow: 26.2px 14.5px 50px rgba(92, 95, 101, 0.2);
  width: 270px;
  height: 46px;
  border-radius: 25px;
  font-family: Manrope, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s ease-in-out 0s;
  color: #04283C;
  border: 0;
}
.right_btn:hover {
  text-decoration: none;
  cursor: pointer;
  transform: scale(1.11);
  background: #FFF;
  color: #549935;
}

.details {
  width: 140px;
  height: 40px;
  border-radius: 20px;
  background: #549935;
  display: flex;
  justify-content: center;
  align-items: center;
}
.details a {
  color: #fff;
}
.details a:hover {
  text-decoration: none;
}

.load_more {
  display: flex;
  justify-content: center;
  margin: 70px 0;
}
.load_more .btn-load-more {
  margin: 0 auto;
}

.site-header {
  display: flex;
  margin: 20px;
  align-items: center;
  justify-content: space-between;
}

.main-navigation {
  width: 100%;
}
.main-navigation .menu {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.main-navigation .menu .menu-item {
  list-style: none;
}
.main-navigation .menu .menu-item a {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #000;
  text-decoration: none;
}
.main-navigation .menu .menu-item a:hover {
  text-decoration: none;
  color: #549935;
}
.main-navigation .btn a {
  color: #549935 !important;
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  text-decoration: underline !important;
  cursor: pointer;
}

.contact {
  display: flex;
  flex-direction: column;
  align-content: space-between;
  align-items: center;
}
.contact .call_me {
  background: #549935;
  width: 228px;
  height: 46px;
  border-radius: 25px;
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 17px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  box-shadow: 26.2px 14.5px 50px rgba(92, 95, 101, 0.2);
}
.contact .call_me span {
  padding-bottom: 1px;
}
.contact a {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 17px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: #09293E;
  padding-bottom: 13px;
  text-decoration: none;
}
.contact a span {
  text-decoration: none;
}

@media screen and (max-width: 992px) {
  .site-header {
    align-items: center;
    margin: 0;
    padding: 20px;
  }
  .site-header .custom-logo {
    width: 80%;
    height: auto;
  }
  .site-header .contact a {
    padding-bottom: 0;
  }
  .site-header .contact a:before {
    content: url(/wp-content/themes/android/assets/src/img/ph.png);
    position: absolute;
    width: 20px;
    height: 20px;
    margin-left: -20px;
    margin-top: 5px;
  }
  .site-header .contact .call_me {
    background: transparent;
    color: #549935;
    text-decoration: underline;
    box-shadow: none;
  }

  .main-navigation {
    display: none;
  }

  .contact {
    margin: 0 auto;
  }

  /*  mobile menu  */
  /* menu button */
  .menuBtn {
    height: 25px;
    width: 30px;
    position: absolute;
    z-index: 101;
    right: 10px;
    margin-top: -20px;
    background-repeat: no-repeat;
    background-image: url(/wp-content/themes/android/assets/src/img/mob.png);
  }
  .menuBtn:hover {
    text-decoration: none;
    color: #549935;
  }
  .menuBtn > span {
    height: 2px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    margin: -1px 0 0 -15px;
    transition: height 100ms;
  }
  .menuBtn > span:after, .menuBtn > span:before {
    content: "";
    background-color: transparent;
    border-radius: 1px;
    height: 5px;
    width: 100%;
    position: absolute;
    left: 50%;
    margin-left: -15px;
    transition: all 200ms;
  }
  .menuBtn > span:after {
    top: -7px;
  }
  .menuBtn > span:before {
    bottom: -7px;
  }
  .menuBtn.act {
    background-image: none;
  }
  .menuBtn.act > span {
    color: transparent;
    height: 0;
  }
  .menuBtn.act > span:after, .menuBtn.act > span:before {
    background-color: #04283c;
    top: 1px;
  }
  .menuBtn.act > span:after {
    transform: rotate(34deg);
  }
  .menuBtn.act > span:before {
    transform: rotate(148deg);
  }

  /* main menu block */
  .mainMenu {
    background-color: #ffffff;
    position: absolute;
    left: 25%;
    top: 0;
    z-index: 100;
    height: 100%;
    width: 75%;
    display: table;
    text-align: left;
    opacity: 0;
    transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: scale(0);
    -webkit-box-shadow: -8px 9px 27px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: -8px 9px 27px 0px rgba(34, 60, 80, 0.2);
    box-shadow: -8px 9px 27px 0px rgba(34, 60, 80, 0.2);
  }
  .mainMenu.act {
    opacity: 1;
    transform: scale(1);
  }
  .mainMenu.act ul li {
    opacity: 1;
    transform: translateX(0);
    list-style: none;
  }
  .mainMenu.act ul .btn {
    border-top: 2px solid #bbbbbb52;
    border-bottom: 2px solid #bbbbbb52;
    border-radius: 0;
    position: absolute;
    width: 75%;
    text-align: left;
    margin-top: -260px;
  }
  .mainMenu.act ul .btn a {
    color: #549935;
    text-decoration: underline;
  }
  .mainMenu ul {
    display: table-cell;
    vertical-align: middle;
    padding-top: 100%;
  }
  .mainMenu li {
    padding: 8px 0;
    transition: all 400ms 510ms;
    opacity: 0;
  }
  .mainMenu li:nth-child(odd) {
    transform: translateX(30%);
  }
  .mainMenu li:nth-child(even) {
    transform: translateX(-30%);
  }
  .mainMenu li:last-child {
    transform: none;
  }
  .mainMenu a {
    color: #04283c;
    display: inline-block;
    font-family: "Pragmatica Extended", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    text-decoration: none;
  }
  .mainMenu a.suBtn {
    color: #fff;
  }
  .mainMenu a:hover {
    color: #F1F1F1;
    text-decoration: none;
  }
  .mainMenu .mobile-logo {
    width: fit-content;
    margin: 0 auto;
    padding-top: 15px;
  }
  .mainMenu .mobile-head {
    background-color: #e0e0de;
  }
  .mainMenu .mobile-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
  }
  .mainMenu .mobile-contact a {
    font-family: "Manrope", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
  }
  .mainMenu .mobile-contact a:before {
    content: url(/wp-content/themes/android/assets/src/img/ph.png);
    position: absolute;
    width: 20px;
    height: 20px;
    margin-left: -25px;
    margin-top: 2px;
  }
  .mainMenu .mobile-contact .call_me {
    background: #549935;
    box-shadow: 26.2px 14.5px 50px rgba(92, 95, 101, 0.2);
    width: 228px;
    height: 46px;
    border-radius: 25px;
    font-family: Manrope, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border: 0;
    margin: 20px 0 30px;
  }
}
@media screen and (min-width: 992px) {
  #mob_nav {
    display: none;
  }
}
.full-img {
  background-repeat: no-repeat;
  background-position-x: 70% !important;
}

.hero-top-block h1 {
  padding-top: 89px;
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 41px;
  display: flex;
  align-items: flex-end;
  color: #04283C;
}
.hero-top-block h1 p {
  text-align: left !important;
}
.hero-top-block .features {
  display: flex;
  padding-bottom: 56px;
}
.hero-top-block .features .feature-list ul {
  margin: 0;
}
.hero-top-block .features .feature-list ul li {
  list-style: none;
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 20px;
  display: flex;
  align-items: flex-end;
  color: #06283C;
  padding-top: 20px;
}
.hero-top-block .features .feature-list ul li:before {
  content: url("/wp-content/uploads/2021/12/Sloj-3.png");
  position: absolute;
  height: 21px;
  margin-left: -35px;
}
.hero-top-block .banner-btns {
  display: flex;
  align-items: baseline;
  padding-bottom: 102px;
}

@media screen and (max-width: 760px) {
  .full-img {
    background-repeat: no-repeat;
    background-position-x: 70%;
    background-size: cover;
  }

  .banner-btns {
    flex-direction: column;
  }
  .banner-btns div {
    margin: 0 auto;
  }

  .hero-top-block {
    background-color: #ffffffc7;
    display: block;
    padding: 20px;
    border-radius: 20px;
    margin: 20px 0 20px;
  }
}
@media screen and (min-width: 760px) and (max-width: 992px) {
  .full-img {
    background-image: url(/wp-content/uploads/2021/12/bun.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: auto;
  }

  .banner-btns {
    justify-content: space-around;
  }
}
@media screen and (max-width: 992px) {
  h2 {
    font-size: 20px !important;
    line-height: 30px !important;
  }

  .full-img .hero-top-block h1 {
    padding-top: 30px;
    font-size: 20px;
    line-height: 30px;
  }
  .full-img .hero-top-block .features {
    flex-direction: column;
  }
  .full-img .hero-top-block .banner-btns {
    padding-bottom: 0;
    margin-bottom: 30px;
    align-items: baseline;
  }

  .price-block {
    margin: 30px 0 !important;
  }
}
@media screen and (min-width: 993px) {
  .hero-top-block .full-img {
    background-position-x: 70%;
  }
  .hero-top-block .features {
    justify-content: flex-start;
  }
  .hero-top-block .features .feature-list:nth-child(2) {
    margin-left: 80px;
  }
  .hero-top-block .banner-btns .right_btn {
    margin-left: 30px;
  }
}
footer {
  background: #04283C;
}
footer .site-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
footer .site-info .f-logo {
  padding: 45px 0;
}
footer .site-info #menu-footer-menu-2,
footer .site-info #menu-footer-menu {
  margin: 0;
  padding: 0;
}
footer .site-info .footer-menu,
footer .site-info .footer-menu-2 {
  margin-top: 40px;
}
footer .site-info .footer-menu a,
footer .site-info .footer-menu-2 a {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 48px;
  align-items: center;
  color: #FFFFFF;
  text-decoration: none;
  border-bottom: 1px solid #fff;
}
footer .site-info .info-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 50px;
}
footer .site-info .info-buttons .top-info-footer {
  background: #549935;
  box-shadow: 26.2px 14.5px 50px rgba(92, 95, 101, 0.2);
  width: 228px;
  height: 46px;
  border-radius: 25px;
  font-family: Manrope, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  color: #fff;
  border: 0;
  outline: none;
}
footer .site-info .info-buttons .bottom-info {
  margin-top: 5px;
  background: #FFFFFF;
  opacity: 0.83;
  box-shadow: 26.2px 14.5px 50px rgba(92, 95, 101, 0.2);
  width: 228px;
  height: 46px;
  border-radius: 25px;
  font-family: Manrope, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #04283C;
  outline: none;
  border: 0;
}

@media screen and (max-width: 768px) {
  .site-info {
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }
  .footer-logo .f-logo {
    padding-bottom: 0;
    max-width: 80px;
  }
}
@media screen and (max-width: 992px) {
  footer #menu-footer-menu,
footer #menu-footer-menu-2 {
    text-align: center;
  }
  footer .site-info .footer-logo {
    width: fit-content;
  }
  footer .site-info .footer-logo .f-logo {
    max-width: 80px;
    padding: 30px 0;
  }
  footer .site-info .footer-menu-2,
footer .site-info .footer-menu {
    margin-top: 0;
  }
  footer .site-info .footer-menu-2 a,
footer .site-info .footer-menu a {
    justify-content: center;
  }
  footer .site-info .info-buttons {
    padding-top: 15px;
    align-items: center;
    margin-bottom: 50px;
  }
}
.price-backgr {
  background: linear-gradient(180deg, #fff 50%, #e5e5e3 50%);
}

.price-section-title {
  padding: 35px 0 20px;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  text-transform: uppercase;
}
.price-section-title p {
  line-height: 25px;
}

.price-block {
  margin: 0 0 90px;
  max-width: 370px;
  min-height: 530px;
  width: 100%;
}
.price-block .row {
  justify-content: center;
}
.price-block .price-block-header {
  background: #04283c;
  display: flex;
  border-radius: 16px 16px 0 0;
  align-items: center;
}
.price-block .price-block-header img {
  max-height: 65px;
  width: auto;
  margin: 25px 35px;
}
.price-block .price-block-header .title-text {
  color: #ffffff;
  padding: 25px 0;
}
.price-block .price-block-header .title-text h3 {
  font-size: 17px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
}
.price-block .price-block-header .title-text span {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 20px;
}
.price-block .price-block-feature {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 19px;
  color: #04283C;
  display: flex;
  flex-direction: column;
  padding-left: 70px;
  min-height: 340px;
  justify-content: flex-start;
  background: #fff;
}
.price-block .price-block-feature span {
  padding-top: 21px;
}
.price-block .price-block-feature span:before {
  content: url("/wp-content/uploads/2021/12/Sloj-3.png");
  position: absolute;
  height: 21px;
  margin-left: -35px;
}
.price-block .price-btn {
  background: #549935;
  height: 80px;
  display: flex;
  justify-content: center;
  color: #FFF;
  align-items: center;
  border-radius: 0 0 16px 16px;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 19px;
  line-height: 26px;
  width: 100% !important;
  border: 0 !important;
}
.price-block button {
  width: 100% !important;
  border: 0 !important;
}

@media screen and (max-width: 760px) {
  .price-section-title {
    padding-top: 40px;
    text-align: center;
    font-size: 20px;
    line-height: 10px;
  }

  .price-block {
    max-width: 310px;
  }

  .price-backgr .row {
    justify-content: center;
  }
}
@media screen and (min-width: 760px) and (max-width: 992px) {
  .price-backgr .row {
    justify-content: center;
  }

  .price-block {
    max-width: 80%;
  }
  .price-block .price-block-header {
    justify-content: center;
  }
  .price-block .price-block-feature {
    padding-left: 32%;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .price-backgr .row {
    justify-content: center;
  }

  .price-block {
    max-width: 310px;
  }
}
@media screen and (min-width: 1200px) {
  .price-backgr .row {
    justify-content: space-between;
  }
}
@media screen and (min-width: 1399px) {
  .price-block {
    margin: 10px 0 30px;
    max-width: 420px;
  }
}
.info {
  background-repeat: no-repeat;
  background-position: center;
}
.info .row {
  justify-content: flex-end;
}
.info .row .info-title {
  padding: 20px 0 60px;
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 41px;
  color: #04283C;
}
.info .row p {
  padding-bottom: 70px;
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  color: #1A1A1A;
}

@media screen and (max-width: 760px) {
  .info {
    background-color: #d9d8d4 !important;
    background-image: none !important;
  }
  .info .info-title {
    padding: 45px 0 30px !important;
  }

  .info-mobile-img {
    display: block;
  }
}
@media screen and (min-width: 760px) {
  .info-mobile-img {
    display: none;
  }
}
@media screen and (min-width: 761px) and (max-width: 1100px) {
  .info {
    background-image: url(http://test21.artiussoft.com/wp-content/uploads/2021/12/Gruppa-1-e1638912934229.png);
    background-size: cover;
    background-position: inherit;
  }
  .info .col-lg-7 {
    background-color: #ffffffc7;
    display: block;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 70px;
  }
  .info .row {
    justify-content: center;
  }
  .info .row p {
    padding-bottom: 0;
  }
}
.outsourcing {
  background-image: url("/wp-content/uploads/2021/12/Gruppa-5-kopiya-2.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.outsourcing h2 {
  text-align: center;
  padding-top: 40px;
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
}
.outsourcing .outsource-block .price-block .price-block-header {
  align-items: center;
}

.accountant .price-block-header {
  background-color: #ddddda;
  align-items: center;
}
.accountant .price-block-feature {
  background-color: #f7f7f7;
}
.accountant .price-block-feature span:before {
  content: url(/wp-content/uploads/2021/12/22.png);
  position: absolute;
  height: 21px;
  margin-left: -35px;
}

.outsourcing-function {
  display: flex;
  flex-direction: column;
}
.outsourcing-function span {
  padding-top: 25px;
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  padding-bottom: 25px;
  border-bottom: 1px solid #d3d3d357;
  color: #04283C;
}

.outsourcing-body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
}
.outsourcing-body .price-block .price-block-feature span {
  padding-bottom: 25px;
  border-bottom: 1px solid #d3d3d357;
}
.outsourcing-body .price-block .price-block-feature span:nth-last-child {
  border-bottom: 0 !important;
}

.outsourcing-function {
  display: flex;
  flex-direction: column;
}

.accountant {
  min-height: 460px;
}

.outsourcing-body {
  margin-bottom: 40px;
}

@media screen and (max-width: 992px) {
  .outsourcing .outsourcing-body {
    justify-content: center !important;
  }
  .outsourcing .outsourcing-function {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .outsourcing .price-block {
    width: 80% !important;
    max-width: 80%;
  }
  .outsourcing .price-block .price-block-feature {
    justify-content: center;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .outsourcing .outsourcing-body {
    justify-content: space-around;
  }

  .outsourcing-function,
.price-block {
    max-width: 370px;
  }
}
.our-reviews {
  background-color: #d9d8d4;
  background-image: url("/wp-content/uploads/2021/12/Gruppa-5-kopiya-3.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.our-reviews h2 {
  padding-top: 35px;
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 41px;
  text-align: center;
  text-transform: uppercase;
  color: #04283C;
}
.our-reviews .review-boxes {
  display: flex;
  flex-wrap: wrap;
  margin: 25px 0 140px;
}
.our-reviews .review-boxes .review-block {
  max-width: 370px;
  height: auto;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  margin: 0 15px;
}
.our-reviews .review-boxes .review-block .review-head {
  display: flex;
  align-items: center;
  padding-bottom: 50px;
}
.our-reviews .review-boxes .review-block .review-head .review-title {
  padding-left: 20px;
}
.our-reviews .review-boxes .review-block .review-head .review-title h4 a {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  display: flex;
  align-items: flex-end;
  text-transform: uppercase;
  color: #04283C;
}
.our-reviews .review-boxes .review-block .review-head .review-title .date {
  font-size: 12px;
  color: #838383;
}
.our-reviews .review-boxes .review-block span {
  font-size: 14px;
  line-height: 19px;
  color: #04283C;
}

.slick-prev, .slick-next {
  top: 120%;
}

.slick-next {
  right: 40%;
  z-index: 9;
}

.slick-prev {
  left: 40%;
  z-index: 9;
}

.slick-next:before {
  content: url("/wp-content/uploads/2021/12/2.png");
}

.slick-prev:before {
  content: url("/wp-content/uploads/2021/12/Gruppa-5-kopiya-3-1.png");
}

@media screen and (max-width: 760px) {
  .slick-next {
    right: 50px !important;
  }

  .slick-prev {
    left: 25px !important;
  }

  .slick-dots {
    bottom: -114px;
    width: 70%;
    left: 16%;
  }
}
@media screen and (min-width: 992px) {
  .blog-boxes .slick-track {
    width: 100% !important;
  }
  .blog-boxes .slick-list {
    padding: 0 !important;
    width: 100%;
  }

  .our-reviews .slick-prev {
    left: 35%;
  }
  .our-reviews .slick-next {
    right: 39.5%;
  }

  .slick-track {
    margin: 0;
    padding: 0;
    justify-content: space-between;
    display: flex;
  }
  .slick-track:before, .slick-track:after {
    display: none;
  }
}
.our-contact-section h2 {
  padding-top: 75px;
  font-family: "Manrope", sans-serif;
  font-weight: bold;
  font-size: 30px;
  line-height: 41px;
  text-transform: uppercase;
  text-align: center;
  color: #04283C;
}

.map p {
  margin-bottom: 0 !important;
}

@media screen and (max-width: 750px) {
  .our-contact-section h2 {
    padding-top: 20px;
  }
}
.post-img {
  height: 160px;
  margin-left: -6px;
}
.post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 36px;
}

.blog-title,
.blog-title h1 {
  font-family: Manrope, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 41px;
  text-align: center;
  color: #04283c;
}

.blog-title h1 {
  padding: 60px 50px;
}

.blog-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.blog-row .post-box {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 20px;
  max-width: 368px;
  margin-bottom: 30px;
}
.blog-row .post-box h3 a {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  color: #04283C;
  text-decoration: none;
}
.blog-row .post-box .date {
  display: block;
  margin-bottom: 10px;
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 19px;
  text-transform: uppercase;
  color: #696969 !important;
}
.blog-row .post-box span {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 19px;
  color: #1A1A1A;
}
.blog-row .post-box .details {
  color: #fff;
  text-decoration: none;
}

.blog {
  background-image: url("/wp-content/uploads/2021/12/czcz.png");
  background-repeat: no-repeat;
}

/*****************************/
@media screen and (max-width: 992px) {
  .our-blog-page .blog-title h1 {
    padding: 15px 0;
  }
  .our-blog-page .post-block {
    padding: 10px;
    margin-top: 30px;
  }

  .blog-boxes .slick-next {
    right: 0%;
  }
  .blog-boxes .slick-prev {
    left: 0%;
  }

  .blog-row {
    justify-content: center !important;
  }
  .blog-row .post-box {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 20px;
    max-width: 320px;
    margin: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .blog-row {
    justify-content: center !important;
  }
  .blog-row .post-box {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 20px;
    max-width: 320px;
    margin: 10px;
  }
}
.popup-form {
  height: 0;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.66);
}
.modal .modal-content {
  margin: 100px auto;
  border: 1px solid #999;
  width: 40%;
}
.modal h2 {
  margin: 0 0 20px;
  padding-top: 0;
  color: #999;
}
.modal p {
  margin: 0 0 20px;
  font-weight: 400;
  color: #999;
}
.modal span {
  color: #666;
  display: block;
  padding: 0 0 5px;
}
.modal form {
  padding: 25px;
  margin: 25px;
  box-shadow: 0 2px 5px #f5f5f5;
  background: #eee;
}
.modal input,
.modal textarea {
  padding: 10px;
  outline: none;
  margin: 0 auto;
}
.modal .contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  align-self: flex-end;
  padding: 10px;
}
.modal .close:hover, .modal .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.modal .contact-info input {
  max-width: 256px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1325px) {
  .modal .modal-content {
    margin: 50% auto;
    width: 100%;
    padding: 20px;
  }

  .modal .contact-form .contact-info {
    flex-direction: column;
  }
}
.post-block-img {
  display: contents;
  height: 160px;
  border-radius: 20px;
}
.post-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/**************************************/
/*********  SINGLE POST  **********/
.single-post {
  background-image: url("/wp-content/uploads/2021/12/Gruppa-1-1.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.our-blog,
.our-blog-page {
  background: #d7d6d19c;
}

.breadcrumb {
  background: transparent;
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  display: flex;
  align-items: center;
  color: #549935;
  border-bottom: 2px solid #d6d6d6;
  border-radius: 0;
  padding: 20px;
}
.breadcrumb a {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  color: #1A1A1A;
  text-decoration: none;
}
.breadcrumb .current {
  text-decoration: underline;
  color: #549935;
}

.single-post .breadcrumb .current {
  text-decoration: none;
  color: #06283C;
}
.single-post .breadcrumb text {
  text-decoration: underline;
}

.custom-signle-post h1 {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 41px;
  text-align: left;
  color: #04283C;
}
.custom-signle-post .single-post-content .single-heading {
  display: flex;
  flex-direction: column;
  margin-left: 40%;
}
.custom-signle-post .single-post-content .wp-block-image {
  float: left;
  width: fit-content;
  padding: 0 30px 0 0;
  margin-top: -8%;
}
.custom-signle-post .single-post-content {
  width: fit-content;
  margin: 50px 0 120px;
}
.custom-signle-post .date-info {
  padding-bottom: 40px;
}
.custom-signle-post .date-info .author {
  font-size: 14px;
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: normal;
  color: #696969;
}
.custom-signle-post .date-info .name {
  text-decoration: underline;
  color: #549935;
  font-size: 14px;
  font-family: "Manrope", sans-serif;
}
.custom-signle-post .date-info .date {
  font-size: 14px;
  font-family: "Manrope", sans-serif;
  color: #696969;
}
.custom-signle-post .signle-post-text {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 22px;
  color: #1A1A1A;
}

.our-blog .slick-prev {
  left: 80%;
}
.our-blog .slick-prev:before {
  position: absolute;
  transform: rotate(180deg);
}
.our-blog .slick-next {
  right: 80%;
}
.our-blog .slick-next:before {
  transform: rotate(180deg);
  position: absolute;
}

@media screen and (max-width: 540px) {
  .our-blog .slick-prev {
    left: 80%;
  }
  .our-blog .slick-prev:before {
    position: absolute;
    transform: rotate(0deg);
    margin-left: -25px;
  }
  .our-blog .slick-next {
    right: 80%;
  }
  .our-blog .slick-next:before {
    transform: rotate(0deg);
    position: absolute;
  }

  .single-post-img {
    padding: 0 !important;
  }
  .single-post-img img {
    width: 100% !important;
    height: auto;
    padding: 0;
  }
}
@media screen and (max-width: 992px) {
  .single-post {
    background-image: none;
  }

  .single-post-img {
    padding: 0 !important;
  }
  .single-post-img img {
    width: 100% !important;
    height: auto;
    padding: 0 20px 20px 0;
  }

  .single-mobile-title {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .single-desct-title,
.single-desct-info {
    display: none;
  }
}
@media screen and (min-width: 993px) {
  .single-mobile-title {
    display: none;
  }
}
.not-found {
  height: 60vh;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.not-found .page-content {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.not-found .page-content h1 a {
  color: #06283C;
}

.page-template-cabinet {
  background-image: url("/wp-content/uploads/2021/12/Depositphotos_227543644_XL.png");
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-template-cabinet header,
.page-template-cabinet footer {
  display: none;
}
.page-template-cabinet .coming-soon {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-top: 50%;
  max-width: 400px;
  background: #faebd74a;
  padding: 10px;
  border-radius: 20px;
}
.page-template-cabinet .coming-soon h1 {
  text-align: center;
}
.page-template-cabinet .coming-soon a,
.page-template-cabinet .coming-soon a:hover {
  color: #04283c;
}

@media screen and (max-width: 992px) {
  .page-template-cabinet {
    background-image: none;
    flex-direction: column;
  }
}

/*# sourceMappingURL=main.css.map */
