:root {
    --border-gradient-400: linear-gradient(90deg, rgba(186, 197, 218, 0.00) 0%, rgba(186, 197, 218, 0.56) 47.4%, rgba(186, 197, 218, 0.00) 100%);
    --global-transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}
.cotainer {
	max-width: 1180px;
	margin: 0 auto;
}
.banner_hero {
  
    height: 810px;
	position: relative;
    background-color: #081721;
}
.banner_hero .cotainer {
    background-image: url(/wp-content/uploads/2025/08/bg-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


@media (max-width: 1410px) {
.hero .row .col:last-child img {
    width: -webkit-fill-available;
}
}
@media (max-width: 1280px) {
.cotainer {
    padding: 0 20px;
}
}


.hero .row {
    display: flex;
    align-items: center;
}
.hero .row .col:first-child {
    max-width: 524px;
    margin-top: 234px;
}
.hero .row .col:last-child img{
    position: absolute;
    bottom: 0;
}
#masthead {
    position: absolute;
    width: 100%;
    z-index: 9;
}
.hero h1 {
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    color: #fff;
    text-transform: uppercase;
}
.text_hero p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #fff;
    margin: 24px 0;
}
.hero_links a {
    border-radius: 20px;
    border: 1px solid var(--shade-color-shade-transparent-500102, rgba(255, 255, 255, 0.10));
    background: var(--shade-color-shade-transparent-60052, rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(25px);
    color: #fff;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 14px 28px; 
    justify-content: space-between;
    width: calc(50% - 7px);
transition: var(--global-transition);
    text-transform: uppercase;
    font-weight: 500;

}
.hero_links a:last-child {
    width: 100%;
}
.hero_links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.hero_links a:hover {
    background-color: #245EFE;
 transition: var(--global-transition);
}
.hero_links a:hover img {
    filter: brightness(0) invert(1);
 transition: var(--global-transition);
}
.hero_links a img {
 transition: var(--global-transition);
}
.main-navigation a {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 270%;
    color: #fff;
}
.flex_header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.main-navigation {
    width: fit-content;
}
.main-navigation ul {     
    gap: 16px;
}
.main-navigation .menu-item-has-children a:after {
    content:'';
    background-image: url(/wp-content/uploads/2025/07/arrow-filled.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 14px;
    height: 14px;
    display: block;
}
.main-navigation a {
    display: flex;
    gap: 8px;
    align-items: center;
}
.main-navigation .menu-item-has-children .sub-menu  a:after {
    content:'';
    background-image: none;
}
.button {
    border-radius: 101px;
    background: #245EFE;
    display: flex;
    height: 43px;
    padding: 18px 8px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: var(--global-transition);
    padding: 8px 26px;
    font-size: 14px;
}
.button:hover {
    background: #fff;
    color: #245EFE;
     transition: var(--global-transition);
}
#primary-menu a:hover {
    background: #1F2D37;
    border-radius: 101px;
}
   
.main-navigation a {
    padding: 0 8px;
      border: 2px solid transparent; 
}

.main-navigation a {
  position: relative;
  z-index: 0;
  border: none;
  border-radius: 101px;
}

.main-navigation a:hover::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px; 
  background: var(--border-gradient-400);
  border-radius: 101px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}




@media (max-width: 1025px) {
/* Бургер */
.burger {
  display: inline-block;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1001;
  background: none;
  border: none;
}

.burger span {
  display: block;
  height: 3px;
  background: #000;
  margin: 5px 0;
  transition: 0.4s;
}

/* Меню — перекриває весь екран */
#mobile-menu {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: left 0.4s ease;
  z-index: 1000;
  padding: 16px 20px;
}

#mobile-menu.active {
  left: 0;
}

#primary-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

#primary-menu li {
  margin-bottom: 20px;
}

#primary-menu li a {
  text-decoration: none;
  display: block;
  font-size: 20px;
}

/* Сабменю перекриває весь екран */
#primary-menu .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
background: linear-gradient(180deg, #081722 26.88%, #050F16 97.91%), #D9D9D9;
  overflow-y: auto;
  transition: left 0.4s ease;
}

#primary-menu li.open > .sub-menu {
  left: 0;
}

#primary-menu .back-button a {
  font-weight: bold;
  display: block;
  margin-bottom: 20px;
}


}
/* Ховаємо на ПК */
@media (min-width: 1025px) {
  .burger {
    display: none;
  }

  #mobile-menu {
    display: none;
  }
}
@media (width: 1025px) {
  .burger {
    display: block;
  }

  #mobile-menu {
    display: block;
  }
    header .button {
        display: none !important;
    }
}
.flex_header {
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, rgba(186, 197, 218, 0), rgba(186, 197, 218, 0.56), rgba(186, 197, 218, 0)) 1;
     padding: 16px 0 0px 0;
}
.main-navigation li {
    padding-bottom: 16px;
}
.main-navigation .sub-menu  li {
    padding-bottom: 0;
}
.main-navigation ul li:hover > ul {
    display: grid;
}
#primary-menu .disabled_item a:hover {
    background: transparent;
    border-radius: 0;
}
.main-navigation .disabled_item a:hover::before  {
    content: '';
    background-image: none;
}
li.disabled_item > a[href="#"],
li.readonly_item > a[href="#"] {
  pointer-events: none;
  cursor: default;
}
.sub-menu {
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(5, 15, 22, 0.34);
    box-shadow: 10px 10px 50px 0px rgba(4, 17, 26, 0.65);
    backdrop-filter: blur(25px);
}
.disabled_item {
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, rgba(186, 197, 218, 0), rgba(186, 197, 218, 0.56), rgba(186, 197, 218, 0)) 1;
    padding: 16px 0;
}
.disabled_item a {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; 
      padding: 16px 12px;
}
.main-navigation .sub-menu a {
    padding: 0px 10px;
}
.main-navigation #primary-menu .sub-menu a:hover {
    border-radius: 10px;
    background: var(--primary-color-primary-transparent-10010, rgba(36, 94, 254, 0.10));
}
.main-navigation .sub-menu a:hover::before {
    content: "";
    background: none;
    -webkit-mask: none;
}
.sub-menu {
    padding: 0 12px !important;
}
.main-navigation #primary-menu .sub-menu .disabled_item a:hover {
    border-radius: 0;
    background: transparent;
}
.main-navigation ul ul {
    padding: 8px 12px 10px 12px !important;
}
.main-navigation ul ul {
    gap: 4px;
}
.main-navigation ul ul li {
    position: relative;
    background-image: url(/wp-content/uploads/2025/07/arrow.svg);
    background-repeat: no-repeat;
    background-position: right;
}
.main-navigation ul ul li.disabled_item {
    background-image: none;
    padding-bottom: 16px;
}
.main-navigation ul .menu-item-16 ul {
    margin-left: -61px;
}
.site-branding {
    padding-bottom: 16px;
}
header .button {
  margin-bottom: 16px;
}




.col_2_menu .sub-menu {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.col_2_menu .sub-menu li:nth-child(1) { grid-column: 1; grid-row: 1; } /* Features */
.col_2_menu .sub-menu li:nth-child(2) { grid-column: 1; grid-row: 2; }
.col_2_menu .sub-menu li:nth-child(3) { grid-column: 1; grid-row: 3; }
.col_2_menu .sub-menu li:nth-child(4) { grid-column: 1; grid-row: 4; }

.col_2_menu .sub-menu li:nth-child(5) { grid-column: 2; grid-row: 1; }
.col_2_menu .sub-menu li:nth-child(6) { grid-column: 2; grid-row: 2; }
.col_2_menu .sub-menu li:nth-child(7) { grid-column: 2; grid-row: 3; } /* Services */
.col_2_menu .sub-menu li:nth-child(8) { grid-column: 2; grid-row: 4; }
.col_2_menu .sub-menu li:nth-child(9) { grid-column: 2; grid-row: 5; }
.col_2_menu .sub-menu li:nth-child(10){ grid-column: 2; grid-row: 6; }
.main-navigation ul .col_2_menu ul a {
    width: fit-content;
    min-width: 273px;
}



.col_2_menu.geo_menu_items_top .sub-menu li:nth-child(1) { grid-column: 1; grid-row: 1; }
.col_2_menu.geo_menu_items_top .sub-menu li:nth-child(2) { grid-column: 1; grid-row: 2; }
.col_2_menu.geo_menu_items_top .sub-menu li:nth-child(3) { grid-column: 1; grid-row: 3; }
 .col_2_menu.geo_menu_items_top .sub-menu li:nth-child(4) { grid-column: 1; grid-row: 4; }
.col_2_menu.geo_menu_items_top .sub-menu li:nth-child(5) { grid-column: 1; grid-row: 5; }
 .col_2_menu.geo_menu_items_top .sub-menu li:nth-child(6) { grid-column: 1; grid-row: 6; }

.col_2_menu.geo_menu_items_top .sub-menu li:nth-child(7) { grid-column: 2; grid-row: 1; }
.col_2_menu.geo_menu_items_top .sub-menu li:nth-child(8) { grid-column: 2; grid-row: 2; }
.col_2_menu.geo_menu_items_top .sub-menu li:nth-child(9) { grid-column: 2; grid-row: 3; }
 .col_2_menu.geo_menu_items_top .sub-menu li:nth-child(10) { grid-column: 2; grid-row: 4; }
 .col_2_menu.geo_menu_items_top .sub-menu li:nth-child(11) { grid-column: 2; grid-row: 5; }
 .col_2_menu.geo_menu_items_top .sub-menu li:nth-child(12) { grid-column: 2; grid-row: 6; }
 .col_2_menu.geo_menu_items_top .sub-menu li:nth-child(13) { grid-column: 2; grid-row: 7; }

.main-navigation ul ul {
    gap: 4px 9px;
}
.offers_cover {
    border-radius: 60px;
    background: var(--gradient-200, linear-gradient(115deg, #EBF2FF 5.53%, #F3F7FF 16.29%, #EEF4FE 28.79%, #D9E3F6 36.64%, #F3F7FF 46.53%, #EFF5FF 54.96%, #D1DCF1 66.01%));
        padding: 24px;
}
.h2_title {
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}
.h3_title {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}
.flex_title_img a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.offers article.col {
    padding: 16px 16px 50px 32px;
    border-radius: 36px;
    background: #fff;
    box-shadow: 5px 5px 80px 0px rgba(88, 121, 155, 0.43);
}
.offers .row {
    gap: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.offers .row .flex_title_img .circle_img {
    background-color: #E9F0F9;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
       transition: var(--global-transition);
       min-width: 54px;
        min-height: 54px;
}
.offers .row .flex_title_img a{
    color: #050F16;
    text-decoration: none;
       transition: var(--global-transition);
}

.offers .row .flex_title_img:hover .circle_img {
    background-color: #245EFE;
    transition: var(--global-transition);
}
.offers article a:hover .circle_img img {
    filter: brightness(0) invert(1);
       transition: var(--global-transition);
}
.desc_offer p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #595959;
}
.flex_title_img {
  position: relative;
  z-index: 1;
}

.flex_title_img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px; /* товщина "border-bottom" */
  width: 100%;
  background: linear-gradient(90deg, rgba(186, 197, 218, 0.00) 0%, rgba(186, 197, 218, 0.56) 47.4%, rgba(186, 197, 218, 0.00) 100%);
  pointer-events: none;
  z-index: -1;
      max-width: 330px;
}
p {
  margin: 0;
    margin-block-start: 0;
    margin-block-end: 0;
}
.desc_offer {
    margin-top: 20px;
        max-width: 450px;
}
.offers .row .col:first-child {
    display: flex;
    align-items: center;
    text-align: center;
    max-width: 451px;
    justify-content: center;
    margin: 0 auto;
}
.offers {
    margin: 48px 0;
}
.offers .row .flex_title_img a {
    outline: none;
}
.tech .circle_img {
    background-color: #E9F0F9;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tech .circle_img img {
    width: 24px !important;
    height: auto;
}
.circle_div_img {
    text-align: right;
    display: flex;
    justify-content: flex-end;
}
.tech_item {
    padding: 16px 16px 50px 16px;
    border-radius: 36px;
    background: #fff;
}
.tech_cover {
    border-radius: var(--radius-desktopex-external, 60px);
    background: var(--gradient-200, linear-gradient(115deg, #EBF2FF 5.53%, #F3F7FF 16.29%, #EEF4FE 28.79%, #D9E3F6 36.64%, #F3F7FF 46.53%, #EFF5FF 54.96%, #D1DCF1 66.01%));
    padding: 24px;
}
.tech .h4_title {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 20px;
}

.tech .h4_title  {
    position: relative;
    z-index: 1;
    padding-bottom: 20px;
        margin-top: 22px;
}
.tech .h4_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, rgba(186, 197, 218, 0.00) 0%, rgba(186, 197, 218, 0.56) 47.4%, rgba(186, 197, 218, 0.00) 100%);
    pointer-events: none;
    z-index: -1;
}
.desc_tech {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #595959;
}
p, li {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #595959;
}
.tech_item {
    min-height: 299px;
}
.tech h2 {
    text-align: center;
    margin-bottom: 28px;
    max-width: 684px;
    margin: 0 auto;
    margin-bottom: 28px;
}


.tech_item:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: inherit;
	 transition: var(--global-transition);
}



.tech .owl-carousel.owl-drag .owl-item {
    padding: 15px;
}
.tech_item {
    position: relative;
    z-index: 1;
}
.owl-dot {
    width: 8px;
    height: 8px;
    background-color: #fff!important;
    border-radius: 50%!important;
}
.owl-dot.active {
    background-color: #245EFE!important;
}

.owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    gap: 8px;
}
.tech_cover {
    padding: 9px 9px 24px 9px;
}
section.tech {
    margin: 48px 0;
    padding: 48px 0;
}

h1, h2, h3, h4, h5, h6 {
       color: #050F16;
}

.services_heading .circle_img {
    background-color: #E9F0F9;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
       transition: var(--global-transition);
}

.services_heading .services_item_art:hover .circle_img {
    background-color: #245EFE;
    transition: var(--global-transition);
}
.services_heading .services_item_art:hover .circle_img img {
    filter: brightness(0) invert(1);
       transition: var(--global-transition);
}
.services_cover .row .col:last-child {
    border-radius: var(--radius-desktopex-external, 60px);
    background: var(--gradient-200, linear-gradient(115deg, #EBF2FF 5.53%, #F3F7FF 16.29%, #EEF4FE 28.79%, #D9E3F6 36.64%, #F3F7FF 46.53%, #EFF5FF 54.96%, #D1DCF1 66.01%));
    padding: 24px;
}
.services_item_art {
    border-radius: var(--radius-desktopex-interior, 36px);
    background: #fff;
    box-shadow: 5px 5px 80px 0px rgba(88, 121, 155, 0.43);
    padding: 16px 16px 36px 16px;
}
.services_items_grid {
    gap: 17px 15px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.h4_title {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; 
}
.services_heading .h4_title {
    margin-top: 38px;
}
.services_heading .row {
    display: grid;
    gap: 82px;
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
}
.services_item_art {
    min-width: 172px;
}
.services_text p {
    margin-bottom: 0;
    margin-top: 0;
}
ul, ol {
    margin: 0;
    padding: 0;
    padding-left: 25px;
}

.services_text p:first-child {
    margin-bottom: 30px;
    margin-top: 16px;
}
.services_heading.revert .row .col:first-child {
    order: 2;
}
.services_heading.revert .row .col:last-child {
    order: 1;
}
.circle_img_ {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.services_item_art {
        box-shadow: 5px 5px 80px 0px #D4E2EF;
}
.revert .services_item_art {
    padding: 22px;
    min-height: 163px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.revert .services_item_art {
    position: relative;
}
.revert .services_item_art:first-child::after {
    content: '';
    background-image: url(/wp-content/uploads/2025/07/Group-2087330189.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    position: absolute;
    width: 51px;
    height: 51px;
    right: -33px;
    bottom: -32px;
    z-index: 1;
}
.revert .services_item_art:nth-child(2)::after {
    content: '';
    background-image: url(/wp-content/uploads/2025/07/Group-2087330190.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    position: absolute;
    width: 51px;
    height: 51px;
    right: auto;
    bottom: -18px;
    z-index: 0;
    left: 40px;
}

.revert .services_item_art:nth-child(3)::after {
    content: '';
    background-image: url(/wp-content/uploads/2025/07/Group-2087330189.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    position: absolute;
    width: 51px;
    height: 51px;
    left: -33px;
    bottom: -32px;
    z-index: 1;
    transform: rotate(90deg);
}
.revert .services_item_art:nth-child(4)::after {
    content: '';
    background-image: url(/wp-content/uploads/2025/07/Group-2087330190.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    position: absolute;
    width: 51px;
    height: 51px;
    right: -18px;
    bottom: auto;
    z-index: 0;
    transform: rotate(270deg);
    left: auto;
    top: 79px;
}
.revert .services_item_art:nth-child(6)::after {
    content: '';
    background-image: url(/wp-content/uploads/2025/07/Group-2087330190.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    position: absolute;
    width: 51px;
    height: 51px;
    right: auto;
    bottom: auto;
    z-index: 0;
    transform: rotate(90deg);
    left: -19px;
    top: 36px;
}
.revert .services_item_art:nth-child(5) {
    z-index: 2;
}
.revert .services_item_art:nth-child(7)::after {
    content: '';
    background-image: url(/wp-content/uploads/2025/07/Group-2087330189.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    position: absolute;
    width: 51px;
    height: 51px;
    right: -35px;
    bottom: auto;
    z-index: 2;
    top: -32px;
    transform: rotate(270deg);
}
.revert .services_item_art:nth-child(8)::after {
    content: '';
    background-image: url(/wp-content/uploads/2025/07/Group-2087330190.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    position: absolute;
    width: 51px;
    height: 51px;
    right: auto;
    top: -18px;
    z-index: 0;
    left: 84px;
    transform: rotate(180deg);
}
.revert .services_item_art:nth-child(9)::after {
    content: '';
    background-image: url(/wp-content/uploads/2025/07/Group-2087330189.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    position: absolute;
    width: 51px;
    height: 51px;
    right: auto;
    bottom: auto;
    z-index: 2;
    top: -32px;
    transform: rotate(180deg);
    left: -35px;
}
.services_text strong {
    font-weight: 400;
    color: #050F16;
    margin-top: 30px;
}
.revert .services_text p:last-child  {
    margin-top: 30px;
}
section.services_heading {
    margin: 48px 0;
}
section.services_heading.revert {
    margin: 48px 0;
    padding: 48px 0;
}
.business_optimization .services_text p:last-child {
    margin-top: 30px;
}
.business_optimization .services_item_art {
    display: grid;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}
.services_heading.business_optimization .h4_title {
    margin-top: 27px;
}
.services_heading.business_optimization .services_item_art {
    padding: 34px 16px 34px 16px;
}
.services_heading.business_optimization .h3_title {
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    padding-top: 26px;
    text-align: center;
    padding-bottom: 25px;
    max-width: 360px;
    margin: 0 auto;
}

.business_optimization .circle_img_ img {
 
}

.business_optimization .services_item_art:hover .circle_img_ img {
filter: none;
}
.services_items_img {
    border-radius: var(--radius-desktopex-interior, 36px);
    background: rgba(255, 255, 255, 0.80);
    box-shadow: 5px 5px 80px 0px #D4E2EF;
    padding: 88px 37px 34px 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 315px;
    margin: 0 auto;
    position: relative;
}
.services_heading.certification_heading .row .col:last-child {
    min-height: 573px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.number_sertif {
    background-image: linear-gradient(180deg, #5481FC 0%, #245EFE 100%), linear-gradient(180deg, #FFF 0%, #E0E8FF 100%);
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
        position: absolute;
    right: -20px;
    bottom: -20px;
    box-shadow: 20px 20px 100px rgba(8, 44, 143, 0.63);
}
.desc_sertif {
    text-align: center;
    margin-top: 63px;
}
.revert.certification_heading .services_text p:last-child {
    margin-top: 16px;
}
.button_white span {
    background-color: #245EFE;
    border-radius: 50%;
    transition: var(--global-transition);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--global-transition);
}
.button_white img {
    filter: brightness(0) invert(1);
    transition: var(--global-transition);
}
.button_white {
    display: flex;
    align-items: center;
    background-color: #fff;
    color: #050F16;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    text-transform: uppercase;
    padding: 5px 9px 5px 24px;
    width: 243px;
    justify-content: space-between;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    transition: var(--global-transition);
}
.button_white:hover {
    background-color: #245EFE;
    color: #ffffff;
    transition: var(--global-transition);
}
.button_white:hover span {
    background-color: #fff;
    transition: var(--global-transition);
}
.button_white:hover img {
    filter: none;
}
a {
    text-decoration: none;
}
.cta_heading {
    background-image: url(/wp-content/uploads/2025/07/Select-Payadmit-as-a-reliable-payment-processor.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 98px 0;
}
.cta_heading .h2_title {
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    color: #FFF;
    text-align: center;
    max-width: 803px;
    margin: 0 auto;
}




.cta_heading p {
    color: #fff;
    text-align: center;
    max-width: 944px;
    margin: 0 auto;
    margin-top: 23px;
    margin-bottom: 28px;
}
.cta_heading .button_white {
    margin: 0 auto;
}
.services_heading.revert.certification_heading {
    margin: 48px 0 0 0;
    padding: 48px 0;
}
.testimonial_item {
    border-radius: var(--radius-desktopex-external, 60px);
    background: var(--gradient-200, linear-gradient(115deg, #EBF2FF 5.53%, #F3F7FF 16.29%, #EEF4FE 28.79%, #D9E3F6 36.64%, #F3F7FF 46.53%, #EFF5FF 54.96%, #D1DCF1 66.01%));
    padding: 24px;
}
.testimonial_item_cover {
    border-radius: 52px;
    background: rgba(255, 255, 255, 0.80);
    padding: 36px 42px 31px 35px;
}
.owl-carousel .owl-item .logo_testi img {
    max-width: 175px;
}
.flex_testi {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.time_testi {
    color: #686767;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.flex_testi {
    position: relative;
    z-index: 1;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.flex_testi::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, rgba(186, 197, 218, 0.00) 0%, rgba(186, 197, 218, 0.56) 47.4%, rgba(186, 197, 218, 0.00) 100%);
    pointer-events: none;
    z-index: -1;

}
.name_testi {
    color: #245EFE;

    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 270%;
    text-transform: uppercase;
}
.review_testi {
    min-height: 225px;
}
.testimonials .h2_title {
    margin-bottom: 25px;
        text-align: center;
}

.testimonial_logos {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    background-blend-mode: color;
    justify-content: center;
    gap: 47px;
    margin-top: 24px;
        padding-top: 25px;
}
.testimonial_logos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, rgba(186, 197, 218, 0.00) 0%, rgba(186, 197, 218, 0.56) 47.4%, rgba(186, 197, 218, 0.00) 100%);
    pointer-events: none;
    z-index: -1;

}
section.testimonials {
    margin: 48px 0;
}
.aside_footer {
    background: linear-gradient(180deg, #081722 26.88%, #050F16 97.91%);
}
.aside_footer h2 {
   color: #fff;
}

.button_default span {
    background-color: #fff;
    border-radius: 50%;
    transition: var(--global-transition);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--global-transition);
}
.button_default img {

    transition: var(--global-transition);
}
.button_default {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    text-transform: uppercase;
    padding: 5px 9px 5px 24px;
    width: 100%;
    max-width: 243px;
    justify-content: space-between;
    border-radius: 50px;
    transition: var(--global-transition);
    border-radius: 50px;
    border: 1px solid var(--border-gradient-400, rgba(186, 197, 218, 0.00));
    background: var(--shade-color-shade-transparent-500102, rgba(255, 255, 255, 0.10));
}
.button_default:hover {
    background-color: #245EFE;
    color: #ffffff;
    transition: var(--global-transition);
}
.button_default:hover span {
    background-color: #fff;
    transition: var(--global-transition);
}

.button_default::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    background: var(--border-gradient-400);
    border-radius: 101px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}
.button_default {
    position: relative;
    z-index: 0;
}

.button_default:hover::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    background: var(--border-gradient-400);
    border-radius: 101px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}


.aside_footer .row .col_items {
    border-radius: var(--radius-desktopex-external, 60px);
    border: 1px solid var(--border-gradient-400, rgba(186, 197, 218, 0.00));
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    position: relative;
    z-index: 0;
    padding: 41px 21px 21px 21px;
}
.aside_footer .row .col_items::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    background: var(--border-gradient-400);
    border-radius: 60px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.aside_footer .row .col_items .h3_title {
    position: relative;
    z-index: 1;
    padding-bottom: 16px;
    margin-bottom: 16px;
    color: #fff;
}
.aside_footer .row .col_items .h3_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, rgba(186, 197, 218, 0.00) 0%, rgba(186, 197, 218, 0.56) 47.4%, rgba(186, 197, 218, 0.00) 100%);
    pointer-events: none;
    z-index: -1;
}
.text_aside_p p {
    color: rgba(255, 255, 255, 0.68);
}
.text_aside_p {
       margin-bottom: 15px;
}
.aside_footer .row .col_items {
    min-height: 375px;
}
.aside_footer .row {
    gap: 20px;
    display: grid;
    align-items: center;
    grid-template-columns: repeat(4, 1fr);
}
.text_get_started p {
    color: #fff;
    margin-top: 17px;
}
.text_get_started {
    padding-right: 26px;
}
.aside_footer {
    padding: 50px 0;
}
.site-footer {
    background-color: #050F16;
}

.site_footer_inner {
    position: relative;
    z-index: 1;
    margin-bottom: 17px;
    padding-top: 48px;
    padding-bottom: 10px;
}
.site_footer_inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, rgba(186, 197, 218, 0.00) 0%, rgba(186, 197, 218, 0.56) 47.4%, rgba(186, 197, 218, 0.00) 100%);
    pointer-events: none;
    z-index: -1;
}
.site_footer_inner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, rgba(186, 197, 218, 0.00) 0%, rgba(186, 197, 218, 0.56) 47.4%, rgba(186, 197, 218, 0.00) 100%);
    pointer-events: none;
    z-index: -1;
}
.widget_title {
    color: #245EFE;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 270%;
}
.links_footer a {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 270%;
    color: #fff;
}
.links_footer {
    display: grid;
}
.links_footer a:hover {
    color: #245EFE;
}
.site_description p {
    color: #fff;
    margin-top: 35px;
}




.site_info .row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
.site_info .row .col:first-child {
    min-width: 478px;
}
.site_info .row .col:nth-child(2) {
    min-width: 103px;
}
.site_info .row .col:nth-child(3) {
    min-width: 145px;
}
.site_info .row .col:nth-child(4) {
    min-width: ;
}
.site_info .row .col:nth-child(5) {
    min-width: 142px;
}


.sec_info a {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 270%;
    color: #245EFE;
}
.sec_info a:hover {
    color: #fff;
}
.post, .page {
    margin: 0;
}
.address_info {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 270%;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.80);
}





.address_info_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
        padding-bottom: 17px;
}
address {
    margin: 0;
}
.security_sertificates img {
    width: 80px;
    padding: 13px 16px;
}
.site_description {
    max-width: 235px;
}
.aside_footer .button_default {
    position: absolute;
    bottom: 21px;
}
.aside_footer .button_default {
    font-weight: 400;
}
.site_info .row {
    gap: 62px;
}
.security_sertificates img {
    height: 45px;
}
.security_sertificates img:last-child {
    padding: 0px 5px;
}
.social {
    display: flex;
    align-items: center;
    gap: 24px;
}

@media (max-width: 1025px) {
.aside_footer .row {
    grid-template-columns: repeat(1, 1fr);
}
.site_info .row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}
.site_info .row .col:first-child {
    min-width: 100%;
}
.site_info .row .col:nth-child(3) {
    min-width: 100%;
}
.site_info .row .col:nth-child(4) {
    min-width: 100%;
}
.site_info .row .col:nth-child(5) {
    min-width: 100%;
}
.offers .row {
    gap: 12px;
    grid-template-columns: repeat(1, 1fr);
}
.services_heading .row {
    gap: 24px;
    grid-template-columns: repeat(1, 1fr);
}
.services_items_grid {
    grid-template-columns: repeat(2, 1fr);
}
.testimonial_logos {
    display: none;
}
.hero h1 {
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    text-align: center;
}
.text_hero p {
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        text-align: center;
        max-width: 294px;
        margin: 12px auto;
 }
.hero_links a {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    padding: 8px 16px;
            height: 53px;
}
.hero_links a img {
    width: 21px;
    height: 21px;
}
.hero .row {
    display: grid;
}
.hero .row .col:first-child {
    max-width: 100%;
    margin-top: 123px;
}
    .hero .row .col:last-child img {
        position: absolute;
        bottom: 0;
        width: 100%;
        right: 0;
        max-width: 348px;
    }
    #mobile-menu.active {
        left: 0;
        background: linear-gradient(180deg, #081722 26.88%, #050F16 97.91%), #D9D9D9;
    }
 .burger .btn_burger {
    background-image: url(/wp-content/uploads/2025/07/hugeicons_menu-09.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
            width: 24px;
        height: 24px;
}
 .burger.active .btn_burger {
    background-image: url(/wp-content/uploads/2025/07/material-symbols_close-rounded.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
            width: 24px;
        height: 24px;
}
.burger {
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.11);
        background: rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(25px);
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
}
.main-navigation {
    display: none;
}
.site-branding {
        padding-bottom: 12px;
}
.burger {
        margin-bottom: 12px;
}
}
@media (max-width: 1025px) {
.full {
display: none !important;
}
}
@media (min-width: 1025px) {
.mobile {
display: none!important;
}
}
@media (width: 1025px) {
.full {
display: block!important;
}
}

@media (max-width: 767px) {
.full_footer {
display: none !important;
}
}
@media (min-width: 767px) {
.mobile_footer  {
display: none!important;
}
}
@media (width: 767px) {
.full_footer  {
display: block!important;
}
}

@media (max-width: 1025px) {
.services_item_art {
    min-width: 100%;
}
#mobile-menu .flex_header {
padding: 0;
}
#primary-menu li a {
        text-decoration: none;
        display: block;
        font-size: 20px;
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
        color: #fff;
    }
.menu-item-has-children a:after {
    content: '';
    background-image: url(/wp-content/uploads/2025/07/arrow-filled-1.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 14px;
    height: 14px;
    display: block;
}
    #primary-menu li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 11px 31px;
        height: 51px;
    }
 .menu-menu-container {
    margin-top: 126px;
}
    #primary-menu li.open > .sub-menu {
        left: 0;
        right: 0;
        margin: 0;
        margin-top: auto !important;
        display: flex;
        flex-wrap: wrap;
        gap: 0;
        align-content: center;
    }

.menu-item-has-children .sub-menu a:after {
        content: '';
        background-image: url(/wp-content/uploads/2025/07/ri_arrow-up-line-3.svg);
        background-repeat: no-repeat;
        background-position: center;
        width: 14px;
        height: 14px;
        display: block;
    }

.menu-item-has-children .sub-menu .disabled_item a:after  {
       content: '';
        background-image: none;
}
#primary-menu li {
        margin-bottom: 23px;
    }
.main-navigation ul .col_2_menu ul a {
    width: fit-content;
    min-width: 100%;
}
.col_2_menu .sub-menu {
	display: block;
}
#primary-menu .col_2_menu li a {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
    }
#primary-menu .col_2_menu li {
   margin-bottom: 0;
}
    #primary-menu .col_2_menu li a {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
    }
    #primary-menu .col_2_menu li.disabled_item a {
        font-size: 24px;
    } 
.disabled_item {
    padding: 5px 0;
}
    .top_38 {
        margin-top: 38px;
}
.sub-menu {
    border: 0px solid rgba(255, 255, 255, 0.06);
}
header .button.mobile {
    max-width: 108px;
    margin: 110px auto 0 auto;
}
.burger.active {
    position: fixed;
    right: 20px;
}
    #mobile-menu.active {
        overflow-y: scroll;
    }
.h2_title {
    font-size: 27px;
}
.offers .h2_title {
        margin-bottom: 22px;
                text-align: center;

    }
.offers_cover {
     border-radius: 45px;
    padding: 10px;
}
.h3_title {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.offers .row .flex_title_img .circle_img {
    width: 48px;
    height: 48px;
}
.flex_title_img::after {
    max-width: 230px;
}
.desc_offer p {
    font-size: 12px;
}
.desc_offer {
    margin-top: 12px;
    max-width: 230px;
}
.tech .h2_title {
        font-size: 18px;
    }
    .tech_item {
    min-height: 193px;
}
    .tech_cover {
        border-radius: 45px;
        padding: 0px 0px 25px 0px;
    }
.tech_item {
    padding: 16px 16px 36px 16px;
}
.tech .owl-carousel.owl-drag .owl-item {
    padding: 10px;
}
.services_text p:first-child {
    margin-bottom: 30px;
    margin-top: 16px;
}
.circle_div_img {
    text-align: center;
    justify-content: center;
}
.services_heading .h4_title {
    margin-top: 26px;
    text-align: center;
}
.services_item_art {
    padding: 33px 16px 40px 16px;
}
    .services_cover .row .col:last-child {
        border-radius: 45px;
        padding: 10px 10px 25px 10px;
    }
.services_items_grid {
    gap: 20px;
}
.item_slide_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr); /* 2 колонки */
	grid-gap: 20px; /* відстань між елементами */
}
.services_cover .row .col:last-child {
        overflow: hidden;
    }
    .services_item_art {
    box-shadow: 5px 5px 32px 0px #D4E2EF;
}
.owl-carousel .owl-item .circle_img img {
    display: block;
    width: auto;
}
.services_heading.revert .services_items_grid {
        grid-template-columns: repeat(3, 1fr);
    }
.services_heading.revert .services_items_grid img {
    height: 42px;
}
.revert .services_item_art {
    min-height: 90px;
}
.revert .services_item_art:nth-child(2)::after {
    content: '';
           left: -47%;
        width: 100%;
}
.revert .services_item_art:nth-child(8)::after {
    content: '';
        left: 47%;
        width: 100%;
}
.revert .services_item_art:nth-child(4)::after {
    content: '';
    left: auto;
    top: 26%;
    height: 100%;
    right: 0;
}
.revert .services_item_art:nth-child(6)::after {
    content: '';
    top: 36px;
    left: auto;
    top: -23%;
    height: 100%;
    left: 0;
}
.revert .services_item_art {
    padding: 22px 15px;
}
.services_item_art {
        padding: 33px 5px 40px 5px;
    }
.services_heading.revert .row .col:first-child {
    order: 1;
}
.services_heading.revert .row .col:last-child {
    order: 2;
}
p, li {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.revert .services_text p:last-child {
    margin-top: 16px;
}
.services_heading.business_optimization .h3_title {
    font-size: 19.44px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    text-transform: uppercase;
    max-width: 194px;
}
.services_heading.business_optimization .services_item_art {
    padding: 18px 16px 26px 16px;
}
.services_heading.business_optimization .h4_title {
    margin-top: 11px;
    font-size: 8.64px;
font-style: normal;
font-weight: 500;
line-height: 130%; /* 11.232px */
text-transform: uppercase;
}
.services_heading.business_optimization .services_items_grid {
        grid-template-columns: repeat(3, 1fr);
    }
.services_heading.business_optimization .services_items_grid {
        gap: 10px;
    }
.services_heading .row {
        gap: 16px;
} 
.certification_heading .services_text p:first-child {
        margin-bottom: 0;
    }
.services_items_img {
    padding: 47px 20px 18px 20px;
    max-width: 170px;
}
.desc_sertif {
    text-align: center;
    margin-top: 30px;
}
.number_sertif {
    right: -20px;
    bottom: -5px;
    box-shadow: 20px 20px 100px rgba(8, 44, 143, 0.63);
    width: 40px;
    height: 40px;
}
.number_sertif img {
    width: 10px;
}
.services_heading.certification_heading .row .col:last-child {
    min-height: 310px;
}
.cta_heading {
    padding: 45px 0;
}
.cta_heading .h2_title {
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}
.cta_heading p {
    margin-top: 16px;
    margin-bottom: 16px;
}
.testimonial_item {
    border-radius: 45px;
    padding: 10px;
}
.owl-carousel .owl-item .logo_testi img {
    max-width: 115px;
}
.time_testi {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.review_testi {
    min-height: 180px;
}
.name_testi {
    font-size: 10.5px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
}
.flex_testi {
    padding-bottom: 16px;
    margin-bottom: 16px;
}
.testimonial_item_cover {
    border-radius: 45px;
}
.aside_footer .row  .owl-carousel {
    overflow: hidden;
}
.aside_footer .button_default {
    left: 50%;
    transform: translateX(-50%);
}
.aside_footer .row {
    gap: 24px;
}
.text_get_started {
    padding-right: 0;
    text-align: center;
}
.text_get_started p {
    margin-top: 24px;
}
.text_get_started {
        max-width: 283px;
        margin: 0 auto;
 }
 .aside_footer h2 {
    text-align: center;
}
.aside_footer {
    padding: 60px 0;
}
.aside_footer .row .col_items .h3_title {
    padding-bottom: 20px;
    margin-bottom: 17px;
}
.aside_footer .row .col_items {
    padding: 30px 21px 21px 21px;
}
.aside_footer h2 {
    text-align: center;
}
    .site_info .row .col:first-child {
        text-align: center;
    }
.site_description {
    max-width: 232px;
    margin: 0 auto;
}
.site_info .row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}
.links_footer a {
    font-size: 10.5px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
}
.widget_title {
    line-height: 270%;
    font-size: 10.5px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
}
    .site_info .row .col:nth-child(2), .site_info .row .col:nth-child(3), .site_info .row .col:nth-child(4), .site_info .row .col:nth-child(5) {
        width: 48%;
        min-width: 48%;
        margin-bottom: 0px;
        margin-top: 16px;
    }
.site_description p {
    margin-top: 16px;
}
.testimonials .owl-dot {
    background-color: #E1E1E1 !important;
}
.testimonials .owl-dot.active {
    background-color: #245EFE !important;
}
.testimonials .owl-dots {
    margin-top: 24px;
}
.sec_info a {
    font-size: 10.5px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
}
.sec_info  {
    margin-top: 16px;
}
.site_footer_inner {
    margin-bottom: 21px;
    padding-bottom: 21px;
}
.address_info_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.address_info {
    font-size: 10.5px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
    text-align: center;
    margin-bottom: 24px;
}
}

blockquote {
    margin: 0;
}
@media (max-width: 1265px) and (min-width: 1025px) {
.site_info .row .col:first-child {
    min-width: 250px;
}
}
@media (max-width: 1150px) and (min-width: 1025px) {
.main-navigation ul {
    gap: 3px;
}
.hero .row .col:first-child {
    max-width: 450px;
    margin-top: 234px;
}
}

@media (max-width: 1025px) and (min-width: 768px) {
.hero .row .col:last-child img {
        max-width: 480px;
}
.hero .row .col:first-child {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
}
.hero_links {
    gap: 14px;
    max-width: 450px;
}
.text_hero {
    width: 100%;
}
}


@media (max-width: 360px) {
    .hero .row .col:last-child img {
        max-width: 300px;
}
    .hero h1 {
        font-size: 26px;
    }
}
@media (max-width: 1025px) and (min-width: 768px) {
    .services_heading.revert .row .col:last-child {
        max-width: 500px;
        margin: 0 auto;
        min-width: 500px;
    }
    .services_cover .row .col:last-child {
            max-width: 500px;
        margin: 0 auto;
    }
        .site_info .row .col:nth-child(2), .site_info .row .col:nth-child(3), .site_info .row .col:nth-child(4), .site_info .row .col:nth-child(5) {
        width: 23%;
        min-width: 23%;
    }
 .tech_cover {
        max-width: 500px;
        margin: 0 auto;
    }
      .offers_cover {
        max-width: 500px;
        margin: 0 auto;
    }
    .tech .h2_title {
        font-size: 27px;
    }
        .address_info {
        width: 100%;
    }
}
@media (max-width: 1025px) {
    .address_info {
        width: 100%;
    }
}
    #primary-menu li {
        list-style-type: none;
    }
#breadcrumbs {
    border-radius: 50px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%);
    width: fit-content;
    padding: 0px 16px 0px 4px;
    height: 37px;
}
#breadcrumbs a {
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    padding: 4px 10px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 270%;
}
#breadcrumbs span {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 270%;
    color: #fff;
}
#breadcrumbs .breadcrumb_last {
    padding: 0 8px;
}
#breadcrumbs {
  position: relative;
  z-index: 0;
  margin-bottom: 24px;
}

#breadcrumbs::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(to bottom, #334048, #1C2933);
    border-radius: 101px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}
.page-template-cashier-service .text_hero {
    max-width: 474px;
}
.page-template-payment-bridge .text_hero {
    max-width: 470px;
}
.bg_block_light {
    border-radius: 52px;
    background: var(--gradient-200, linear-gradient(115deg, #EBF2FF 5.53%, #F3F7FF 16.29%, #EEF4FE 28.79%, #D9E3F6 36.64%, #F3F7FF 46.53%, #EFF5FF 54.96%, #D1DCF1 66.01%));
    padding: 50px;
}
.smart_routing .row {
    display: flex;
    align-items: center;
    gap: 80px;
}

.col_with_image {
     width: 54.5%;
}
.col_with_text {
        width: 45.5%;
}
.text_with_light {
    margin-top: 16px;
    padding-right: 18px;
}
.revert .text_with_light {
    padding-right: 5px;
}
.text_with_light p {
    margin-bottom: 30px;
}
.text_with_light strong {
    font-weight: 400;
    color: #050F16;
}
.padding_48 {
    padding: 48px 0;
}
.margin_48 {
    margin: 48px 0;
}


.offers.first_full .row .col:first-child {
    display: block;
    align-items: start;
    text-align: left;
    max-width: 100%;
    justify-content: center;
    margin: 0;
}
.offers.first_full .h3_title {
       padding-bottom: 16px;
}
.offers.first_full article.col {
    padding: 32px 20px 20px 20px;
    min-height: 281px;
}
.post_items {
    gap: 23px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 33px;
}
.flex_title_space {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.post_image img {
    border-radius: 30px;
    height: 257px;
    object-fit: cover;
}
.post_items .h3_title a {
    color: #050F16;
    text-transform: uppercase;
    margin-top: 38px;
}

.post_items .h3_title {
    position: relative;
    z-index: 1;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.post_items .h3_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, rgba(186, 197, 218, 0.00) 0%, rgba(186, 197, 218, 0.56) 47.4%, rgba(186, 197, 218, 0.00) 100%);
    pointer-events: none;
    z-index: -1;
}
.post_image {
    margin-bottom: 24px;
}
.page-template-cashier-service .text_hero p {
    margin: 20px 0;
}
@media (min-width: 1025px) {
.page-template-cashier-service  .hero .row .col:first-child {
    margin-top: 255px;
}
.page-template-payment-bridge  .hero .row .col:first-child  {
    margin-top: 265px;
}

}
@media (max-width: 1025px) {
#breadcrumbs {
    margin: 0 auto;
    margin-bottom: 28px;
}
.page-template-cashier-service .text_hero p {
    margin: 24px 0;
    width: 100%;
    max-width: 100%;
}
#breadcrumbs .breadcrumb_last {
    padding: 0 8px;
}
.smart_routing .row {
    display: grid;
    gap: 16px;
}
.col_with_image {
    width: 100%;
     order: 2;
}
.col_with_text {
     width: 100%;
      order: 1;
}
.text_with_light p:last-child {
    margin-bottom: 0;
}
.text_with_light {
    margin-top: 24px;
    padding-right: 0;
}
.text_with_light p {
    margin-bottom: 20px;
}
.bg_block_light {
    border-radius: 45px;
    padding: 13px 20px;
}
.post_items {
    grid-template-columns: repeat(1, 1fr);
}
.offers.first_full article.col {
    box-shadow: none;
}
.offers.first_full .desc_offer {
        margin-top: 12px;
        max-width: 100%;
    }
.offers.first_full .owl-dots {
    padding-bottom: 20px;
    margin-top: 6px;
}
.flex_title_img_ .circle_img {
    background-color: #245EFE;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 48px;
}
.flex_title_img_ .circle_img img {
    filter: brightness(0) invert(1);
    transition: var(--global-transition);
}
.flex_title_img_ {
    margin-top: 16px;
    text-align: right;
    display: flex;
    justify-content: end;
}
.revert .text_with_light {
    padding-right: 0;
    margin-top: 16px;
}
.blog_items_section .h2_title {
        text-align: center;
    }
.post_items {
    margin-top: 24px;
}
.post_image {
    margin-bottom: 21px;
}
.post_items .h3_title {
    padding-bottom: 16px;
    margin-bottom: 16px;
}
.flex_title_space {
    display: grid;
}
.blog_items_section  .button  {
    width: fit-content;
    margin: 24px auto 0px auto;
}
.blog_items_section p {
    font-size: 16px;
}
.page-template-cashier-service .text_hero {
    margin: 0 auto;
}
}
.breadcrumbs_section {
    width: 100%;
}
    .hero h1 {
        width: 100%;
    }
@media (max-width: 1025px) {
    .bg_block_light {
        max-width: 500px;
        margin: 0 auto;
    }
}
@media (max-width: 1025px) and (min-width: 768px) {
    .post_items {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bg_block_light.left_image_cont {
    padding-right: 0;
    padding-left: 74px;
}
.bg_block_light.right_image_cont {
    padding-right: 74px;
    padding-left: 0;
}

@media (max-width: 1025px) {
.text_hero {
    margin: 0 auto;
}
.bg_block_light.left_image_cont {
    padding-right: 0;
    padding-left: 40px;
    padding-top: 38px;
    padding-bottom: 38px;
}
.bg_block_light.right_image_cont {
    padding-right: 20px;
    padding-left: 0;
    padding-top: 20px;
}
}

.heading_center .h2_title {
    max-width: 830px;
    margin: 0 auto;
    text-align: center;
}
.description_processing {
    max-width: 830px;
    margin: 24px auto;
    text-align: center;
}

.bg_block_light.padding_72 {
    padding: 75px 72px;
}

.bg_block_light.left_image_cont.padding_14 {
    padding-left: 14px;
}
.bg_block_light.left_image_cont.padding_35 {
    padding-left: 35px;
}
.bg_block_light.padding_24 {
    padding: 24px;
}
.rows_carousel {
    gap: 15px 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.payment_price .services_item_art {
    min-height: 254px;
}
.payment_price .services_item_art p {
    line-height: 150%;
    margin-top: 64px;
}



.faq-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
    border-radius: 52px;
    background: var(--gradient-200, linear-gradient(115deg, #EBF2FF 5.53%, #F3F7FF 16.29%, #EEF4FE 28.79%, #D9E3F6 36.64%, #F3F7FF 46.53%, #EFF5FF 54.96%, #D1DCF1 66.01%));
    padding: 24px;
}

.faq-column {
  width: 48%;
  box-sizing: border-box;
  width: calc(50% - 9px);
}

.faq-item {
    border-radius: 30px;
    background: var(--shade-color-shade-transparent-40080, rgba(255, 255, 255, 0.80));
    box-shadow: 5px 5px 80px 0px #D4E2EF;
    padding: 22px 24px;
        cursor: pointer;
}

.faq-item h3 {
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toggle-sign {
  float: right;
}

.faq-answer {
  display: none;
  margin-top: 17px;
}

/* Адаптив */
@media screen and (max-width: 768px) {
  .faq-column {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.faq-item {
    margin-bottom: 12px;
}
.toggle-sign {
    min-width: 25px;
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq .h2_title {
    text-align: center;
    margin-bottom: 24px;
}
.aside_footer_partners {
    background-image: url(/wp-content/uploads/2025/07/bg-2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 467px;
       position: relative;
}
.aside_footer_partners .row {
    min-height: 467px;
}
.aside_footer {
    background-image: url(/wp-content/uploads/2025/07/bg-2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.aside_footer_partners .row {
    display: flex;
    align-items: center;
}
.aside_footer_partners .row .col:first-child{
    max-width: 429px;
}
.aside_footer_partners .row .col:last-child img {
    position: absolute;
    bottom: auto;
    right: 0;
    top: 0;
}
.aside_footer_partners h2 {
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    color: #fff;
}
.aside_footer_partners  .text_get_started p {
    margin-top: 18px;
    margin-bottom: 18px;
}
@media (max-width: 1025px) {
.aside_footer_partners .row .col:last-child img {
    position: relative;
}
.aside_footer_partners .row {
    display: grid;
    align-items: center;
    gap: 62px;
}
.aside_footer_partners h2 {
    font-size: 27px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    text-align: center;
}
.aside_footer_partners {
    padding-top: 117px;
}
    .bg_block_light {
        max-width: 100%;
        margin: 0 auto;
        overflow: hidden;
    }
.smart_routing.payment_processing.services_heading.payment_price .row {
        display: block;
    }
 .description_processing {
    margin: 16px auto;
} 
.bg_block_light.left_image_cont.padding_35 {
    padding-top: 20px;
    padding-bottom: 20px;
}
.smart_routing.payment_processing.services_heading.payment_price .col_with_image {
        margin-top: 16px;
    }
.smart_routing.payment_processing.services_heading.payment_price .bg_block_light.padding_24 {
        padding: 10px 10px 30px 10px;
    }
.smart_routing.payment_processing.services_heading.payment_price .owl-dots {
    margin-top: 15px;
}
.smart_routing.payment_processing.services_heading.payment_price .services_item_art {
        padding: 33px 20px 40px 20px;
                box-shadow: none;
    }
.smart_routing.payment_processing.services_heading.payment_price .services_item_art p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    max-width: 217px;
}
.faq-wrapper {
    border-radius: 45px;
    padding: 18px;
}
.faq-item {
    border-radius: 35px;
}
.aside_footer_partners .button_default {
    margin: 0 auto;
}
    .aside_footer_partners .row .col:last-child img {
        margin-bottom: -12px;
    }
    .bg_block_light.padding_72 {
    padding: 41px 30px;
}
.h2_title br {
    display: none;
}
}
.payment_price .services_item_art {
    min-width: auto;
}

@media (max-width: 1150px) and (min-width: 1025px) {
.aside_footer_partners .row .col:last-child img {
    bottom: 0;
    right: 0;
    top: auto;
    max-width: 610px;
}
}

@media (max-width: 1025px) and (min-width: 390px) {
    .aside_footer_partners .row .col:last-child img {
        margin-bottom: -2px;
    }
}
@media (min-width: 1025px) {
.page-template-features-analytics-dashboard  .hero .row .col:first-child {
    max-width: 535px;
    margin-top: 215px;
}
.faq-item {
    min-height: 106.39px;
}
.faq-item h3 {
    min-height: 62px;
}
}
.p_last_top_30 .text_with_light p:first-child {
    margin-bottom: 0;
}
.p_last_top_30 .text_with_light p:last-child {
    margin-top: 30px;
}
.bg_block_light.padding_zero {
    padding: 0;
}
.bg_block_light.padding_zero img { 
    border-radius: 52px;
    margin-bottom: -4px;
}

@media (max-width: 1025px) {
.bg_block_light.padding_zero img {
    margin-bottom: -5px;
    border-radius: 45px;
}
.p_last_top_30 .text_with_light p:last-child {
    margin-bottom: 20px;
}
    .col_with_image {
        max-width: 500px;
        margin: 0 auto;
    }
}

.bg_block_light.padding_bottom_right {
    padding-right: 0;
    padding-left: 35px;
    padding-bottom: 0;
}
@media (min-width: 1025px) {
.page-template-features-dynamic-currency-conversion .hero .row .col:first-child {
    max-width: 533px;
}
}
.bg_block_light {
    text-align: center;
}
.bg_block_light.padding_100 {
    padding: 100px 120px;
}

@media (max-width: 1025px) {
.bg_block_light.padding_100 {
    padding: 57px 75px;
}
}
.page-template-features-antifraud-risk-management .hero .row .col:first-child {
    max-width: 535px;
}
.p_last_top_30.p_first_bottom_30 .text_with_light p:first-child  {
    margin-bottom: 30px;
}

.service_benefits .rows {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 47px;
    border-radius: var(--radius-desktopex-interior, 36px);
    background: var(--shade-color-shade-transparent-40080, rgba(255, 255, 255, 0.80));
    box-shadow: 5px 5px 80px 0 rgba(88, 121, 155, 0.43);
    padding: 32px 37px;
}

.service_benefits .circle_img {
    background-color: #E9F0F9;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    min-width: 54px;
     min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.item_items_benefits {
    display: flex;
    gap: 17px;
    align-items: center;
    min-height: 96px;
}
.title_items_benefits {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #050F16;
}
.service_benefits .h2_title {
    text-align: center;
}
.description_service_benefits {
    text-align: center;
}
.description_service_benefits p {
     margin-top: 24px;
    margin-bottom: 24px;
}
@media (max-width: 1025px) {
.service_benefits .rows {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    border-radius: 35px;
    padding: 24px 20px;
}
.item_items_benefits {
    min-height: auto;
}
.service_benefits .offers_cover {
        padding: 15px 10px;
    }
.title_items_benefits {
    font-size: 12px;
}
.description_service_benefits p {
    margin-top: 16px;
    margin-bottom: 16px;
}
}
@media (min-width: 1025px) {
.page-template-services-pci-dss-support .hero .row .col:first-child {
    max-width: 535px;
}
}
.p_no_bottom_first p:first-child {
    margin-bottom: 0;
}
@media (max-width: 1025px) {
    #primary-menu .col_2_menu li {
        width: 100%;
    }
#primary-menu li {
    width: 100%;
}
}

@media (width: 390px) {
    .aside_footer_partners .row .col:last-child img {
        margin-bottom: -9px;
    }
}
.page-template-geography .banner_hero {
    
}
.cotainer_extra {
    max-width: 1440px;
    margin: 0 auto;
}

#menu-geo-menu {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#menu-geo-menu li a {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    color: #050F16;
    line-height: 130%;
    border-radius: 10px;
    background: var(--shade-color-shade-300, #E9F0F9);
    min-width: 223px;
    display: block;
    padding: 15px 24px;
        display: flex;
    align-items: center;
        transition: var(--global-transition);
}

.menu-list li a::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-left: 20px;
    background: url('/wp-content/uploads/2025/07/ri_arrow-up-line-2.svg') no-repeat center;
    background-size: contain;
}
#menu-geo-menu li a:hover {
    background: #245EFE;
    color: #fff;
        transition: var(--global-transition);
}
.menu-list li a:hover::after {
    content: '';
    filter: brightness(0) invert(1);
    transition: var(--global-transition);
}
.geo-menu-class {
    margin: 41px 0;
}
.geography_section .h2_title {
    text-align: center;
}



#menu-geo-menu li.current-menu-item a {
    background: #245EFE;
    color: #fff;
        transition: var(--global-transition);
}
.menu-list li.current-menu-item a::after {
    content: '';
    filter: brightness(0) invert(1);
    transition: var(--global-transition);
}
@media (max-width: 1025px) {
.geo-menu-class {
    margin: 16px 0 16px 0;
}
#menu-geo-menu {
    grid-template-columns: repeat(1, 1fr);
}
#menu-geo-menu li a {
    min-width: 100%;
}
#menu-geo-menu li a {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
#menu-geo-menu {
    gap: 12px;
}
 #menu-geo-menu li a {
    justify-content: space-between;
}
}
@media (max-width: 1281px) {
#menu-geo-menu {
    grid-template-columns: repeat(4, 1fr);
}
}
@media (max-width: 992px) {
#menu-geo-menu {
    grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width: 650px) {
#menu-geo-menu {
    grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 550px) {
#menu-geo-menu {
    grid-template-columns: repeat(1, 1fr);
}
.cotainer_extra {
    display: none;
}
}
@media (max-width: 768px) {
.faq-wrapper {
    gap: 0;
}
.page-template-geography .banner_hero {
 
}
}

.page-template-geography .hero h1 {
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}
.page-template-geography .text_hero p {
    max-width: 474px;
}

.main-navigation ul .col_2_menu.geo_menu_items_top ul a {
    min-width: 160px;
}
.col_2_menu.geo_menu_items_top .sub-menu {
    min-width: 345px;
}


#search-container input, #search-container select {
  border-radius: 101px;
  background: #E9F0F9;
  border: none;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 400;
  appearance: none; /* для стандартних стрілочок у select */
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
}

#search-container input::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-style: normal;
  color: #595959;
}



#search-container select option {
  background: #E9F0F9;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-style: normal;
  color: #000; 
}

#search-container button {
    color: #fff;
    border: none;
    padding: 10.7px 8px;
    cursor: pointer;
    font-weight: 400;
    border-radius: 101px;
    background: var(--primary-color-primary-100, #245EFE);
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    width: 130px;
        height: 43px;
}



#search-container {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    align-items: center;
        justify-content: space-between;
}

#search-container select {
  background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 40px; /* для іконки */
}



#currency-select li {
  cursor: pointer;
  padding: 8px 12px;
}

#currency-select li.active {
  background: #E9F0F9;
  border-radius: 101px;
}

.custom-dropdown {
  position: relative;
  width: 185px;
}

.dropdown-selected {
  border-radius: 101px;
  background: #E9F0F9;
    padding: 9.2px 16px;
  cursor: pointer;
    color: var(--shade-color-shade-500, #595959);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}


.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #E9F0F9;
    margin: 0;
    padding: 0;
    list-style: none;
    display: none;
    max-height: 228px;
    overflow-y: auto;
    z-index: 9;
}

.dropdown-options li {
  padding: 10px 20px;
  cursor: pointer;
}

.dropdown-options li:hover {
  background: #d0d7df;
}

.custom-dropdown.open .dropdown-options {
  display: block;
}

@media (max-width: 1024px) {
  .aside_footer .row {
    display: block; /* або flex/column */
  }
}
.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}
.owl-carousel.owl-loaded {
  display: block;
}
@media (max-width: 1275px) and (min-width: 1110px) {
.aside_footer .button_default {
    max-width: 230px;
}
}
@media (max-width: 1110px) and (min-width: 1024px) {
    .aside_footer .button_default {
        max-width: 210px;
    }
}
@media (max-width: 1025px) {
    .text_get_started p {
        margin-bottom: 24px;
    }
.aside_footer .owl-dots {
    margin-top: 24px;
}
}

#results_container .circle_img {
    background-color: #fff;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--global-transition);
    min-width: 54px;
    min-height: 54px;
}
#results_container .item_pay:hover .circle_img {
    background-color: #245EFE;
    transition: var(--global-transition);
}
#results_container .item_pay:hover .circle_img img {
    filter: brightness(0) invert(1);
    transition: var(--global-transition);
}
#results_container .flex_title_img {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 8px;
}
#results_container .flex_title_img::after {
    content: '';
    max-width: 100%;
}
#results_container {
    gap: 22px 22px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.item_pay {
    border-radius: var(--radius-desktopex-interior, 36px);
    background: rgba(233, 240, 249, 0.72);
    padding: 14px 16px 16px 16px;
    min-height: 285px;
    position: relative;
}
.icon_pay {
    position: absolute;
    bottom: 14px;
    right: 16px;
}
.all_payments_methods h2 {
    text-align: center;
    margin-top: 124px;
    margin-bottom: 24px;
}
#results_container .h3_title {
    text-transform: uppercase;
}
.dropdown-options li:hover {
    background: #245EFE;
    color: #fff;
}
#search-container input {
    background-image: url(/wp-content/uploads/2025/07/hugeicons_search-01.svg);
    background-repeat: no-repeat;
    background-position: 16px;
    padding-left: 47px;
        width: 100%;
    max-width: 100%;
}
.dropdown-selected {
    background-image: url(/wp-content/uploads/2025/07/arrow-filled-2.svg);
    background-repeat: no-repeat;
        background-position: right;
    background-position-x: calc(100% - 25px);
}

.border_divider {
    position: relative;
    margin-left: 19px;
    z-index: 1;
    margin-right: 24px;
}
.border_divider::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    height: 55px;
    background: linear-gradient(180deg, rgba(186, 197, 218, 0.00) 0%, rgba(186, 197, 218, 0.56) 47.4%, rgba(186, 197, 218, 0.00) 100%);
    pointer-events: none;
    z-index: -1;
    max-width: 1px;
    width: 2px;
}
#search-container {
    border-radius: var(--radius-desktopex-interior, 36px);
    background: var(--shade-color-shade-400, #FFF);
    box-shadow: 5px 5px 80px 0 rgba(88, 121, 155, 0.43);
    padding: 14px 13px 17px 13px;
}
#search-container input, #search-container select {
    height: 43px;
}
.dropdown-selected {
    height: 43px;
}
#search-container {
    margin-top: -32px;
    z-index: 9;
    position: relative;
}
.custom-dropdown.open .dropdown-options {
    margin-top: 17px;
}
.page-template-payments-methods section.tech {
    padding-bottom: 0;
}

@media (max-width: 1025px) {
#results_container {
    grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width: 840px) {
#results_container {
    grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 600px) {
#results_container {
    grid-template-columns: repeat(1, 1fr);
}
}
@media (max-width: 1025px) {
.custom-dropdown {
    position: relative;
    width: 100%;
}
#search-container input {
    padding-left: 45px;
    width: 100%;
    max-width: 100%;
}
#search-container {
    display: flex;
    gap: 12px;
}
.filter_by, .border_divider {
    display: none;
}
.custom-dropdown.open .dropdown-options {
    margin-top: 6px;
    border-radius: 16px;
}
#search-container button {
    width: 100%;
}
#search-container {
    padding: 24px 17px;
}
}
@media (max-width: 1285px) and (min-width: 1120px) {
#search-container input {
    max-width: 100%;
}
}
@media (max-width: 1120px) and (min-width: 1025px) {
#search-container input {
    max-width: 100%;
}
}
@media (max-width: 1025px) {
.item_pay {
    min-height: 232px;
}
}

.border_left {
    position: relative;
    z-index: 1;
}
.border_left::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -1px;
    height: 100%;
    background: linear-gradient(180deg, rgba(186, 197, 218, 0.00) 0%, rgba(186, 197, 218, 0.56) 47.4%, rgba(186, 197, 218, 0.00) 100%);
    pointer-events: none;
    z-index: -1;
    max-width: 1px;
    width: 2px;
}
.border_right {
    position: relative;
    z-index: 1;
}
.border_right::after {
    content: '';
    position: absolute;
    bottom: 0;
right: 0px;
    height: 100%;
    background: linear-gradient(180deg, rgba(186, 197, 218, 0.00) 0%, rgba(186, 197, 218, 0.56) 47.4%, rgba(186, 197, 218, 0.00) 100%);
    pointer-events: none;
    z-index: -1;
    max-width: 1px;
    width: 2px;
}
.block_flex_payment {
    display: flex;
    justify-content: space-between;
        align-items: center;
}
.block_flex_payment .col_flex_payment:first-child {
    width: 42%;
      min-width: 446px;
}

.block_flex_payment .col_flex_payment:last-child {
    width: 58%;
        padding-left: 24px;
}
.block_flex_payment .h2_title {
    max-width: 378px;
}
@media (max-width: 600px) {
    .aside_footer .row .col_items {
        max-width: 279px;
        margin: 0 auto;
    }
}
#search-button {
    transition: var(--global-transition);
}
#search-button:hover {
    background: rgba(233, 240, 249, 0.72);
    color: #245EFE;
    transition: var(--global-transition);
}
.flex_title {
    display: flex;
}
.circle_img_pay {
    background-color: #E9F0F9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    min-height: 76px;
    min-width: 76px;
    margin-right: 17px;
}
.flex_title_pay .button {
    min-width: 103px;
    border-radius: 101px;
    padding: 8px 8px;
}
.row_features {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-auto-flow: column;
    gap: 19px 28px;
    margin-top: 21px;
}
.block_cover_lg {
    padding: 24px;
    border-radius: var(--radius-desktopex-external, 60px);
    background: linear-gradient(180deg, #EBF2FF 0%, #D1DCF1 100%);
}
.block_cover_lg .block_flex_payment {
    border-radius: var(--radius-desktopex-interior, 36px);
    background: var(--shade-color-shade-transparent-40080, rgba(255, 255, 255, 0.80));
    box-shadow: 5px 5px 80px 0 #D4E2EF;
        padding: 22px 77px 38px 27px;
}
.block_title_pay p {
    margin-top: 9px;
}
.flex_title {
    align-items: center;
}
.flex_title {
    position: relative;
    z-index: 1;
    padding-bottom: 17px;
    margin-bottom: 29px;
}
.flex_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, rgba(186, 197, 218, 0.00) 0%, rgba(186, 197, 218, 0.56) 47.4%, rgba(186, 197, 218, 0.00) 100%);
    pointer-events: none;
    z-index: -1;
}
.col_details_pay_heading_flex {
    display: flex;
    gap: 9px;
}
.col_details_pay_heading_flex img {
    background-color: #E9F0F9;
    border-radius: 50%;
    width: 47px;
    height: 47px;
    padding: 11px;
        margin-top: 0;
}
.details_pay_heading_title {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    color: #06192C;
}
.details_pay_heading_text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #646464;
}
.row_details_pay {
    display: flex;
    gap: 59px;
}

.col_features {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #646464;
    gap: 12px;
    display: flex;
}
.check_img {
    width: 33px;
    height: 33px;
    display: flex;
    border-radius: 50%;
    background-color: #E9F0F9;
    padding: 12px;
}
.features_pay_details .block_flex_payment .col_flex_payment:first-child {
    padding-right: 21px;
}
.col_details_pay {
    width: 50%;
}
.top_align .block_flex_payment {
    align-items: start;
}
.related_payment_methods .h2_title {
    margin-bottom: 24px;
    text-align: center;
}
.related_payment_methods {
    padding-top: 48px;
    padding-bottom: 48px;
}
.related_payment_methods .button {
    max-width: 160px;
    margin: 0 auto;
    padding: 8px 8px;
    margin-top: 24px;
}
.padding_bottom_0 {
    padding-bottom: 0;
}
.block_title_pay {
    width: 100%;
}
@media (max-width: 1025px) {
.single-payment-methods .hero h1 {
        font-size: 27px;
        font-weight: 500;
    }
.text_hero p br {
    display: none;
 }
 .block_flex_payment {
    display: grid;
    gap: 16px;
}
.block_flex_payment .border_left::after {
    content: '';
    width: 0;
}
.block_flex_payment .col_flex_payment:last-child {
    width: 100%;
    padding-left: 0px;
}
.row_details_pay {
    gap: 39px;
}
.circle_img_pay {
    margin-right: 8px;
}
.block_cover_lg .block_flex_payment {
    padding: 26px 18px 42px 18px;
}
.block_cover_lg {
    padding: 10px;
    border-radius: 45px;
}
.block_title_pay p {
    margin-top: 6px;
    max-width: 150px;
}
.row_features {
    grid-template-rows: repeat(1, 1fr);
    grid-auto-flow: row;
    gap: 16px;
    margin-top: 24px;
}
.details_pay_heading_title {
    font-size: 10.5px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
}
.details_pay_heading_text {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.block_title_pay {
    width: fit-content;
}
.flex_title_pay .button {
    min-width: 103px;
    border-radius: 101px;
    padding: 0;
    font-size: 0px;
    background-image: url(/wp-content/uploads/2025/07/Group-1-1.svg);
    background-repeat: no-repeat;
    background-position: center;
    min-width: 51px;
    max-width: 51px;
    height: 51px;
    border-radius: 50%;
}
.block_flex_payment .col_flex_payment:first-child {
    width: 100%;
    min-width: 100%;
}
.features_pay_details .block_flex_payment .col_flex_payment:first-child {
    padding-right: 0;
}
.border_right::after {
    content: '';
    width: 0px;
}
.flex_title {
    padding-bottom: 19px;
    margin-bottom: 16px;
}
.flex_title {
        justify-content: space-between;
}
.block_flex_payment {
        gap: 40px;
 }
.description_payment_method  .block_flex_payment {
        gap: 10px;
    }
 .single-payment-methods .block_cover_lg {
        max-width: 500px;
        margin: 0 auto;
    } 
     
}

 .single-payment-methods .owl-dot {
    background-color: rgba(233, 240, 249, 0.72) !important;
}
 .single-payment-methods .owl-dot.active {
    background-color: #245EFE !important;
}
 .single-payment-methods .faq.margin_48 {
    margin-top: 25px;
}
@media (max-width: 1025px) {
 .single-payment-methods #results_container {
        display: block;
    }
 .single-payment-methods .faq.margin_48 {
    margin-top: 20px;
}
    .block_cover_lg .block_flex_payment {
        justify-content: center;
    }
}
 .single-payment-methods .text_hero p {
    max-width: 474px;
}
.col_flex_payment strong {
    color: #050F16;
    font-weight: 500;
}
@media (min-width: 1025px) {
.postid-1374 .row_features {
    grid-template-rows: repeat(2, 1fr);
}
.features_pay_details .block_flex_payment .col_flex_payment:last-child {
    margin-top: 12px;
}
.features_pay_details .block_flex_payment {
    align-items: start;
}
}
.circle_img_pay img {
    max-width: 67px;
}


/* Dropdown UL */
#currency-select, #country-select {
  list-style: none;
}

#currency-select li,
#country-select li {

  transition: background 0.2s;
}

#currency-select li.selected,
#country-select li.selected {

}

/* Loader overlay */
#results_wrapper {
  position: relative;
}

#results_loader {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 12px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top-color: #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.dropdown-options {
  display: none;
  position: absolute;
  border-radius: 0;
  overflow-y: auto;
  z-index: 999;
      margin-top: 17px;
}

.dropdown-options.show {
  display: block;
}



.col_2_menu.payment_row .sub-menu li:nth-child(1) { grid-column: 1; grid-row: 1; }
.col_2_menu.payment_row .sub-menu li:nth-child(2) { grid-column: 1; grid-row: 2; }
.col_2_menu.payment_row .sub-menu li:nth-child(3) { grid-column: 1; grid-row: 3; }
.col_2_menu.payment_row .sub-menu li:nth-child(4) { grid-column: 1; grid-row: 4; }
.col_2_menu.payment_row .sub-menu li:nth-child(5) { grid-column: 1; grid-row: 5; }
.col_2_menu.payment_row .sub-menu li:nth-child(6) { grid-column: 1; grid-row: 6; }
.col_2_menu.payment_row .sub-menu li:nth-child(7) { grid-column: 1; grid-row: 7; } 

.col_2_menu.payment_row .sub-menu li:nth-child(8) { grid-column: 2; grid-row: 1; }
.col_2_menu.payment_row .sub-menu li:nth-child(9) { grid-column: 2; grid-row: 2; }
.col_2_menu.payment_row .sub-menu li:nth-child(10){ grid-column: 2; grid-row: 3; }
.col_2_menu.payment_row .sub-menu li:nth-child(11){ grid-column: 2; grid-row: 4; }
.col_2_menu.payment_row .sub-menu li:nth-child(12){ grid-column: 2; grid-row: 5; }
.col_2_menu.payment_row .sub-menu li:nth-child(13){ grid-column: 2; grid-row: 6; }
.col_2_menu.payment_row .sub-menu li:nth-child(14){ grid-column: 2; grid-row: 7; }

.col_2_menu.payment_row .sub-menu li:nth-child(15){ grid-column: 3; grid-row: 1; }
.col_2_menu.payment_row .sub-menu li:nth-child(16){ grid-column: 3; grid-row: 2; }
.col_2_menu.payment_row .sub-menu li:nth-child(17){ grid-column: 3; grid-row: 3; }
.col_2_menu.payment_row .sub-menu li:nth-child(18){ grid-column: 3; grid-row: 4; }

.col_2_menu.payment_row .sub-menu li:nth-child(19){ grid-column: 4; grid-row: 1; }
.col_2_menu.payment_row .sub-menu li:nth-child(20){ grid-column: 4; grid-row: 2; }
.col_2_menu.payment_row .sub-menu li:nth-child(21){ grid-column: 4; grid-row: 3; }


.col_2_menu.payment_row .sub-menu li:nth-child(22){ grid-column: 5; grid-row: 1; }
.col_2_menu.payment_row .sub-menu li:nth-child(23){ grid-column: 5; grid-row: 2; }

.col_2_menu.payment_row .sub-menu {
    margin-left: -395px;
}
.main-navigation ul .col_2_menu.payment_row ul a {
    min-width: 160px;
}
.transparent_item  {
    opacity: 0 !important;
}
@media (max-width:1025px) {
.col_2_menu.payment_row .sub-menu {
    margin-left: 0;
}
#primary-menu .col_2_menu.payment_row li {
        width: 50%;
}
#primary-menu .col_2_menu.payment_row li.disabled_item  {
    clear: both;
    display: block;
    width: 100%;
}
}
@media (min-width:1025px) {
#primary-menu {
    margin-bottom: -7px;
}
.main-navigation li {
    padding-bottom: 16px;
}
}
@media (min-width: 1025px) {
.page-template-about-us .text_hero, .page-template-contact-us .text_hero, .page-template-conference .text_hero   {
    padding-right: 80px;
}
}
.get_started .row {
    display: flex;
    gap: 11px;
    align-items: center;
}
.get_started .row .col:first-child {
    max-width: 354px;
    text-align: center;
}
.get_started .row .col:last-child {
    gap: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.item_strated {
    padding: 28px 21px 50px 21px;
    border-radius: 36px;
    background: #fff;
    box-shadow: 5px 5px 80px 0px rgba(88, 121, 155, 0.43);
    position: relative;
}
.item_strated .h3_title {
    padding-bottom: 16px;
    margin-bottom: 16px;
}
.desc_number {
    color:  #E9F0F9;
    font-family: "Schibsted Grotesk";
    font-size: 96px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    text-transform: uppercase;
    position: absolute;
    z-index: 0;
    bottom: -27px;
    right: 50px;
}
.item_strated  .desc_offer p {
    z-index: 1;
    position: relative;
}
@media (max-width: 1025px) {
.get_started .row {
    display: grid;
    gap: 10px;
}
.get_started .row .col:last-child {
    gap: 12px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}
.desc_number {
    right: 26px;
}
.page-template-about-us .hero .row .col:last-child img, .page-template-contact-us .hero .row .col:last-child img {
        max-width: 438px;
         margin-bottom: -50px;
}
.page-template-about-us .banner_hero, .page-template-contact-us .banner_hero {
    overflow: hidden;
}
.page-template-about-us .offers article.col {
    padding: 16px 16px 31px 16px;
    border-radius: 35px;
}
    .offers .row .flex_title_img .circle_img {
        min-width: 48px;
        min-height: 48px;
    }
.get_started  .offers_cover {
        padding-top: 35px;
         padding-bottom: 16px;
}
}


.aside_footer_partners.have_a_questions .row .col:last-child img {
    right: -122px;
}
.aside_footer_partners.have_a_questions {
    overflow: hidden;
}
.aside_footer_partners.have_a_questions .cotainer {
    position: relative; 
}
.flex_button {
    display: flex;
    gap: 11px;
}
.aside_footer_partners.have_a_questions .row .col:first-child {
    max-width: 497px;
    min-width: 497px;
}

@media (max-width: 1025px) {
.aside_footer_partners.have_a_questions .text_get_started {
        max-width: 100%;
        margin: 0 auto;
    }
 .aside_footer_partners.have_a_questions .row .col:last-child img {
    right: 0;
}
.flex_button {
    display: grid;
    gap: 16px;
}
.aside_footer_partners.have_a_questions .row .col:first-child {
    max-width: 100%;
    min-width: 100%;
}
}


.page-template-contact-us .offers .row {
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}
.page-template-contact-us  .offers .row .flex_title_img .circle_img {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
}
.flex_title_img.contact_page_item {
    display: flex;
    justify-content: end;
    margin-bottom: 36px;
}
.offers .row .flex_title_img.contact_page_item:hover .circle_img {
    background-color: #E9F0F9;
}
.offers article .flex_title_img.contact_page_item a:hover .circle_img img {
    filter: none;
}
.flex_title_img.contact_page_item::after {
    content: '';
    height: 0px;
}
.page-template-contact-us article a  {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-decoration-line: underline;
    color: #595959;
}
.page-template-contact-us .offers_cover {
    background-image: url(/wp-content/uploads/2025/07/bg-3.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
@media (max-width: 1025px) {
.flex_title_img.contact_page_item {
    margin-bottom: 17px;
}
.page-template-contact-us .offers .row .flex_title_img .circle_img {
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
     padding: 12px;
}
.page-template-contact-us .offers.first_full article.col {
    padding: 24px 20px 20px 20px;
}
.page-template-contact-us .offers.first_full .owl-dots {
        margin-top: 20px;
    }
.page-template-contact-us .offers_cover {
     background: var(--gradient-200, linear-gradient(115deg, #EBF2FF 5.53%, #F3F7FF 16.29%, #EEF4FE 28.79%, #D9E3F6 36.64%, #F3F7FF 46.53%, #EFF5FF 54.96%, #D1DCF1 66.01%));
} 
}
@media (min-width: 1025px) {
.page-template-contact-us .offers.first_full article.col {
    padding: 17px 25px 57px 25px;
    min-height: 281px;
}
}

.custom-slider-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin: auto;
}

.tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tab {
    border-radius: var(--radius-desktopex-interior, 36px);
    background: rgba(233, 240, 249, 0.72);
  padding: 10px;
    border: 1px solid rgba(233, 240, 249, 0.72);
  cursor: pointer;
  transition: 0.3s;
    min-width: 480px;
}

.tab:hover, .tab.active {
    background: #e0e9ff;
    border-radius: var(--radius-desktopex-interior, 36px);
    border: 1px solid var(--primary-color-primary-transparent-10020, rgba(36, 94, 254, 0.20));
    background: var(--primary-color-primary-transparent-10010, rgba(36, 94, 254, 0.10));
}



.slider {
  width: 100%;
  max-width: 678px;
}

.slide img {
  width: 100%;
  border-radius: 20px;
}

.flex_item_event {
    display: flex;
    gap: 21px;
}
.col_item_event:first-child {
    padding: 18.5px 17px 15px 17px;
    border-radius: 28px;
    background:  #FFF;
   /* box-shadow: 5px 5px 80px 0 #D4E2EF; */
    text-align: center;
}
.event_date_short {
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    color: #050F16;
    display: block;
}
.event_month {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #595959;
}
.event_title {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    color: #050F16 !important;
    display: block;
}
.flex_inner {
    display: flex;
    gap: 27px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 10px;
}
.event_location {
    display: flex;
    align-items: center;
    gap: 4px;
}
.col_item_event:last-child span {
    color: #595959;
}
.event_date_short {
    position: relative;
    z-index: 1;
    padding-bottom: 10px;
    margin-bottom: 5px;
}
.event_date_short::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, rgba(186, 197, 218, 0.00) 0%, rgba(186, 197, 218, 0.56) 47.4%, rgba(186, 197, 218, 0.00) 100%);
    pointer-events: none;
    z-index: -1;
}
.event_date_full {
    display: flex;
    align-items: center;
    gap: 4px;
}
.event_title {
    padding-top: 14px;
}

.custom-slider-wrapper .owl-carousel .owl-item img {
    border-radius: 36px;
}
.custom-slider-wrapper .owl-dot {
    background-color: #E1E1E1 !important;
}
.custom-slider-wrapper .owl-dot.active {
    background-color: #245EFE !important;
}
.custom-slider-wrapper .owl-dots {
    justify-content: left;
    margin-left: 40px;
    margin-top: 30px;
}
.conference_section .h2_title {
    text-align: center;
    margin-bottom: 30px;
}
.gallery_section .owl-next {
    background-image: url(/wp-content/uploads/2025/07/ri_arrow-up-line-3-1.svg)!important;
    font-size: 0!important;
    width: 36px!important;
    height: 36px!important;
    background-repeat: no-repeat!important;
    background-position: center!important;
    border-radius: 50%!important;
    background-color: var(--shade-color-shade-300, #E9F0F9)!important;
    padding: 6px !important;
}
.gallery_section .owl-prev {
    background-image: url(/wp-content/uploads/2025/07/ri_arrow-up-line-2-1.svg)!important;
    font-size: 0!important;
    width: 36px!important;
    height: 36px!important;
    background-repeat: no-repeat!important;
    background-position: center!important;
    border-radius: 50%!important;
    background-color:  #E9F0F9!important;
    padding: 6px !important;
}

.gallery_section .owl-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}
.gallery_section .h2_title {
    text-align: center;
    margin-bottom: 24px;
}
.gallery_section .owl-dot {
    background-color: #E1E1E1 !important;
}
.gallery_section .owl-dot.active {
    background-color: #245EFE !important;
}
.gallery_section .owl-dots {
    margin-top: -20px;
}
.margin_bottom_48 {
    margin-bottom: 48px;
}

@media (max-width: 1025px) {
.custom-slider-wrapper {
    display: grid;
}
.tab {
    min-width: 100%;
}
.custom-slider-wrapper .slider {
    display: none !important;
}
.col_item_event:first-child {
    min-width: 92px;
}
.col_item_event:first-child {
    min-width: 92px;
    margin-bottom: 19px;
}
.event_name {
    color: #595959;
    display: flex;
    align-items: center;
}
.tab {
    padding: 10px 10px 21px 10px;
}
.flex_inner {
    display: grid;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 10px;
}
.tab:hover, .tab.active {
    border-radius: var(--radius-desktopex-interior, 36px);
    border: 1px solid rgba(233, 240, 249, 0.72);
    background: rgba(233, 240, 249, 0.72);
}
.conference_section .h2_title {
    margin-bottom: 18px;
}
.tabs {
    gap: 18px;
}
.event_date_short {
    padding-bottom: 17px;
}
.gallery_section .h2_title {
    margin-bottom: 16px;
}
}
.event_name {
    display: flex;
    align-items: center;
    gap: 4px;
}
@media (max-width:1260px) and (min-width: 1170px) {
.slider {
    max-width: 640px;
}
}
@media (max-width:1170px) and (min-width: 1070px) {
.slider {
    max-width: 540px;
}
}
.blog_index .banner_hero {
    height: 436px;
    text-align: center;
    width: 100%;
}
.blog_index .hero .row {
    justify-content: center;

}

.blog_index .breadcrumbs_section {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.post_tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 13px;
}
.blog_index .hero .row .col:first-child {
    max-width: 752px;
    margin-top: 125px;
}
.post_tags a {
    border-radius: 101px;
    border: 1px solid var(--shade-color-shade-transparent-60052, rgba(255, 255, 255, 0.05));
    background: var(--shade-color-shade-transparent-500102, rgba(255, 255, 255, 0.10));
    padding: 8px 18px;
    color: #fff;
    display: flex;
    height: 43px;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; 
      min-width: 91px;
}
.post_tags a.active {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    color: #fff;
    border-radius: 101px;
    border: 1px solid var(--shade-color-shade-transparent-60052, rgba(255, 255, 255, 0.05));
    background: #245EFE;
    padding: 8px 18px;
    color: #fff;
    display: flex;
    height: 43px;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 91px;
}
.post_tags a:hover {
    background: #245EFE;
}
.blog_index .text_hero p {
margin: 10px auto 16px auto;
}
.blog_index #breadcrumbs {
    margin-bottom: 16px;
}
.blog_index #breadcrumbs .breadcrumb_last {
    padding: 0 26px;
}
.blog_index .page-numbers {
    display: none !important;
}
.blog_index .next.page-numbers {
    display: block !important;
}
.pagination .button {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    text-transform: uppercase;
    max-width: 137px;
    margin: 0 auto;
    margin-top: 40px;
}
.wpcf7 input[type="email"] {
    border-radius: 50px;
    border: 1px solid var(--border-gradient-400, rgba(186, 197, 218, 0.00));
    background: var(--shade-color-shade-transparent-500102, rgba(255, 255, 255, 0.10));
    outline: none;
    padding: 9px 25px;
    height: 43px;
    color: rgba(255, 255, 255, 0.80);
        max-width: 258px;
}
.col_form_flex .button {
    outline: none;
    border: 0px;
        cursor: pointer;
}
.form_flex {
    display: flex;
    gap: 11px;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: rgba(255, 255, 255, 0.80);
}
::-moz-placeholder { /* Firefox 19+ */
    color: rgba(255, 255, 255, 0.80);
}
:-ms-input-placeholder { /* IE 10+ */
    color: rgba(255, 255, 255, 0.80);
}
:-moz-placeholder { /* Firefox 18- */
    color: rgba(255, 255, 255, 0.80);
}

.wpcf7-not-valid-tip {
    display: block;
    position: absolute;
    top: 13px;
    font-size: 11px;
    left: 25px;
}
.wpcf7-spinner {
    position: absolute;
}
.policy_text p {
    margin: 0 !important;
}
.policy_text p a {
   text-decoration: underline;
   color: #fff !important
}
.wpcf7 form.invalid .wpcf7-response-output {
    display: none;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: transparent;
    border: 0px;
    color: #fff;
    margin: 15px 0 0 0;
    padding: 0;
    font-size: 16px;
}

.col_form_flex:first-child p {
    z-index: 0;
        position: relative;
}
.col_form_flex p::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    background: var(--border-gradient-400);
    border-radius: 60px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
        max-width: 258px;
    margin: 0 auto;
}

@media (max-width: 1025px) {
.post_tags a {
    font-size: 12px;
    min-width: 91px;
    padding: 8px 4px;
    height: 34px;
}
.post_tags a.active {
    font-size: 12px;
    min-width: 91px;
    padding: 8px 4px;
    height: 34px;
}
.blog_index .banner_hero {
    height: 508px;
}
.blog_index  .post_items {
        margin-top: 0;
    }
.post_items {
    gap: 36px;
}
.form_flex {
    display: grid;
    gap: 16px;
}
.col_form_flex .button {
    text-align: center;
    margin: 0 auto;
}
.form_flex {
        margin-top: 16px;
 }
 .policy_text {
    margin-top: 16px;
}
.col_form_flex p {
    margin: 0 !important;
}
}

.description_payment_method .h3_title {
    text-transform: uppercase;
}

.single-post .blog_index .hero .row .col:first-child {
    max-width: 874px;
}
.single-post .blog_index .banner_hero {
    height: -webkit-fill-available;
    padding-bottom: 85px;
}
.post_tags {
    align-items: center;
}
.post_date {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #fff;
}
.cat_section_post {
    margin-top: 16px;
}
.single-post .blog_index #breadcrumbs .breadcrumb_last {
    padding: 0 8px;
}
.single-post .post_items {
    gap: 42px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 0;
}
.blog_content .row {
    display: flex;
    gap: 17px;
}
.blog_content .row .col:last-child {
    width: 380px;
    min-width: 380px;
}

.blog_content h1, .blog_content h2, .blog_content h3, .blog_content h4, .blog_content h5, .blog_content h6  {
    margin-top: 48px;
    margin-bottom: 10px;
}
 .blog_content h1 strong, .blog_content h2 strong, .blog_content h3 strong, .blog_content h4 strong, .blog_content h5 strong, .blog_content h6 strong  { 
    font-weight: 400;
}
.blog_content h3, .blog_content h4 {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%; 
}
.blog_content h5, .blog_content h6 {
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%; 
}
.blog_content h2 {
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}
.blog_content img {
    width: 100%;
    border-radius: 36px;
}
.blog_content p {
    margin: 15px 0;
}
.blog_content .col:first-child a {
    color: #595959;
    text-decoration: underline;
}
@media (max-width: 1025px) {
.blog_content .row {
    display: grid;
    gap: 91px;
}
.single-post .blog_index #breadcrumbs {
    overflow: hidden;
}
.blog_content h2 {
    font-size: 27px;
}
.blog_content h3, .blog_content h4, .blog_content h5, .blog_content h6 {
    font-size: 18px;
}
.blog_content h1, .blog_content h2, .blog_content h3, .blog_content h4, .blog_content h5, .blog_content h6 {
    margin-top: 24px;
}
.blog_content .row .col:last-child {
    width: 100%;
    min-width: 100%;
}
.page-template-faq-page .faq-wrapper {
        padding: 15px;
    }
}
@media (max-width: 1025px) and (min-width: 767px) {
.single-post .post_items {
    grid-template-columns: repeat(2, 1fr);
}
}
.page-template-faq-page .blog_index #breadcrumbs .breadcrumb_last {
    padding: 0 16px 0 12px;
}
.faq-wrapper.single-column .faq-column {
    width: 100%;
}
.page-template-faq-page .text_get_started .flex_button a:last-child{
    display: none;
}

.faq-wrapper.search_completed {
    gap: 0;
}
.border_grarient {
    z-index: 0;
    position: relative;
}
.border_grarient::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    background: var(--border-gradient-400);
    border-radius: 60px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
   max-width: 451px;
    margin: 0 auto;
}
.faq-search-block button {
    color: #fff;
    border: none;
    padding: 10.7px 8px;
    cursor: pointer;
    font-weight: 400;
    border-radius: 101px;
    background: var(--primary-color-primary-100, #245EFE);
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    width: 130px;
    height: 43px;
    transition: var(--global-transition);
}
.faq-search-block button:hover {
    background: #fff;
    color: #245EFE;
    transition: var(--global-transition);
}
.faq-search-block input{
    border-radius: 50px;
    border: 1px solid var(--border-gradient-400, rgba(186, 197, 218, 0.00));
    background: var(--shade-color-shade-transparent-500102, rgba(255, 255, 255, 0.10));
    outline: none;
    padding: 10px 20px;
    height: 43px;
    width: 451px;
    color: #fff;
}
.faq-search-block {
    display: flex;
    gap: 24px;
    margin-top: 24px;
}
@media (max-width: 1025px) {
.faq-search-block {
    display: grid;
    gap: 16px;
    margin-top: 16px;
           justify-items: center;
}
.faq-search-block input {
    width: 100%;
         min-width: 330px;
}
}
.page-template-faq-page .faq-section:first-child {
    padding-top: 0px;
}
@media (min-width: 1150px) {
.hero .row .col:first-child {
    min-width: 470px;
}
}
@media (max-width: 500px) {
 .hero.error-404 .row .col:last-child img {
        position: absolute;
        bottom: 60px;
        right: 0;
        max-width: 90%;
        left: 50%;
        transform: translate(-50%);
    }
}

.blog_items_section .post_excerpt {
    line-height: 150%;
    color: #595959;
}

.page-template-security-information-php .offers .h3_title {
    max-width: 379px;
    padding-bottom: 16px;
}
@media (max-width: 1025px) {
.page-template-security-information-php .offers .row .col:first-child {
    display: grid;
    max-width: 100%;
}
.page-template-security-information-php .offers .h3_title {
    max-width: 100%;
    padding-bottom: 12px;
}
.page-template-security-information-php .offers_cover {
        padding: 39px 17px 40px 17px;
    }
}

.items_routing .smart_routing:nth-child(2n) .row .col_with_image  {
    order: 2;
}
.items_routing .smart_routing:nth-child(2n) .row .col_with_text  {
    order: 1;
}

.blog_content .row .col:last-child .post_items .h3_title {
    margin-top: 0;
}
.offers article.col.hover_style {
    box-shadow: none;
    transition: var(--global-transition);
}
.offers article.col.hover_style:hover {
    box-shadow: 5px 5px 80px 0px rgba(88, 121, 155, 0.43);
    transition: var(--global-transition);
}

@media (max-width: 500px) {
.page-template-geography .hero {
    overflow: hidden;
}
.page-template-geography .hero .row .col:last-child img {
        bottom: -96px;
        width: 100%;
        right: -60px;
        max-width: 500px;
        width: 500px;
        overflow: hidden;
    }
}
@media (min-width: 1025px) {
.img-hover {
 opacity: 0;
	transition: var(--global-transition);
}
.home .services_item_art:hover .img-hover {
opacity: 1;
	transition: var(--global-transition);
}
.home .services_item_art:hover .img-default {
  opacity: 0;
	transition: var(--global-transition);
}
.home .business_optimization .circle_img_ img {
    position: absolute;
}
.home .services_heading.business_optimization .services_item_art {
    min-height: 186px;
}
}

@media (max-width: 1025px) {
.img-hover {
display: none;
}
}
.services_heading .services_items_grid  .services_item_art {
    transition: var(--global-transition);
}

.services_heading .services_items_grid  .services_item_art:hover {
    box-shadow: 5px 5px 80px 0px rgba(88, 121, 155, 0.43);
    transition: var(--global-transition);
}
.item_pay {
	  transition: var(--global-transition);
}

.item_pay:hover {
    background: #fff;
	  transition: var(--global-transition);
    box-shadow: 5px 5px 80px 0px rgba(88, 121, 155, 0.43);
}

@media (max-width: 768px) {
    #search-container {
        flex-wrap: wrap;
    }
}
.TrengoWidgetLauncher__iframe.TrengoWidget--position-left {
    left: auto !important;
    right: 20px !important;
}
.TrengoWidgetPanel__iframe.TrengoWidget--position-left {
        right: 20px !important;
  left: auto !important;
}
@media (min-width: 1025px) {
.aside_footer .row .col_items .h3_title {
    min-height: 79px;
}
}
@media (min-width: 1025px) {
.custom-slider-wrapper .tabs {
    overflow-x: hidden;
    max-height: 444px;
	padding-right: 11px;
}
.custom-slider-wrapper .flex_inner, .custom-slider-wrapper .event_name  {
    font-size: 14px;
}
.custom-slider-wrapper {
    gap: 11px;
}
}


.custom-slider-wrapper ::-webkit-scrollbar {
  width: 5px;
border-radius: 10px;
	margin: 10px;
}

.custom-slider-wrapper ::-webkit-scrollbar-track {
  background: #888; 
	border-radius: 10px;
}
 
.custom-slider-wrapper ::-webkit-scrollbar-thumb {
  background: #245EFE; 
		border-radius: 10px;
}
.sec_info.full {
    max-width: 370px;
    display: flex;
    gap: 0px 20px;
    flex-wrap: wrap;
}

.hero .row .col:first-child .button {
    max-width: 137px;
}
@media (max-width: 1025px) {
    .sec_info {
        display: flex;
        flex-wrap: wrap;
        gap: 3px 20px;
        justify-content: center;
    }
.hero .row .col:first-child .button {
    text-align: center;
    margin: 0 auto;
}
}

.page-template-additional-template .text_hero {
    margin-bottom: 24px;
}
@media (max-width: 1095px) and (min-width: 1025px) {
.main-navigation a {
    font-size: 12px;
}
}
@media (max-width: 1024px) {
    .hero .row .col:last-child img {
        left: 50%;
        transform: translateX(-50%);
    }
}
@media (width: 1025px) {
    .hero .row .col:first-child {
        margin: 0 auto;
                margin-top: 123px;
    }
        .hero .row .col:last-child img {
        left: 50%;
        transform: translateX(-50%);
    }
    .page-template-about-us .text_hero, .page-template-contact-us .text_hero, .page-template-conference .text_hero {
        padding-right: 0;
    }
}
@media (min-width: 1025px) {
	.hero .row .col:last-child img{
		max-width: 780px;
}
}