@import url("https://use.typekit.net/pgn6vyc.css");

@font-face {
  font-family: "SegoeUI";
  src: url("../fonts/SegoeUI.woff") format("woff");
}

@font-face {
  font-family: "SegoeUI-SemiBold";
  src: url("../fonts/SegoeUI-SemiBold.woff") format("woff");
}

@font-face {
  font-family: "SegoeUI-Bold";
  src: url("../fonts/SegoeUI-Bold.woff") format("woff");
}

@font-face {
  font-family: "SegoeUI-Light";
  src: url("../fonts/SegoeUI-Light.woff") format("woff");
}

:root {
  --general: #1A3A57;
  --additional-color: #00B1C7;
  --additional-color-2: rgba(98, 171, 181, 0.1);
  --white: #fff;
  --swiper-preloader-color: var(--additional-color);
  --transition-prop: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
}

/*------ Preloader --------*/ 

@keyframes s {from {transform: scale(1);}to {transform: scale(1.2);}}
.preloader {width:100vw;height:100vh;position:fixed;background:#FFFFFF;display:flex;align-items:center;justify-content:center;z-index:99999999;pointer-events:none;opacity:0;left:0;right:0;top:0;transition:all 0.3s cubic-bezier(0.950, 0.050, 0.795, 0.035);}
.preloader img {position:relative;z-index:9999999999;animation: s 0.5s cubic-bezier(0.600, 0, 0.735, 0.045) infinite alternate;}
.preloader.open {opacity:1;pointer-events:none;}

html,
body {
  color: var(--general);
  font-size: 22px;
  line-height: 1.45;
  width: 100%;
  background-color: #fff;
  font-family: "SegoeUI", sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: #fff;
  background: var(--additional-color);
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  margin: 0;
  opacity: 1;
  transition: var(--transition-prop);
}

body.effect {
  opacity: 0;
}

body.effect main {
  transform: scale(0.99);
}

input,
button {
  outline: none;
  box-shadow: none;
}

@media (min-width : 991px) {
  ::-webkit-scrollbar {
    width: 7px;
    height: 5px;
    background-color: #fff;
  }

  ::-webkit-scrollbar-thumb {
    background: var(--additional-color);
    border-radius: 10px;
    box-shadow: 0 0 3px rgba(0, 0, 0, .1);
  }

  ::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: rgb(243, 243, 243);
  }

}

input:-ms-input-placeholder {
  color: var(--general);
  opacity: 0.7;
}

input::-moz-placeholder {
  color: var(--general);
  opacity: 0.7;
}

input:-moz-placeholder {
  color: var(--general);
  opacity: 0.7;
}

input::-webkit-input-placeholder {
  color: var(--general);
  opacity: 0.7;
}

textarea::-webkit-input-placeholder {
  color: var(--general);
  opacity: 0.7;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  transition: var(--transition-prop);
}

a:hover {
  text-decoration: none;
}

li {
  list-style-type: none;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  opacity: 0.8;
}

p a {
  color: var(--additional-color);
}

p a:hover {
  opacity: 0.8;
}

small {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

img {
  display: block;
}

button,
input {
  overflow: visible;
}

.pt-0 {
  padding-top: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.m-0 {
  margin: 0 !important;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.form-group {
  position: relative;
  margin-bottom: max(1.3vw, 10px);
}

.form-group label {
  display: block;
  padding: 0 0 5px;
  line-height: 1.2;
}

.form-control {
  display: block;
  width: 100%;
  font-size: max(90%, 15px);
  color: rgba(26, 57, 87, 0.61);
  padding: max(1.13vw, 12px) max(2vw, 15px);
  background-color: var(--white);
  border: 1px solid transparent;
  border-radius: 5px;
  box-shadow: none;
  margin: 0;
  line-height: 1;
  transition: var(--transition-prop);
}

textarea.form-control {
  line-height: 1.3;
}

.form-control.error {
  color: #D44545;
  border-color: #D44545;
}

.form-control.error::placeholder {
  color: #D44545;
}

.form-control:disabled {
  opacity: 0.25;
}

.form-control:not(.white):focus {
  border-color: var(--general);
}

select.form-control {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background: var(--white) right 1.4em top 50% / 0.85em auto no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='9' viewBox='0 0 17 9'%3E%3Cpath d='M8.5,0,17,9H0Z' transform='translate(17 9) rotate(180)' fill='%2300b1c7'/%3E%3C/svg%3E");
  padding: max(1.3vw, 14px) max(3vw, 40px) max(1.3vw, 14px) max(2vw, 15px);
  line-height: 1.2;
}

select option {
  color: var(--general);
}

dl,
ol,
ul {
  margin: 0;
  padding: 0;
}

button,
.btn {
  width: auto;
  font-size: 90%;
  padding: 0.66em 1.8em;
  color: var(--general);
  background-color: var(--additional-color);
  border: 2px solid var(--additional-color);
  position: relative;
  text-decoration: none;
  border-radius: 37px;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  margin: 0;
  outline: none;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  align-self: center;
  font-family: "SegoeUI-SemiBold", sans-serif;
  line-height: 1;
  transition: var(--transition-prop);
}

button:hover,
button:focus,
.btn:hover,
.btn:focus {
  color: var(--white);
  background-color: var(--additional-color);
  border-color: var(--white);
}

button:active,
.btn:active {
  transform: scale(0.95);
}

.btn .ripple-wave {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  border-radius: 50%;
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  background: var(--white) !important;
  opacity: 0.45;
  -webkit-animation: ripple 2s forwards;
  animation: ripple 2s forwards;
  pointer-events: none;
  z-index: 0;
}

.btn.btn-light .ripple-wave {
  background: var(--general) !important;
}

@-webkit-keyframes ripple {
  to {
    -webkit-transform: scale(24);
    transform: scale(24);
    opacity: 0;
  }
}

@keyframes ripple {
  to {
    -webkit-transform: scale(24);
    transform: scale(24);
    opacity: 0;
  }
}

button:active,
.btn:active {
  transform: scale(0.95);
}

/* btn is-icon */
.btn.is-icon {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  grid-gap: 12px;
}

.btn.is-icon:hover svg path {
  transition: var(--transition-prop);
}

.btn.is-icon:hover svg path {
  fill: var(--white);
}

.btn.btn-light.is-icon:hover svg path {
  fill: var(--general);
}

.btn.is-icon span {
  align-self: center;
}

/* btn-light */
.btn.btn-light {
  color: var(--general);
  border: 1px solid var(--white);
  background-color: var(--white);
}

.btn.btn-light:hover {
  border-color: var(--additional-color);
}

.btn-double-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: max(0.7vw, 10px);
  margin: max(2.5vw, 20px) 0;
}

/* btn-page-wrap */
.btn-page-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  width: 100%;
  margin-top: max(4vw, 15px);
}

.btn-page-wrap.center {
  text-align: center;
  justify-content: center;
}

.btn-page-wrap.right {
  text-align: right;
  justify-content: flex-end;
}

.container {
  width: min(96%, 1650px);
  margin: 0 auto;
  padding: 0 15px;
}

.container.full {
  width: 100%;
  padding: 0;
}

.container.small {
  width: min(96%, 1330px);
}

.container.small.contactPage {
	width: min(96%, 1750px);
}

.contact-items-block {
	margin-left: 20%;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  line-height: 1.1;
  letter-spacing: 0.005em;
  margin-bottom: max(1.5vw, 15px);
  font-weight: 300;
  font-family: aw-conqueror-sans, sans-serif;
}

h1,
.title-page {
  font-size: 363%;
}

h2,
.title-section {
  font-size: 227%;
}

h3,
.title-block {
  font-size: 154%;
}

.center {
  text-align: center;
}


strong {
  font-weight: bold;
}

.w-100 {
  width: 100%;
}

main {
  position: relative;
  min-height: 50vh;
  padding-top: 90px;
  transition: var(--transition-prop);
}

.container-visible {
  overflow: visible;
}


.hidden {
  display: none !important;
}

section {
  position: relative;
  overflow: hidden;
}

.color-bg {
  background-color: var(--additional-color-2);
}

.color-bg-dark {
  background-color: var(--additional-color);
}

.coll-2,
.coll-3,
.coll-4,
.coll-5,
.coll-6 {
  display: grid;
  grid-template-rows: repeat(auto-fill, minmax(0, 1fr));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: max(3vw, 15px);
  width: 100%;
  margin: max(3vw, 40px) 0;
}

.coll-1 {
  display: grid !important;
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}

.coll-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.coll-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.coll-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.coll-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.form-group-double {
  gap: max(1.5vw, 10px);
  margin: 0;
}

.swiper-scrollbar {
  width: 100% !important;
  position: relative !important;
  height: 4px !important;
  left: 0 !important;
  bottom: 0 !important;
  margin-top: 20px;
}

.general-carousel .swiper-scrollbar {
  display: none;
}


/* header */
header {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: var(--transition-prop);
  box-shadow: 0px 2px 12px 0px rgba(0, 37, 69, 0.05);
}

header.scroll {
  -webkit-box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.2);
}

header.scroll .navbar-top {
  padding: 10px max(2.5vw, 15px);
}

header .navbar-brand {
  position: relative;
  width: 180px;
  height: auto;
  z-index: 10;
  transition: var(--transition-prop);
}

.navbar-brand:hover {
  opacity: 0.8;
}

.navbar-brand img,
.navbar-brand svg {
  display: block;
  width: 120%;
  height: auto;
}

.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px max(2.5vw, 15px);
  margin: 0 auto;
  background-color: var(--white);
  transition: all 0.2s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.navbar-top-menu-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

.navbar-right-side {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.top-mnu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  margin: 0;
  color: var(--general);
  font-family: "SegoeUI-Light", sans-serif;
  width: 100%;
}

.top-mnu li {
  width: 100%;
  margin: 0 max(1.2vw, 10px);
  line-height: 1;
}

.top-mnu li a {
  position: relative;
  font-size: 83%;
  padding: max(0.5vw, 5px) 0;
  white-space: nowrap;
  margin: 3px 0;
  line-height: 1;
  transition: var(--transition-prop);
}

.top-mnu li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--additional-color);
  transition: var(--transition-prop);
}

.top-mnu li a:hover,
.top-mnu li.active a {
  color: var(--general);
}

.top-mnu li a:hover::before,
.top-mnu li.active a::before {
  width: 100%;
}

.header-right-actions {
  display: grid;
  grid-template-columns: max-content max-content;
  grid-gap: max(1.3vw, 10px);
  margin-left: max(2.5vw, 20px);
}

.header-right-actions .btn {
  font-size: max(73%, 14px);
}

.lng-block {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: max(82%, 14px);
  width: 41px;
  height: 41px;
  border-radius: 50%;
  color: var(--additional-color);
  border: 1px solid var(--additional-color);
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
  box-sizing: border-box;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: var(--additional-color);
  display: block;
  margin: 2px auto;
  transition: all 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.hamburger span:first-child {
  transform-origin: 0% 0%;
}

.hamburger span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

.navbar-top.toggle .hamburger span:nth-child(1),
.hamburger.active span:nth-child(1) {
  transform: translateY(0) translateX(4px) rotate(42deg);
}

.navbar-top.toggle .hamburger span:nth-child(2),
.hamburger.active span:nth-child(2) {
  transform: translateX(2px) rotate(90deg);
  background-color: var(--dark);
  opacity: 0;
}

.navbar-top.toggle .hamburger span:nth-child(3),
.hamburger.active span:nth-child(3) {
  transform: translateY(-4px) rotate(-40deg);
}

/* main-foot */
.main-foot {
  position: relative;
  background-color: var(--additional-color);
  overflow: hidden;
}
.navbar-foot-wrap {
  position: relative;
}
.navbar-foot {
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.75fr) minmax(0, 1fr);
  padding: max(4.5vw, 40px) 0 max(4.5vw, 30px);
  margin: 0;
  color: var(--general);
}

.foot-logo {
  position: relative;
  margin: 10px 0;
}

.foot-logo img {
  position: relative;
  width: 223px;
  height: auto;
}

.foot-menu {
  margin: max(1.2vw, 15px) 0;
  line-height: 1;
  gap: 0 10px;
}

.foot-menu li a {
  font-size: max(82%, 14px);
  color: rgba(5, 21, 36, 0.85);
  padding: 10px 0;
  line-height: 1.2;
}

.foot-menu li a:hover,
.foot-menu a.active {
  color: var(--general);
}

.foot-menu li a:hover {
  transform: translateX(5px);
}

.foot-mnu-title {
  font-size: max(109%, 18px);
  line-height: 1;
  margin-bottom: max(1.7vw, 15px);
}

.navbar-foot-additional {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 max(3vw, 30px);
}

.navbar-foot-additional .foot-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: max(3.5vw, 10px);
  margin: 0;
}

.navbar-foot-additional .foot-menu a {
  font-size: max(73%, 14px);
  transform: none !important;
}

/* hero */
.animation-bg {
  background-color: var(--additional-color);
}

.main-foot .animation-bg {
  height: 100% !important;
}

.animation-bg video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  right: 0;
  bottom: 0;
}

.hero-home-content {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  margin: 0;
}

.home-hero-content-info {
  margin: max(4vw, 30px) 0 180px;
  align-self: center;
}

.home-hero-img-block {
  position: relative;
  margin: max(4vw, 30px) 0;
  z-index: 1;
}

.home-hero-img-block img {
  position: relative;
  width: 145%;
}

.scroll-down-block {
  display: flex;
  margin: max(6.3vw, 30px) 0 0;
}

.scroll-down {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 15px;
  cursor: pointer;
}

.scroll-down span {
  font-size: max(82%, 14px);
  align-self: center;
  color: var(--general);
  font-family: "SegoeUI-Light", sans-serif;
}

.arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background-color: var(--white);
  cursor: pointer;
  transition: var(--transition-prop);
}

.arrow.border {
  border: 1px solid var(--general);
}

.arrow svg {
  max-width: 40%;
  height: auto;
}

.arrow svg path {
  transition: var(--transition-prop);
}

.scroll-down:hover .arrow,
.arrow:hover {
  background-color: var(--additional-color);
}

.scroll-down:hover .arrow svg path,
.arrow:hover svg path {
  stroke: var(--white);
}

.scroll-down .arrow {
  width: 42px;
  height: 42px;
}

.scroll-down:hover .arrow,
.arrow.border:hover {
  border-color: var(--additional-color);
}

.arrow.left svg {
  transform: rotate(90deg)
}

.arrow.right svg {
  transform: rotate(-90deg)
}

.hero-content {
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  margin: 0;
}

.hero-content-info {
  width: min(100%, 615px);
  color: var(--general);
  margin: max(4vw, 30px) 0 180px;
  align-self: center;
}

.hero-img-block {
  position: relative;
  margin: max(4vw, 30px) 0 10px;
  z-index: 1;
}

.hero-img-block img {
  position: relative;
  width: 100%;
}

/* s-home-statistics */
.s-home-statistics,
.top-overlay {
  margin-top: -130px;
  background: center / cover no-repeat url("../img/home/home-img-1.jpg");
}

.home-statistics-content {
  margin: max(7vw, 40px) 0;
  gap: max(2vw, 15px);
}

.statistics-card {
  position: relative;
  padding: max(2.5vw, 20px) max(2.5vw, 10px);
  background-color: var(--white);
}

.statistics-card-number {
  font-size: 182%;
  line-height: 1;
  margin-top: max(0.8vw, 5px);
}

.statistics-card-number::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  opacity: 0.5;
  margin: 20px 0;
  background: linear-gradient(270deg, rgba(0, 177, 199, 1) 0%, rgba(0, 81, 154, 1) 100%);
}

.statistics-card p {
  font-size: max(90%, 14px);
  width: min(100%, 200px);
  margin: 0;
}

.statistics-card.color {
  background-color: var(--additional-color-2);
}

/* double-coll-content */
.double-coll-content {
  margin: max(7vw, 40px) 0;
  gap: max(6vw, 15px);
}

.double-coll-content.text-right .double-coll-content-info {
  text-align: right;
}

.double-coll-content.text-right .double-coll-content-info .is-line-down::after {
  margin-left: auto;
}

.double-coll-content-info {
  align-self: center;
  margin: max(3vw, 30px) 0;
}

.double-coll-content.revers .double-coll-content-info {
  grid-column: 1;
  grid-row: 1;
}

.is-line-down::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background-color: #223A55;
  margin: max(1.5vw, 15px) 0;
  opacity: 0.6;
}

.is-line-down.center::after {
  margin-left: auto;
  margin-right: auto;
}

.is-line-up::before {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 81, 154, 1) 0%, rgba(0, 87, 157, 0.9) 50%, rgba(0, 177, 199, 0.9) 100%);
  margin: max(1.5vw, 15px) 0;
  opacity: 0.6;
}

.is-line-up.center::before {
  margin-left: auto;
  margin-right: auto;
}

.double-coll-content-img {
  align-self: center;
}

.double-coll-content-img img {
  width: 100%;
}

.double-coll-content-info .btn-page-wrap {
  margin-top: max(2vw, 15px);
}

/* s-help-you */
.s-help-you {
  background: var(--additional-color);
}

.s-help-you .animation-bg {
  height: 100% !important;
}

.help-you-content {
  position: relative;
  margin: max(9vw, 40px) 0;
  gap: max(5vw, 15px) max(2vw, 15px);
}

.help-you-title {
  grid-row: span 2;
}

.help-you-title p {
  width: min(100%, 440px);
}

.help-you-content .title-page {
  align-self: center;
}

.help-you-content-item .title-block {
  margin: max(1.5vw, 15px) 0 max(1vw, 15px);
}

.help-you-content-item p {
  font-size: max(90%, 14px);
  margin-bottom: 0;
}


.swiper-navigation-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  margin-top: max(3vw, 20px);
}

.swiper-navigation-custom.vertical {
  flex-direction: column;
  justify-content: flex-start;
}

.swiper-navigation-custom>div:active {
  transform: scale(0.98);
}

/* s-services-block */
.services-block-content {
  grid-template-columns: minmax(0, 1fr) minmax(0, .6fr);
  padding: max(6.5vw, 30px) max(8vw, 15px);
  border-radius: 16px;
  background: linear-gradient(167deg,
      rgba(0, 81, 154, 1) 0%,
      rgba(0, 177, 199, 0.9) 40%,
      rgba(0, 87, 157, 0.9) 60%,
      rgba(0, 81, 154, 1) 100%);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  margin: max(7.5vw, 40px) 0;
}

.services-block-info {
  align-self: center;
}

.services-block-info p {
  margin-top: max(1.5vw, 15px);
}

.services-block-action {
  display: flex;
  justify-content: flex-end;
  align-self: center;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* cards-carousel */
.cards-content {
  margin: max(6vw, 40px) 0 max(7vw, 40px);
}

.cards-carousel-wrap {
  grid-template-columns: max-content minmax(0, 1fr);
  gap: max(4.3vw, 20px);
}

.card-item {
  position: relative;
  width: 100%;
  background-color: var(--white);
  border-radius: 5px;
  overflow: hidden;
}

.card-item-img {
  position: relative;
  height: max(18.45vw, 200px);
  overflow: hidden;
}

.card-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-prop);
}

.card-item-img::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  display: block;
  height: max(3vw, 30px);
  width: 100%;
  background-color: var(--white);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: 2;
}

.card-item-caption {
  padding: 10px max(2vw, 15px) max(2vw, 20px);
}

.card-item-caption p {
  font-size: max(82%, 14px);
  margin: 0;
}

.card-item-subtitle {
  width: min(100%, 200px);
  font-size: max(82%, 14px);
  font-family: "SegoeUI-Bold", sans-serif;
  line-height: 1.2;
  opacity: 0.61;
}

.p-right {
  padding-right: max(9vw, 20px);
}

.card-item-name.is-line-down::after {
  width: 50px;
  margin: max(1vw, 15px) 0;
  background: linear-gradient(90deg, rgba(0, 81, 154, 0.4962359943977591) 0%, rgba(0, 177, 199, 0.5046393557422969) 100%);
}

.card-item-name {
  margin-top: max(0.8vw, 5px);
  margin-bottom: 0;
}

.card-item:hover .card-item-img img {
  transform: scale(1.05);
}

.card-item-bottom-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 20px;
}

.card-item-author {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: max(1vw, 10px);
}

.card-item-author-name,
.card-item-date {
  font-size: max(82%, 14px);
  align-self: center;
  text-align: left;
  opacity: 0.61;
}

.card-item-author-img {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  background: center / cover no-repeat;
  overflow: hidden;
}

.card-item.big {
  gap: 10px;
  text-align: right;
  margin: 0;
}

.card-item.big .card-item-subtitle,
.card-item.big .card-item-name.is-line-down::after {
  margin-left: auto;
}

.card-item.big .card-item-caption p {
  font-size: 100%;
  margin-bottom: max(2.5vw, 20px);
}

.card-item.big .card-item-img::before {
  bottom: 0;
  left: auto;
  right: -1px;
  width: max(3vw, 30px);
  height: 100%;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%)
}

.card-item.big .card-item-caption {
  padding: max(3vw, 20px) max(3vw, 15px);
}

.card-item.big .card-item-img {
  height: 100%;
}

/* testimonials */
.s-testimonials .container {
  width: min(82%, 1330px) !important;
}

.testimonials-item {
  position: relative;
  padding: max(3.2vw, 20px) max(2.5vw, 15px);
  border-radius: 16px;
  border: 1px solid rgba(0, 82, 154, 0.2);
  box-shadow: 0px 2px 16px rgba(0, 28, 65, 0.1);
}

.testimonials-item::before {
  content: "";
  display: block;
  position: relative;
  width: 85px;
  height: 46px;
  background: center / contain no-repeat url("../img/icons/quotes.svg");
}

.swiper-navigation-middle>div {
  width: auto;
  height: auto;
  z-index: 5;
}

.swiper-navigation-middle>div::after {
  display: none;
}

.swiper-navigation-middle>div.swiper-button-prev {
  left: max(4vw, 10px);
}

.swiper-navigation-middle>div.swiper-button-next {
  right: max(4vw, 10px);
}

.testimonials-carousel .swiper-slide {
  transition: var(--transition-prop);
}

.testimonials-carousel .swiper-slide:not(.swiper-slide-active, .swiper-slide-next) {
  opacity: 0.4;
}

.testimonials-carousel .swiper-slide.swiper-slide-active .testimonials-item {
  border-color: var(--additional-color);
}

.testimonials-item p {
  font-style: italic;
  font-family: "SegoeUI-Light", sans-serif;
  margin: max(2.1vw, 20px) 0;
}

.testimonials-carousel {
  position: initial;
}

.testimonials-content {
  margin: max(8vw, 40px) 0;
}

.testimonials-item-caption {
  position: relative;
  text-align: right;
  padding-right: max(1.7vw, 15px);
}

.testimonials-item-caption::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 81, 154, 0.4962359943977591) 0%, rgba(0, 177, 199, 0.5046393557422969) 100%);
}

.testimonials-item-caption span {
  display: block;
  font-size: max(82%, 14px);
  opacity: 0.8;
  font-family: "SegoeUI-Light", sans-serif;
}

.testimonials-item-name {
  margin-bottom: max(0.7vw, 10px);
}

/* s-page-additional */
.page-additional-content {
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(0, .6fr);
  color: var(--white);
  padding: max(6.5vw, 30px) max(8vw, 15px);
  border-radius: 16px;
  background: center / cover no-repeat url("../img/home/to-page-bg.jpg");
  margin: 0;
}

.page-additional-content-wrap {
  padding: 67px 0 0;
  margin: 0 0 max(6.5vw, 40px);
  overflow: hidden;
}

.page-additional-info {
  position: relative;
  align-self: center;
  width: min(100%, 650px);
  z-index: 1;
}

/* .page-additional-info  */
.page-additional-info p {
  margin-top: max(1.5vw, 15px);
}

.page-additional-action {
  display: flex;
  justify-content: center;
  align-self: center;
  position: relative;
  z-index: 2;
}

.page-additional-img {
  position: absolute;
  width: 738px;
  height: 582px;
  top: -65px;
  right: -85px;
  background: center / contain no-repeat url("../img/home/to-page-img.png");
}

/* associations */
.associations-content {
  margin: max(4vw, 40px) 0;
}

.associations-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: max(5.3vw, 20px);
  padding: max(2vw, 20px) 0 max(3vw, 20px);
}

.associations-item img {
  display: block;
  filter: grayscale(100%);
  opacity: 0.5;
}

/* apply */
.apply-content {
  width: min(100%, 853px);
  margin: max(7vw, 40px) auto;
  text-align: center;
}

.apply-form {
  margin-top: max(4.3vw, 30px);
}

.form-bottom p {
  font-size: max(73%, 13px);
  margin: max(2vw, 20px) auto max(3vw, 30px);
  max-width: 95%;
  font-family: "SegoeUI-Light", sans-serif;
}

/* news */
.hero-bg,
.animation-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 532px;
}

.blog-content {
  position: relative;
  margin: 192px 0 max(3.5vw, 40px);
}

.blog-content .title-page {
  margin-bottom: max(3vw, 30px);
}

.blog-content-grid-wrap {
  margin: 0;
}

.news-sidebar {
  position: relative;
  width: 407px;
  margin-bottom: 30px;
}

.white {
  color: var(--white);
}

.blog-content-grid {
  margin: 0;
  gap: max(2vw, 20px);
}

.load-more-client,.load-more {
  margin-top: max(2vw, 20px);
  border-bottom: 1px solid rgba(0, 82, 154, 0.21);
  padding-bottom: 20px;
}

.load-more-client .btn ,.load-more .btn {
  background-color: transparent;
  border-color: transparent;
}

.form-line {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: min(100%, 700px);
  margin: max(1vw, 10px) auto max(5vw, 30px);
  border-radius: 5px;
  position: relative;
  background-color: var(--white);
  overflow: hidden;
}

.form-line input {
  width: 80%;
  margin: 0;
}

.form-line .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
  padding: 0;
  border-radius: 0;
  border: none;
  align-self: auto;
  background-color: var(--additional-color-2);
}

.news-sidebar-item.newsletter-block {
  margin-bottom: max(7vw, 30px);
}

.news-sidebar-item {
  margin-bottom: max(3vw, 25px);
}

.news-item {
  width: 100%;
  padding: 22px 0;
  border-radius: 5px;
  background-color: var(--white);
  margin-bottom: max(1vw, 15px);
}

.news-item-inner {
  position: relative;
  padding: 0 max(1.5vw, 15px);
}

.news-item-inner>div {
  max-width: 280px;
}

.news-item-inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 81, 154, 0.4962359943977591) 0%, rgba(0, 177, 199, 0.5046393557422969) 100%);
}

.news-item-inner span {
  font-size: max(73%, 13px);
  opacity: 0.6;
  line-height: 1.2;
}

.news-item:hover {
  transform: scale(1.03);
}

.is-sidebar-content {
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: max(6vw, 20px);
  margin: max(7vw, 40px) 0;
}

.sidebar-wrap {
  width: 407px;
}

.services-inner-sidebar {
  padding: max(3.2vw, 20px) max(2vw, 15px);
  border-radius: 5px;
}

.services-inner-sidebar-title {
  font-size: 125%;
  text-align: center;
  margin-bottom: max(2vw, 20px);
}

.services-inner-content {
  margin-top: max(2.5vw, 30px);
}

.services-inner-sidebar ul li a,
.menu-custom ul li a {
  padding: max(1vw, 14px) max(1.5vw, 10px);
  opacity: 0.8;
}

.services-inner-sidebar ul li a:hover,
.menu-custom ul li a:hover {
  transform: translateX(2%);
}

.services-inner-sidebar ul li:not(:last-of-type),
.menu-custom li:not(:last-of-type),
.join-us-block .menu-custom li {
  border-bottom: 1px solid rgba(0, 82, 154, 0.2);
}

.services-inner-sidebar ul li:first-of-type,
.menu-custom li:first-of-type {
  border-top: 1px solid rgba(0, 82, 154, 0.2);
}

.join-us-block .menu-custom li a {
  padding: max(1.6vw, 15px) max(1.5vw, 10px);
}

.services-inner-content img {
  width: 100%;
  margin: max(4.5vw, 20px) 0;
}

/* job-role */
.job-role-sidebar {
  position: relative;
  color: var(--white);
  padding: max(3.2vw, 20px) max(2vw, 15px);
  border-radius: 5px;
  text-align: center;
  background: linear-gradient(167deg, rgba(0, 81, 154, 1) 0%, rgba(0, 87, 157, 0.9) 70%, rgba(0, 177, 199, 0.9) 100%);
}

.job-role-sidebar p {
  font-size: max(90%, 14px);
  margin-bottom: max(2.5vw, 15px);
}

.job-role-sidebar-title.is-line-down::after {
  width: 66px;
  background-color: var(--white);
  opacity: 0.25;
  margin: max(1vw, 15px) auto;
}

.job-role-content {
  margin-top: max(3vw, 25px);
}

.job-role-content .list-custom {
  margin-top: max(4vw, 25px);
}

.list-custom ul li,
.tab-content ul ul li {
  position: relative;
  padding-left: 50px;
  line-height: 1.2;
  margin-bottom: max(1.3vw, 10px);
}

.list-custom ul li::before,
.tab-content ul ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 81, 154, 1) 0%, rgba(0, 87, 157, 0.9) 50%, rgba(0, 177, 199, 0.9) 100%);
  opacity: 0.5;
}

.similar-roles-content {
  margin: max(8vw, 40px) 0;
}

.similar-roles-content .title-section {
  margin-bottom: max(3vw, 20px);
}

.role-item {
  position: relative;
  grid-template-columns: minmax(0, 1fr) max-content;
  padding: max(1.8vw, 20px) max(2.5vw, 15px);
  margin: 0 0 20px;
  background-color: #F2F6FA;
  border-radius: 5px;
}

.role-item-info,
.role-item-action {
  align-self: center;
}

.role-item-meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: max(82%, 14px);
  margin-top: 10px;
  font-family: "SegoeUI-Light", sans-serif;
}

.role-item-meta>div {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 10px;
}

.role-item-meta>div * {
  align-self: center;
}

.simple-card .title-block {
  margin: max(1vw, 10px) 0 max(1vw, 15px);
  line-height: 1.2;
}

.simple-card p {
  width: 100%;
}

.join-us-content {
  margin: max(7.2vw, 40px) 0;
}

.join-us-quote-body {
  position: relative;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  gap: 5px;
  width: min(100%, 700px);
  text-align: center;
  margin: auto;
  font-style: italic;
  font-family: "SegoeUI-Light", sans-serif;
}

.join-us-quote-body::before,
.join-us-quote-body::after {
  content: "";
  position: relative;
  display: block;
  width: 56px;
  height: 32px;
  background: center / contain no-repeat url("../img/icons/quotes.svg");
}

.join-us-quote-body::after {
  align-self: end;
}

.join-us-quote-body p {
  margin: max(1.5vw, 20px) 0;
}

.join-us-quote-caption {
  text-align: center;
}

.join-us-quote-caption .title-block {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 10px;
}

.join-us-quote-caption .title-block::after {
  width: 64px;
  background: linear-gradient(90deg, rgba(0, 81, 154, 1) 0%, rgba(0, 87, 157, 0.9) 50%, rgba(0, 177, 199, 0.9) 100%);
}

.join-us-quote-caption p {
  font-size: max(82%, 14px);
  font-family: "SegoeUI-Light", sans-serif;
}

.join-us-block {
  grid-template-columns: max-content minmax(0, 1fr);
  gap: max(2vw, 20px);
  margin: max(7.5vw, 30px) 0 0;
}

.join-us-sidebar .title-section {
  margin-bottom: max(2vw, 20px);
}

.join-us-double-coll {
  margin-top: max(3.8vw, 40px);
}

/* about */
.brands-carousel {
  padding: max(8.5vw, 40px) 0 max(2vw, 15px);
}

.brands-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 92px;
}

.brands-item img {
  max-width: 100%;
  filter: grayscale(100%);
  opacity: 0.5;
}

.about-simple-double-coll {
  margin: max(1.5vw, 30px) 0 max(4vw, 40px);
}

/* s-team */
.team-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: max(5vw, 30px);
}

.team-sidebar .menu-custom li.active a {
  font-family: "SegoeUI-Bold", sans-serif;
  font-weight: 700;
}

.team-sidebar .swiper-navigation-custom.vertical {
  align-items: flex-start;
  margin-top: max(3vw, 30px);
}

.tab-btn {
  position: relative;
  padding-bottom: 7px;
  cursor: pointer;
  opacity: 0.45;
  transition: var(--transition-prop);
}

.tab-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  opacity: 0.5;
  background: linear-gradient(90deg, rgba(0, 81, 154, 1) 0%, rgba(0, 87, 157, 0.9) 50%, rgba(0, 177, 199, 0.9) 100%);
  transition: var(--transition-prop);
}

.tab-btn.active,
.tab-btn:hover {
  opacity: 1;
}

.tab-btn.active::before,
.tab-btn:hover::before {
  width: 100%;
}

.tab-btn .title-block {
  margin: 0;
}

.social-mnu ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

.social-mnu a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 53px;
  height: 53px;
  border-radius: 50%;
  background-color: var(--white);
  overflow: hidden;
}

.social-mnu.color a {
  background-color: #0077B5;
}

.social-mnu.color a svg path {
  fill: var(--white);
}

.social-mnu a svg {
  width: 40%;
  height: auto;
  max-height: 45%;
}

.social-mnu a:hover {
  transform: translateY(-5px);
}

.social-mnu a svg path {
  fill: var(--additional-color);
}

/* pop-up */
.pop-up-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  top: 0;
  right: 0;
  position: fixed;
  padding: 20px 0;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  pointer-events: auto;
  opacity: 1;
  z-index: 1001;
  transition: all 0.4s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.pop-up-wrap::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: var(--general);
  opacity: 0.8;
  transition: opacity 0.4s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.pop-up-hidden {
  opacity: 0;
  pointer-events: none;
}

.pop-up {
  width: 100%;
  transition: all 0.8s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.pop-up .container {
  position: relative;
}

.pop-up-hidden .pop-up {
  transform: scale(0.9);
}

.pop-up-hidden::before {
  opacity: 0;
  pointer-events: none;
}

.popup-action {
  cursor: pointer;
}

.icon-close {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: max(1.3vw, 15px);
  right: max(1.3vw, 15px);
  transform-origin: center;
  width: 47px;
  height: 47px;
  background-color: var(--white);
  border-radius: 50%;
  line-height: 0.4;
  cursor: pointer;
  font-weight: 100;
  z-index: 3;
  transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.icon-close:hover {
  transform: rotate(180deg);
}

.icon-close span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--general);
  transform: rotate(45deg);
}

.icon-close span:nth-last-of-type(2) {
  transform: rotate(-45deg);
}

.pop-up-content {
  position: relative;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
}

.pop-up-content-inner {
  border-radius: 5px;
  overflow: hidden;
  background-color: var(--white);
  box-shadow: 1px 1px 30px rgb(0 0 0 / 9%);
}

.pop-up-content-item {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  margin: 0;
}

.pop-up-content-item-info {
  min-height: 63vh;
  padding: max(3.4vw, 20px) 0 max(4vw, 20px) max(4vw, 15px);
}

.pop-up-content-item-img {
  display: block;
  position: relative;
  background: center / cover no-repeat;
  overflow: hidden;
}

.pop-up-content-item-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 82px;
  height: 100%;
  z-index: 1;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  background-color: var(--white);
}

.pop-up-content-item-top-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 15px;
}

.pop-up-content-item-info .title-section::after {
  width: 50px;
  background: linear-gradient(90deg, rgba(0, 81, 154, 1) 0%, rgba(0, 87, 157, 0.9) 50%, rgba(0, 177, 199, 0.9) 100%);
}

.pop-up-content-item-info p {
  font-size: max(90%, 14px);
}

.card-item-popup-content {
  display: none;
}

.s-team-work-with-us .page-additional-content {
  background-image: url("../img/team/s-team-work-with-us-bg.jpg");
}

.s-team-work-with-us .page-additional-img {
  background-image: url("../img/team/s-team-work-with-us-img.png");
}

.s-team-work-with-us .page-additional-content-wrap {
  padding: 118px 0 0;
}

/* contact */
.s-contact {
  margin-top: -200px;
  padding-top: 200px;
}

.contact-content {
  gap: 20px;
}

.contact-content-form-wrap {
  position: relative;
  padding-left: max(5vw, 15px);
  padding-bottom: max(0vw, 20px);
}

/* .contact-content-form-wrap::before {
  content: "";
  position: absolute;
  top: -200%;
  left: 0;
  width: 400%;
  height: 400%;
  background-color: var(--additional-color-2);
} */

.contact-item {
  margin-bottom: max(3vw, 20px);
}

.contact-item-info {
  margin-top: max(1vw, 15px);
}

.contact-item-info * {
  display: block;
  opacity: 0.8;
  font-family: "SegoeUI-Light", sans-serif;
  line-height: 1.8;
}

.contact-item-info a:hover {
  color: var(--additional-color);
}

.contact-items-block .coll-2 {
  grid-template-columns: max-content max-content;
  gap: max(5vw, 20px);
}

.map-block {
  position: relative;
  width: 100%;
  height: max(36vw, 400px);
}

#map {
  width: 100%;
  height: 100%;
}

.client-profile-content {
  margin: max(8vw, 40px) 0;
}

.client-profile-content .statistics-card {
  background-color: var(--additional-color-2);
}

.s-singe-hero .hero-bg,
.s-singe-hero .animation-bg {
  height: 100%;
}

.s-singe-hero .hero-img-block {
  margin: max(4vw, 30px) 0;
}

.s-singe-hero .hero-img-block img {
  width: min(100%, 552px);
}

.s-singe-hero .hero-content-info {
  margin: max(4vw, 30px) 0;
}

/* article */
.article-hero.card-item {
  text-align: left;
  overflow: visible;
  background-color: transparent;
}

.article-hero.card-item .card-item-subtitle {
  margin-left: 0;
}

.article-hero.card-item .card-item-caption {
  grid-column: 1;
  grid-row: 1;
  padding-left: 0;
  align-self: center;
}

.article-hero.card-item .card-item-caption p {
  margin-bottom: max(5vw, 20px);
}

.article-hero-img {
  width: calc(100% + 18vw);
  clip-path: polygon(70px 0, 100% 0, 100% 100%, 0% 100%);
}

.article-hero-img img {
  display: block;
  width: 100%;
  min-height: 100%;
}

.article-content {
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: max(14.6vw, 120px);
  margin: max(5.5vw, 40px) 0;
}

.article-sidebar {
  position: relative;
}

.article-sidebar::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -120px;
  width: 200%;
  height: 200%;
  background-color: var(--additional-color-2);
}

.article-sidebar>* {
  position: relative;
  z-index: 1;
}

.news-sidebar-item.share {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: max(1.5vw, 20px);
  border-bottom: 1px solid rgba(0, 82, 154, 0.2);
}

.news-sidebar-item.share .title-block {
  margin-bottom: 0;
}

.news-sidebar-item.share .social-mnu {
  margin: 15px 0;
}

.article-sidebar .newsletter-block {
  margin-bottom: max(3vw, 25px);
}

.article-sidebar .newsletter-block .btn {
  background-color: var(--additional-color);
}

.article-sidebar .newsletter-block .btn line {
  stroke: var(--white);
}

.article-content-body {
  width: min(100%, 772px);
  margin-left: auto;
}

.article-content-body img {
  display: block;
  width: 100%;
  height: auto;
  margin: max(4.5vw, 20px) 0;
}

/* our-clients */
.our-clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: max(2vw, 20px);
}

.our-clients-card {
  position: relative;
  padding: max(2.8vw, 20px) max(2.1vw, 15px);
  border-radius: 5px;
  background-color: var(--white);
  text-align: center;
}

.our-clients-card-img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: max(2vw, 15px) 0 max(4.5vw, 35px);
}

.our-clients-card-img img {
  max-width: 100%;
	max-height: 50px;
}

.our-clients-card p {
  font-size: max(90%, 14px);
  margin-bottom: max(2.8vw, 20px);
}

.our-clients-grid {
  margin: 0 0 max(3.5vw, 40px); /*7.5 to 3.5*/
}

.s-our-clients .hero-content-info .title-page {
  margin-bottom: max(1.5vw, 20px);
}

.s-our-clients .hero-content-info {
  position: relative;
  margin: max(9vw, 70px) 0 120px;
}

/* what-we-do */
.regulatory-content {
  margin: max(5.5vw, 35px) 0 max(7.5vw, 40px);
}

.regulatory-top-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: max(2.5vw, 30px);
}

.regulatory-top-row p {
  max-width: 58%;
  text-align: right;
}

.swiper-button-disabled {
  opacity: 0.5;
}

.what-we-do-double-coll>div:last-of-type {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-around;
  text-align: right;
}

.what-we-do-double-coll>div:last-of-type .is-line-down::after {
  margin-left: auto;
}

.what-we-do-double-coll .double-coll-content-img {
  width: 100%;
}

.icons-block {
  gap: max(1.5vw, 15px) max(3vw, 15px);
}

.item-with-icon {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: max(1.1vw, 15px);
}

.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background-color: var(--additional-color-2);
}

.icon svg {
  max-width: 40%;
  max-height: 40%;
}

.item-with-icon span {
  display: block;
  font-size: max(90%, 14px);
  align-self: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

.team-card-top-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 10px;
  padding-top: max(2vw, 20px);
}

.team-card-top-line .card-item-subtitle {
  align-self: center;
}

.team-card .card-item-caption p {
  font-size: max(90%, 14px);
  margin-bottom: max(1.2vw, 10px);
}

/* tabs */
.tabs-content {
  grid-template-columns: max-content minmax(0, 1fr);
  gap: max(2vw, 20px);
  margin: max(6vw, 40px) 0;
}

.tab-name {
  position: relative;
  border-radius: 6px;
  padding: 10px 0;
  cursor: pointer;
}

.tab-name:not(:last-of-type) {
  margin-bottom: max(1vw, 15px);
}

.tab-name span {
  display: block;
  position: relative;
  padding: max(1vw, 10px) max(1.5vw, 15px);
  line-height: 1.3;
}

.tab-name span::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 177, 199, 1) 0%, rgba(0, 81, 154, 1) 100%);
  transition: var(--transition-prop);
}

.tab-name::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--additional-color-2);
  z-index: 1;
  border-radius: 6px;
  transition: var(--transition-prop);
}

.tab-name span {
  position: relative;
  z-index: 2;
}

.tab-name.active::after {
  width: 150%;
  background-color: var(--white);
}

.tab {
  display: none;
  position: relative;
  transition: all 0.4s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.tab.active {
  display: block;
}

.tabs-body {
  position: relative;
  padding: max(3.5vw, 20px) max(3.5vw, 15px);
  border-radius: 6px;
  background-color: var(--white);
  z-index: 1;
  overflow: hidden;
}

.tab-content ul {
  font-size: max(90%, 14px);
}

.tab-content>ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: max(2.3vw, 10px); /*change 1.2 to 2.3*/
  padding-left: 35px;
}

.tab-content>ul>li {
  list-style-type: circle;
  font-family: "SegoeUI-SemiBold", sans-serif;
}

.tab-content>ul>li::marker {
  color: var(--additional-color);
  font-size: 150%;
}

.tab-content>ul ul {
  margin-top: max(1.2vw, 15px);
  font-family: "SegoeUI", sans-serif;
}

.tab-content h3 {
  margin-bottom: max(0.8vw, 10px);
}

.li-has-child {
  grid-column: span 2;
}

.blog-filter-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: max(4.5vw, 30px) 0;
}

.blog-filter-tags {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-filter-tags span {
  font-size: max(90%, 14px);
  margin-right: max(1vw, 10px);
}

.blog-filter-tag {
  font-size: max(73%, 12px);
  padding: 10px 20px;
  background-color: var(--white);
  border-radius: 5px;
  line-height: 1;
  cursor: pointer;
  font-family: "SegoeUI-SemiBold", sans-serif;
}

.search-article-form {
  margin: 0;
}

.search-article {
  border-radius: 5px;
  padding-right: max(0.8vw, 5px);
  background-color: var(--white);
}

.search-article-form .btn {
  width: auto;
  font-size: max(73%, 14px);
  padding: 12px 30px;
  align-self: center;
  border-radius: 21px;
  background-color: var(--additional-color);
}

.search-article-form input {
  padding-left: max(2.5vw, 35px) !important;
  background: left 0.8em top 50% / 1.1em auto no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22.414' height='22.414' viewBox='0 0 22.414 22.414'%3E%3Cg transform='translate(-3.5 -3.5)' opacity='0.6'%3E%3Cpath d='M22.278,13.389A8.889,8.889,0,1,1,13.389,4.5,8.889,8.889,0,0,1,22.278,13.389Z' fill='none' stroke='%231a3a57' stroke-linecap='square' stroke-linejoin='round' stroke-width='2'/%3E%3Cpath d='M29.808,29.808l-4.833-4.833' transform='translate(-5.308 -5.308)' fill='none' stroke='%231a3a57' stroke-linecap='square' stroke-linejoin='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
}

.search-article-form input:focus {
  border-color: transparent !important;
}
/* 1-01-2022*/
.no-record,.no-record-client{margin-top:20px;}
.load-more-client{margin-bottom: max(3vw,20px); border-bottom:0px;}

canvas { 
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
}
.wave { 
  position: absolute;
  height: 250%;
  width: 100%;
  bottom: 0;
  left: 0;
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width : 1440px) {

  html,
  body {
    font-size: 20px;
  }

  h1,
  .title-page {
    font-size: 313%;
  }

  h3, .title-block {
    font-size: 127%;
  }

  .questions-content-imgs .swiper-navigation-custom.absolute {
    top: 17vw;
  }

  .page-additional-img {
    width: 638px;
    height: 482px;
    top: -65px;
    right: -85px;
  }

  .hero-bg,
  .animation-bg {
    height: 430px;
  }

  .article-sidebar::before {
    left: -60px;
  }

  .article-content {
    gap: 123px;
  }

  .article-content-body {
    width: min(100%, 793px);
  }
}

@media (max-width : 1280px) {

  html,
  body {
    font-size: 19px;
  }

  header .navbar-brand {
    width: 130px;
  }

  h1,
  .title-page {
    font-size: 300%;
  }

  h2,
  .title-section {
    font-size: 207%;
  }

  h3,
  .title-block {
    font-size: 112%;
  }

  main {
    padding-top: 80px;
  }

  .page-additional-img {
    right: -105px;
  }

  .news-sidebar,
  .sidebar-wrap {
    width: 307px;
  }

  .hero-content-info {
    margin: max(4vw, 30px) 0;
  }

  .icon {
    width: 60px;
    height: 60px;
  }
  .s-help-you.top-overlay .help-you-content {
    gap: max(3vw, 15px) max(2vw, 15px);
  }
  .s-help-you.top-overlay .help-you-content-item .title-block {
    font-size: max(112%, 20px);
  }
  .page-additional-info {
    width: min(100%, 400px);
  }
  .page-additional-info .title-section {
    font-size: 192%;
  }
}


@media (max-width : 1024px) {

  html,
  body {
    font-size: 18px;
  }

  .page-additional-img {
    width: 538px;
    height: 382px;
    right: -135px;
  }

  .about-double-coll-wrap {
    margin-top: 30px;
  }
}

@media (max-width : 991px) {

  html,
  body {
    font-size: 16px;
  }

  .coll-2,
  .coll-3,
  .coll-4,
  .coll-5,
  .coll-6 {
    display: block;
  }

  h1,
  .title-page {
    font-size: 255%;
  }

  main {
    padding-top: 53px;
  }

  header {
    -webkit-box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.2);
    z-index: 20;
  }

  .navbar-collapse {
    display: block;
    width: 100vw;
    height: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 21;
    overflow: hidden;
    transform: scale(0);
    transform-origin: top;
    transition: all 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .navbar-collapse.toggle {
    height: 100vh;
    opacity: 1;
    transform: scale(1);
    clip-path: none;
  }

  .navbar-collapse-inner-block {
    opacity: 0;
    max-height: 100%;
    min-height: 100%;
    overflow: auto;
    background: center / cover no-repeat url("../img/hero-subpage.jpg");
    transition: var(--transition-prop);
  }

  .navbar-collapse.toggle .navbar-collapse-inner-block {
    opacity: 1;
    transform: translateY(0);
  }

  body.menu-open {
    overflow: hidden;
  }

  .navbar-collapse,
  .navbar-collapse *,
  .navbar-collapse .navbar-top-menu-block,
  .navbar-collapse .top-mnu {
    pointer-events: none;
  }

  .navbar-collapse {
    z-index: 1;
  }

  .navbar-collapse.toggle,
  .navbar-collapse.toggle *,
  .navbar-collapse.toggle .navbar-top-menu-block,
  .navbar-collapse.toggle .top-mnu {
    pointer-events: all;
  }

  .navbar-top-menu-block {
    display: block;
    height: 100vh;
    padding-top: 70px;
  }

  .top-mnu {
    flex-direction: column;
    padding: 0 15px;
    font-family: "SegoeUI", sans-serif;
    overflow: hidden;
  }

  .top-mnu li a {
    width: 100%;
    font-size: 17px !important;
    padding: 13px 0;
    text-align: center;
    color: var(--white) !important;
    text-transform: uppercase;
  }

  .top-mnu li a::before {
    display: none;
  }

  .navbar-collapse .top-mnu li {
    opacity: 0;
    transition: all 400ms 510ms;
  }

  .navbar-collapse .top-mnu li:nth-child(odd) {
    transform: translateX(20%);
  }

  .navbar-collapse .top-mnu li:nth-child(even) {
    transform: translateX(-20%);
  }

  .navbar-collapse.toggle .top-mnu li {
    opacity: 1;
    transform: translateX(0);
    transition: all 300ms 510ms;
  }

  .hamburger {
    display: flex;
    width: 32px;
    height: 40px;
    margin-left: 8px;
    z-index: 2;
  }

  .menu-open .hamburger span {
    background-color: var(--white);
  }

  .navbar-top {
    padding-top: 7px;
    padding-bottom: 7px;
    position: relative;
    z-index: 2;
  }

  header .navbar-brand {
    width: 120px;
  }

  button,
  .btn {
    font-size: 100%;
  }

  .lng-block {
    width: 36px;
    height: 36px;
  }

  .foot-logo img {
    width: min(100%, 190px);
  }

  .navbar-foot,
  .foot-menu.coll-2 {
    display: grid;
  }

  .hero-home-content {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
  }

  .home-hero-img-block img {
    width: 125%;
  }

  .home-hero-img-block {
    margin-bottom: 0;
  }

  .s-home-statistics,
  .top-overlay {
    margin-top: 0;
  }

  .home-hero-content-info {
    margin: max(4vw, 30px) 0;
  }

  .home-statistics-content {
    display: grid;
  }

  .help-you-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .questions-content-imgs .swiper-navigation-custom.absolute {
    top: 0;
  }

  .questions-content-info {
    padding-left: 0;
    margin-bottom: 30px;
  }

  .questions-content-imgs .swiper-navigation-custom.absolute {
    width: auto;
    height: auto;
    padding: 0;
    background: none;
  }

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

  .questions-content-imgs .swiper-navigation-custom.absolute .arrow {
    border: 1px solid var(--additional-color);
  }

  .accordion-head::after {
    width: 40px;
    height: 40px;
  }

  .swiper-navigation-custom.vertical {
    flex-direction: row;
  }

  .cards-carousel-block {
    padding: 0;
    margin-top: 20px;
  }

  .cards-carousel-wrap {
    margin-top: 10px;
  }

  .testimonials-item::before {
    width: 65px;
    height: 26px;
  }

  .page-additional-img {
    display: none;
  }

  .page-additional-action {
    margin-top: 30px;
    justify-content: flex-end;
  }

  .page-additional-content-wrap {
    padding: 0;
  }

  .s-team-work-with-us .page-additional-content-wrap {
    padding: 40px 0 0;
  }

  .blog-content {
    margin-top: 92px;
  }

  .blog-content-grid {
    display: grid;
  }

  .card-item.big .card-item-img {
    height: max(46.45vw, 250px);
  }

  .card-item.big .card-item-img::before {
    display: none;
  }

  .news-sidebar-item .title-block {
    color: var(--general);
  }

  .news-sidebar,
  .sidebar-wrap {
    width: 100%;
    margin-top: 30px;
  }

  .hero-img-block {
    width: min(100%, 500px);
  }

  .hero-content-info {
    margin-top: 80px;
  }

  .role-item {
    display: grid;
  }

  .join-us-sidebar {
    margin-bottom: 30px;
  }

  .join-us-quote-body::before,
  .join-us-quote-body::after {
    width: 46px;
    height: 22px;
  }

  .brands-item img {
    transform: scale(0.7);
  }

  .pop-up-content-item {
    display: grid;
  }

  .contact-content-form-wrap::before {
    left: -100%;
  }

  .contact-content-form-wrap {
    padding-left: 0;
  }

  .contact-items-block {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	margin-left: 0%;
  }

  .article-hero-img {
    width: calc(100% + 20vw);
    margin-left: -50px;
    clip-path: none;
  }

  .article-sidebar {
    padding-top: 15px;
  }

  .article-sidebar::before {
    top: 0;
  }

  .article-content-body {
    width: 100%;
  }

  .s-our-clients .hero-content-info {
    margin: max(9vw, 70px) 0 50px;
  }

  .what-we-do-double-coll>div:last-of-type {
    flex-direction: column;
  }

  .help-you-title {
    grid-row: span 1;
    grid-column: span 2;
  }

  .services-block-info {
    margin-bottom: 20px;
  }

  .icons-block {
    display: grid;
  }

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

  .about-simple-double-coll {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
  }

  .about-simple-double-coll .double-coll-content-img {
    width: 100%;
  }

  .tabs-content {
    display: grid;
  }

  .tabs-panel {
    width: 250px;
    margin: 0;
  }

  .join-us-double-coll {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
  }
}

@media (max-width : 767px) {

  html,
  body {
    font-size: 15px;
  }

  .container {
    width: 100% !important;
  }

  .navbar-foot {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .navbar-foot-additional {
    padding: 30px 0;
  }

  .associations-item img {
    transform: scale(0.8);
  }

  .blog-content-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .simple-card>svg {
    width: 35px;
    height: auto;
  }

  .pop-up-content-item {
    display: flex;
    flex-direction: column-reverse;
  }

  .pop-up-content-item-img {
    min-height: max(60vw, 280px);
  }

  .pop-up-content-item-img::before {
    display: none;
  }

  .pop-up-content-item-info {
    min-height: auto;
    padding: max(3.4vw, 20px) max(4vw, 15px);
  }

  .pop-up-wrap {
    align-items: flex-start;
  }

  .social-mnu a {
    width: 45px;
    height: 45px;
  }

  .pop-up-content-item-top-line {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    margin-bottom: 20px;
  }

  .contact-content-form-wrap {
    padding-bottom: 0;
  }

  .our-clients-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .tabs-panel {
    width: 180px;
  }

  .tab-content>ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .li-has-child {
    grid-column: span 1;
  }
}

@media (max-width : 480px) {

  html,
  body {
    font-size: 14px;
  }

  .navbar-foot-additional {
    justify-content: flex-start;
    padding-top: 0;
  }

  .navbar-foot-additional .foot-menu {
    align-items: flex-start;
    gap: 0 20px;
  }

  button,
  .btn {
    width: 100%;
  }

  .home-hero-content-info .btn {
    width: auto;
  }

  .home-statistics-content,
  .help-you-content,
  .role-item,
  .icons-block,
  .tabs-content {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .contact-items-block {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	margin-left: 0%;
  }

  .help-you-title {
    grid-row: span 1;
    grid-column: span 1;
  }

  .tabs-panel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    width: 100%;
    gap: 10px;
  }

  .tab-name {
    height: 100%;
  }

  .tab-name.active::after {
    width: 100%;
  }

  .tab-name span {
    display: block;
    position: relative;
    padding: 0 max(1.5vw, 15px);
    line-height: 1.3;
  }

}

@media (max-width : 360px) {

  html,
  body {
    font-size: 13px;
  }

}

/* 3-1-2022 */
.gform_wrapper .gfield_validation_message, .gform_wrapper .validation_message { background: transparent !important; border: 0 !important; margin-top: 8px; padding: 0 !important;}
.gform_wrapper .gform_validation_errors { background: transparent !important;}
.gform_wrapper{position: relative;}
.gform_wrapper .gform-body input, .gform_wrapper .gform-body textarea, .gform_wrapper .gform-body select {    resize: none;    appearance: none;    display: block;    width: 100% !important;    font-size: max(90%, 15px) !important;    color: rgba(26, 57, 87, 0.61);    padding: max(1.13vw, 12px) max(2vw, 15px) !important;    background-color: var(--white);    border: 1px solid transparent;    border-radius: 5px;    box-shadow: none;    margin: 0;    line-height: 1 !important;    transition: var(--transition-prop);}
.gform_wrapper .gform-body select{line-height: 1.2 !important;}
.gform_wrapper .gform-body textarea{    height: 170px !important;    line-height: 1.3 !important;}
.gform_wrapper .gform-body .ginput_container_select{position: relative;}
.gform_wrapper .gform-body .ginput_container_select:after {    position: absolute;    content: " ";    top: 21px;    right: 28px;    height: 15px;    width: 15px;    background-image: url(../img/select-arrow.png);    background-repeat: no-repeat;    background-size: 16px;    background-position: center;}
.gform_wrapper .gform_footer{text-align: center;}
#field_2_7,#field_1_7 {    max-width: 95%;    font-size: max(73%, 13px);    margin: 10px auto 16px;    font-family: "SegoeUI-Light", sans-serif;    text-align: center;}
.gform_wrapper .gform-body select:focus,.gform_wrapper .gform-body textarea:focus,.gform_wrapper .gform-body input:focus {    border-color: var(--general);}
.gform_fileupload_rules{display: none !important;}
#menu-main-menu li,#menu-top-menu li{position: relative;}
#menu-main-menu li .sub-menu li .sub-menu,#menu-main-menu li .sub-menu,#menu-top-menu li .sub-menu{display: none;position: absolute;}
#menu-main-menu li .sub-menu li .sub-menu{    left: 100%;    top: 0;}
#menu-main-menu li .sub-menu li:hover .sub-menu,#menu-main-menu li:hover .sub-menu, #menu-top-menu li:hover .sub-menu {    display: block;    background-color: #00B1C7;    width: 200px;    z-index: 2;}
#menu-main-menu li .sub-menu li{margin:0;}
li .sub-menu a:before{display: none;}
li .sub-menu a {    border-bottom: 1px solid rgba(255,255,255,.1);    width: 100%;    padding: 0 12px;    margin: 0;    line-height: 38px;    font-size: 17px;  color:#fff;}
li .sub-menu li:last-child a{border-color: transparent;}
li .sub-menu li.menu-item-has-children:after {    content: " ";    position: absolute;    width: 20px;    height: 20px;    background-image: url(https://asensi.cbddev.com/wp-content/uploads/2022/01/white-arrow-1.png);    background-repeat: no-repeat;    right: 3px;    top: 9px;    background-size: 8px;    background-position: center;}
.privacy-policy .article-content ul li {    list-style-type: disc;    margin-left: 40px;}


.lng-block .en .wpml-ls-current-language{position: relative;}
.lng-block .en .sub-menu{position: absolute;display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: max(82%, 14px);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--additional-color);
    border: 1px solid var(--additional-color);
    left: -10px;
    top: 34px;display: none;background:#fff;}
.lng-block .en .sub-menu a{color:#00B1C7;padding: 0;}
.lng-block .en .wpml-ls-current-language a{transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);}
.lng-block:hover .sub-menu{display: block;}

/*18-2-22*/
.testimonials-item p{min-height: 255px;}
.team-card .card-item-caption p {    min-height: 540px;}
.mobile-nav-btn{ display: none;}
.cards-carousel .swiper-button-prev, .cards-carousel .swiper-button-next{ display: none; }

/*+++++++++++++++++++++++++++++ Responsive-Code +++++++++++++++++++++++++++++*/
@media only screen and (max-width:1499px){
  .testimonials-item p {    min-height: 288px;}
  .team-card .card-item-caption p {    min-height: 517px;}
}
@media only screen and (max-width:1199px){
  .testimonials-item p {    min-height: 248px;}
  .team-card .card-item-caption p {    min-height: 421px;}

}
@media only screen and (max-width:991px){
  .gform_wrapper .gform-body .ginput_container_select:after{    top: 20px;}
  .gform_wrapper .gform-body textarea {    height: 140px !important;}
   .menu_sub:after {    content: " ";    position: absolute;    width: 38px;    height: 40px;    background-image: url(/wp-content/uploads/2022/01/white-arrow-1.png);    background-repeat: no-repeat;    right: 0;    top: 0;    background-size: 8px;    background-position: center;    transform: rotate(90deg);}
   #menu-main-menu li .sub-menu li .sub-menu, #menu-main-menu li .sub-menu, #menu-top-menu li .sub-menu,#menu-main-menu li .sub-menu li:hover .sub-menu, #menu-main-menu li:hover .sub-menu, #menu-top-menu li:hover .sub-menu {  background-color: transparent;    width: 100%;position: relative;display: none;}
   li .sub-menu a {    border-bottom: 0;        padding: 0;}
   li .sub-menu li.menu-item-has-children:after,.top-mnu li a::before{display: none;}
   .top-mnu li a {    width: 100%;    font-size: 17px !important;   padding: 0;    margin: 0;position: unset;    line-height: 38px;}
   #menu-main-menu li .sub-menu li .sub-menu {    left: 0;}
   .privacy-policy .article-content ul li {    list-style-type: disc;    margin-left: 36px;}
	.menu_sub1:after {    content: " ";    position: absolute;    width: 12px;    height: 28px;    background-image: url(/wp-content/uploads/2022/01/12.png);    background-repeat: no-repeat;  top:-4px;    left:-25px;    background-size: contain;    background-position: center;   }
  .testimonials-item-caption span{    min-height: 41px;}
  .team-card .card-item-caption p {    min-height: 355px;}
	
}
@media only screen and (max-width:768px){
  .testimonials-item p {    min-height: 301px;}
  .team-card .card-item-caption p {    min-height: 502px;}
  .team-card.card-item.teamSlider {		height: 500px;}
}
@media only screen and (max-width:767px){
  .testimonials-item-caption span,.testimonials-item p {    min-height: 161px;}
  .team-card .card-item-caption p {    min-height: 265px;}
}
@media only screen and (max-width:639px){
  .team-card .card-item-caption p {    min-height: 326px;}
	.team-card .card-item-caption p {min-height: 324px;}

}
@media only screen and (max-width:479px){
  .gform_wrapper .gform-body .ginput_container_select:after {    top: 13px;    right: 20px;    background-size: 13px;}
  .lng-block .en .sub-menu{left:-13px}
  .team-card .card-item-caption p {    min-height: auto;}
  .mobile-nav-btn{ display: block; width: 181px; text-align: center; color: white; margin: 0rem auto 0; background: transparent; border: 0; font-size: 17px !important;  font-weight: 100; text-transform: uppercase; }
  .desktop-nav-btn{ display: none;}
  .cards-carousel .swiper-button-prev, .cards-carousel .swiper-button-next{ display: block; }
}

.gform_confirmation_message{color:green;}
.validation_message{display:none;}
.copyright{font-size: max(73%, 14px);color: rgba(5, 21, 36, 0.85);padding: 10px 0;line-height: 1.2;text-align:center;}
.footmenu{display:flex;}
.footmenu nav{margin-right:15px;}


@media only screen and (max-width:768px){
.footmenu{display:block;}
}

@media only screen and (max-width:768px) {
	.teamSlider .card-item-caption {
		padding: 10px max(2vw, 15px) max(2vw, 50px) 
	}
	.swiper-navigation-middle.teamSlider {
		display: flex;
		justify-content: center;
	}
	.swiper-navigation-middle.teamSlider .swiper-button-next {
		position: inherit;
		top: 0%;
		margin-top: calc(0px - (var(--swiper-navigation-size)/ 0.75));
		padding: 0px 20px;
	}
	.swiper-navigation-middle.teamSlider .swiper-button-prev {
		position: inherit;
		top: 0%;
		margin-top: calc(0px - (var(--swiper-navigation-size)/ 0.75));
		padding: 0px 20px;
	}
}