@import url(https://fonts.googleapis.com/css?family=Anek+Devanagari:regular,500,600&display=swap);

@import url(https://fonts.googleapis.com/css?family=IBM+Plex+Sans:300,regular,500,600&display=swap);

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@charset "UTF-8";

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  color: #000;
  line-height: 1;
  font-family: "IBM Plex Sans";
  font-size: 0.875rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "IBM Plex Sans";
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: #F2542B;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

/*
(i) Стили будут применяться ко 
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/

[class*=__container] {
  max-width: 69.375rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: 0 auto;
  padding: 0 1.25rem;
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

[class*=-ibg_contain] img {
  -o-object-fit: contain;
     object-fit: contain;
}

.icon-menu {
  display: none;
}

.header {
  margin-bottom: -1px;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  background-color: #17171a;
  max-width: unset;
}

.header__logo {
  z-index: 8;
  -webkit-transform: translate(-120%, 0px);
      -ms-transform: translate(-120%, 0px);
          transform: translate(-120%, 0px);
}

.header__logo._active {
  -webkit-transform: translate(0px, 0px);
      -ms-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
  -webkit-transition: 0.8s ease 0s;
  -o-transition: 0.8s ease 0s;
  transition: 0.8s ease 0s;
}

.header__logo img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 19rem;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu-open .menu__body {
  left: 0;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu__link {
  padding: 0 1.375rem;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer {
  padding: 3.625rem 0;
  background-color: #17171A;
}

.footer__logo {
  max-width: 240px;
  margin: 0 auto;
  margin-bottom: 24px;
}

.footer__logo img {
  width: 100%;
  height: 100%;
}

.footer__copyright {
  color: #fff;
  font-size: 12px;
  text-align: center;
}

.footer__copyright a {
  color: #F2542B;
}

body {
  position: relative;
}

.heading {
  font-family: "Anek Devanagari";
  font-size: 36px;
	line-height: 50px;
	margin-bottom: 10px;
  font-weight: 600;
  text-align: center;
	
  -webkit-transform: translate(0px, 70%);
      -ms-transform: translate(0px, 70%);
          transform: translate(0px, 70%);
  opacity: 0;
}

.heading._active {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.subtitle {
  font-family: "IBM Plex Sans";
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  max-width: 470px;
  margin: 0 auto;
  -webkit-transform: translate(0px, 100%);
      -ms-transform: translate(0px, 100%);
          transform: translate(0px, 100%);
  opacity: 0;
}

.subtitle._active {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: all 0.5s ease 0.5s;
  -o-transition: all 0.5s ease 0.5s;
  transition: all 0.5s ease 0.5s;
}

.heading-small { 
  color: #171C2A;
  font-family: "Anek Devanagari";
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 33.6px;
}

.--dark {
  color: #171C2A;
}

.--light {
  color: #fff;
}

.button {
  font-family: "IBM Plex Sans";
  font-size: 14px;
  text-transform: uppercase;
  color: #171C2A;
  font-weight: 600;
  -webkit-transition: all 0.35s ease 0s;
  -o-transition: all 0.35s ease 0s;
  transition: all 0.35s ease 0s;
}

.cta {
	background-color: #74AFE6;
	padding: 40px 0 30px;
}

.cta__wrap {
	display: -ms-grid;
    display: grid;
	grid-template-columns: 830px  310px;
    padding: 0;
    position: relative;
	justify-content: center;
	grid-column-gap: 30px;
}

.cta__heading {
	text-align: right;
	margin-bottom: 0px;
}

.cta .button { 
    color: #171C2A;
    font-family: "IBM Plex Sans";
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 36px;
    text-align: center;
	padding: 20px 40px;
	border-radius: 6px;
    background-color: #FFFFFF;
}

.cta .button:hover {  
	background-color: #293E5A;
	color: #FFFFFF;
}

.main {
	width: 100%;
	background-color: #334257;
	padding-bottom: 60px;
	max-width: unset;
}

.page-template-landing-page-2 .main, .page-template-landing-page .main { 
	padding-top: 60px;
}

.main__container {
    display: -ms-grid;
    display: grid;
	grid-template-columns: repeat(auto-fill, minmax(540px, 1fr));
    padding: 0;
    position: relative;
	justify-content: center;
	grid-column-gap: 30px;
}

.landing .main__container {
	display: -ms-grid;
	display: grid;
	grid-template-columns: 2fr 1fr;
	padding: 0;
	position: relative;
	justify-content: center;
	grid-column-gap: 30px;
} 

.landing .main__container {
	grid-template-columns: 8fr 5fr;
}

.main__columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

.main__columns img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.main__content {
  padding-right: 10px;
  margin-bottom: 3.4375rem;
}

.main__subtitle {
    text-align: left;
    color: #97CAFA;
    text-transform: uppercase;
    line-height: 30px;
    letter-spacing: 1px;
    -webkit-transform: translateY(-60%);
        -ms-transform: translateY(-60%);
            transform: translateY(-60%);
    opacity: 0;
	font-weight: 500;
	font-size: 16px;
}

.main__subtitle._active {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: all 0.5s ease 0.8s;
  -o-transition: all 0.5s ease 0.8s;
  transition: all 0.5s ease 0.8s;
}

.main__heading {
    color: #fff;
    text-align: left;
    font-weight: 600;
    -webkit-transform: translateY(50%);
        -ms-transform: translateY(50%);
            transform: translateY(50%);
    opacity: 0;
	font-size: 70px;
	line-height: 100px
}

.landing .main__heading { 
	font-size: 46px;
	line-height: 54px;
}

.main__heading._active {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: all 0.8s ease 0s;
  -o-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}

.newsletter {
	background-color: #334257;	
	text-align: center;
}
.newsletter__heading {
	font-size: 28px;
    line-height: 30px;
	max-width: 800px;
	margin: 0 auto;
	padding-top: 2.687em;
}

.main__desc .mc4wp-form input[type="email"], .newsletter .mc4wp-form input[type="email"] {
  color: #171C2A;
  font-family: "IBM Plex Sans";
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 36px;
	padding: 10px 20px;
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
}

.main__desc .mc4wp-form input[type="submit"], .newsletter .mc4wp-form input[type="submit"] { 
  color: #171C2A;
  font-family: "IBM Plex Sans";
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1.63px;
  line-height: 36px;
  text-align: center;
	padding: 10px 20px;
	border-radius: 0 6px 6px 0;
    background-color: #74AFE6;
	text-transform: uppercase;
	top: -1px;
	position: relative;
	margin-top: 20px;
}

.main__desc {
  color: #fff;
  text-align: left;
  line-height: 30px;
  letter-spacing: 1px;
  font-weight: 400;
  -webkit-transform: translateY(50%);
      -ms-transform: translateY(50%);
          transform: translateY(50%);
  opacity: 0;
	font-size: 18px;
}

.main__desc._active {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: all 0.8s ease 0.3s;
  -o-transition: all 0.8s ease 0.3s;
  transition: all 0.8s ease 0.3s;
}

.main__arrow-bottom {
  position: absolute;
  font-size: 0.6875rem;
  color: #fff;
  text-transform: uppercase;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  bottom: 6.25rem;
  right: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 150px;
}

.main__arrow-bottom svg {
  max-width: 18px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.trustedby__wrap {
    display: -ms-grid;
    display: grid;
	grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
    padding: 50px 0;
    position: relative;
	justify-content: center;
	grid-column-gap: 30px;
}

.trustedby__column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
	justify-content: center;
	margin-bottom: 25px;
}

.trustedby__column p {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 24px;
	text-transform: uppercase;
}

.services__heading {
  padding: 2.6875rem 0px 0.125rem 0px;
}

.services__wrap {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-column-gap: 30px;
  margin: 25px auto 70px;
}

.services__wrap._active :nth-child(1) {
  -webkit-transform: translate(0px, 0px);
      -ms-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
  opacity: 1;
  -webkit-transition: all 0.8s ease 0s;
  -o-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}

.services__wrap._active :nth-child(2) {
  -webkit-transform: translate(0px, 0px);
      -ms-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
  opacity: 1;
  -webkit-transition: all 0.8s ease 0.4s;
  -o-transition: all 0.8s ease 0.4s;
  transition: all 0.8s ease 0.4s;
}

.services__wrap._active :nth-child(3) {
  -webkit-transform: translate(0px, 0px);
      -ms-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
  opacity: 1;
  -webkit-transition: all 0.8s ease 0.8s;
  -o-transition: all 0.8s ease 0.8s;
  transition: all 0.8s ease 0.8s;
}

.services__column {
  padding: 29px;
  background-color: #DFEDFA;
  border-radius: 6px;
  max-width: 350px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  -webkit-transform: translate(0px, 80%);
      -ms-transform: translate(0px, 80%);
          transform: translate(0px, 80%);
  opacity: 0;
	margin-bottom: 20px;
}

.services__column img {
    width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	max-height: 200px;
	margin: 10px auto 40px;
}

.services__title {
  font-size: 22px;
  text-align: left;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 25px;
}
.page-template-landing-page-2 .services__title { 
	font-size: 28px;
	line-height: 36px;
}

.services__desc {
  font-size: 13px;
  max-width: 275px;
  text-align: left;
	line-height: 18px;
}

.page-template-landing-page-2 .services__desc {
	margin-bottom: 25px;
}

.services__includes {
  text-align: left;
}

.services__button {
  text-align: left;
  margin-bottom: 25px;
}
.page-template-landing-page-2 .services {
	background-color: #334257;
	padding-bottom: 10px;
}

.includes {
  margin-bottom: 25px;
}

.includes__title {
  font-size: 11px;
  font-weight: 600;
  line-height: 30px;
  text-transform: uppercase;
}

.includes__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.includes__item {
  font-size: 11px;
  margin-bottom: 10px;
}

.includes__item::before {
  content: "+";
  font-weight: 500;
  margin-right: 5px;
}


.process {
    background-color: #334257;	
}
.process__container {
	position: relative;
}
.process__heading {
    padding: 2.6875rem 0px 0.125rem 0px;
	margin-bottom: 20px;
}
.process__subtitle {
    margin-bottom: 65px;
	max-width: 730px;
}
.process__slider {
    position: relative;
	padding-bottom: 100px;
}
.process__wrapper {
	display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    margin: 0 auto ;
}
.process__slide {
    background-color: #DFEDFA;
    border-radius: 6px;
    padding: 2rem;
	margin-bottom: 20px;
	height: 100%;
}
.process .swiper-slide__percentage {
	background-color: #74AFE6;
	border-radius: 50%;
	width: 160px;
	height: 160px;
	padding-top: 40px;
	padding-left: 40px;
	margin: 0 auto 25px;
}
.process .swiper-slide__percentage-inner {
  color: #FFFFFF;
  font-family: "Anek Devanagari";
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
    text-align: center;
	background-color: #334257;
	width: 80px;
	height: 80px;
	line-height: 89px;
	border-radius: 50%;
}
.process .swiper-slide__title { 
  color: #171C2A;
  font-family: "Anek Devanagari";
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 24px;
  text-align: center;
	margin-bottom: 10px;
	min-height: 72px;
}
.process .swiper-slide__excerpt { 
  color: #171C2A;
  font-family: "IBM Plex Sans";
  font-size: 16px;
  letter-spacing: 0;
  line-height: 20px;
  text-align: center;
}

.timeline__wrap {
    display: -ms-grid;
    display: grid;
	grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
	grid-column-gap: 30px;
    margin: 0 auto 60px;
}

.timeline .timeline__item {
    padding: 35px 25px;
    border-radius: 7px;
    background-color: #D4E8FB;
	margin-bottom: 30px;
}

.timeline__heading {
    padding: 2.6875rem 0px 0.125rem 0px;
	margin-bottom: 20px;
}
.timeline .timeline__item__title {
    color: #171C2A;
    font-family: "IBM Plex Sans";
    font-size: 18px;
    letter-spacing: -0.1px;
    line-height: 22px;
	text-transform: uppercase;
	font-weight: bold;
}
.timeline .timeline__item__excerpt {
	color: #171C2A;
    font-family: "IBM Plex Sans";
    font-size: 18px;
    letter-spacing: -0.1px;
    line-height: 22px;
}
.timeline__subtitle {
	margin-bottom: 25px;
}
.timeline__increase {
	width: 40px;
	height: 40px;
	background-image: url(../img/icons/increase.svg);
	display: inline-block;
	background-size: contain;
	vertical-align: middle;
	margin-right: 12px;
	background-repeat: no-repeat;
}
.timeline__decrease {
	width: 40px;
	height: 40px;
	background-image: url(../img/icons/decrease.svg);
	display: inline-block;
	vertical-align: middle;
	margin-right: 12px;
	background-repeat: no-repeat;
	background-size: contain;
}

.nine_boxes {
    background-color: #334257;	
}
.nine_boxes__heading {
    padding: 2.6875rem 0px 0.125rem 0px;
	margin-bottom: 20px;
	max-width: 730px;
	margin: 0 auto;
}
.nine_boxes__wrap {
	padding-bottom: 70px;
}
.nine_boxes__row {
	display: flex;
	flex-wrap: wrap;
	padding-top: 40px;
	margin: 0px auto;
}
.nine_boxes__row:nth-child(even) {
	flex-direction: row-reverse;
}
.nine_boxes__column {
	display: flex;
	flex-direction: column;
	flex: 1;
	margin: 0 20px;
	border-radius: 6px;
    background-color: #D4E8FB;
	padding: 30px;
	position: relative;
}
.nine_boxes__column.box_1::after, .nine_boxes__column.box_2::after, .nine_boxes__column.box_7::after, .nine_boxes__column.box_8::after {
	content: "";
	display: block;
	position: absolute;
	right: -28px;
	height: 45px;
	width: 14px;
	background-image: url(../img/icons/arrow-right.svg);
	background-repeat: no-repeat;
	background-size: contain;
	top: 50%;
	margin-top: -22.5px;
}
.nine_boxes__column.box_4::after, .nine_boxes__column.box_5::after {
	content: "";
	display: block;
	position: absolute;
	left: -28px;
	height: 45px;
	width: 14px;
	background-image: url(../img/icons/arrow-left.svg);
	background-repeat: no-repeat;
	background-size: contain;
	top: 50%;
	margin-top: -22.5px;
}
.nine_boxes__column.box_3::after, .nine_boxes__column.box_6::after {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	width: 45px;
	height: 14px;
	background-image: url(../img/icons/arrow-down.svg);
	background-repeat: no-repeat;
	background-size: contain;
	bottom: -27px;
	margin-left: -22.5px;
}
.nine_boxes__title {
  color: #171C2A;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 24px;
}
.nine_boxes__counter {
	height: 56px;
    width: 56px;
    color: #171C2A;
    font-family: "Anek Devanagari";
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 66px;
    text-align: center;
	background-color: #ffffff;
	border-radius: 50%;
	margin-bottom: 9px;
}

.columns__wrap {
	display: flex;
	flex-wrap: wrap;
	padding-top: 50px;
	margin: 0px auto 50px;
}

.columns__column {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1;
	margin: 0 30px;
}

.columns__wrap:nth-child(even) {
	flex-direction: row-reverse;
}

.columns__heading {
    padding: 2.6875rem 0px 0.125rem 0px;
	margin-bottom: 20px;
}
.columns__row__heading {
	text-align: left;	
}
.page-template-landing-page-2 .columns__row__heading { 
	font-size: 30px;
    font-weight: 600;
    line-height: 36px;
}
.columns__row__content {
  color: #171C2A;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 28px;
}
.columns__row__content p { 
	margin-bottom: 30px;
}
.columns__row__content ul { 
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 44px;
}
.columns__column img {
	width: 90%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
.page-template-landing-page-2 .columns__column img {
	width: 100%; 
}
.columns__wrap:nth-child(even) .columns__column img {
	margin-right: 0;
	margin-left: auto;
}
.columns__column.Red ul li::before {  
	width: 30px;
	height: 30px;
	display: inline-block;
	background-image: url(../img/icons/error.svg);
	background-size: contain;
	background-repeat: no-repeat;
	content: "";
	vertical-align: middle;
	margin-right: 10px;
}
.columns__column.Blue ul li::before {  
	width: 30px;
	height: 30px;
	display: inline-block;
	background-image: url(../img/icons/checkmark.svg);
	background-size: contain;
	background-repeat: no-repeat;
	content: "";
	vertical-align: middle;
	margin-right: 10px;
}

.greenlist ul li:before {
	width: 24px;
  height: 24px;
  display: block;
  background-image: url(../img/icons/green.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  margin: 0 10px 0 0px;
  float: left;
}

.entry-content .greenlist ul li { 
	font-family: "Inter", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 24px;
	color: #171C2A;
	margin-bottom: 15px;
}

.resources {
  background-color: #334257;
}

.resources__heading {
    padding: 2.6875rem 0px 0.125rem 0px;
	margin-bottom: 20px;
}

.resources__subtitle {
  margin-bottom: 65px;
}

.resources__slider {
  position: relative;
	padding-bottom: 70px;
}

.resources__wrapper {
	display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-column-gap: 30px;
    margin: 0 auto ;
}

.resources__slide {
  background-color: #DFEDFA;
  border-radius: 6px;
  padding: 3.75rem 2.5rem;
	margin-bottom: 20px;
}

.resources__slide img {
  width: 100%;
  height: 100%;
  max-height: 135px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 25px;
}

.resources .swiper-slide__date {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 23px;
  text-transform: uppercase;
}

.resources .swiper-slide__title {
  font-family: "Anek Devanagari";
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  color: #171C2A;
  margin-bottom: 15px;
}

.resources .swiper-slide__button::before {
  content: "+";
  margin-right: 5px;
}

.swiper-pagination {
  position: absolute;
  bottom: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
  z-index: 10;
}

.swiper-button-next {
	height: 72px;
    width: 72px;
    background-color: #FFFFFF;
    box-shadow: 0 2px 20px 0 #293E5A;
	border-radius: 50%;
	position: absolute;
	top: 54%;
	right: -18px;
	margin-top: -22px;
	text-align: center;
	line-height: 72px;
	font-size: 25px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid #aaafb9;
  background-color: transparent;
  display: inline-block;
  border-radius: 50%;
  margin: 0px 5px;
  -webkit-transition: 250ms ease;
  -o-transition: 250ms ease;
  transition: 250ms ease;
}

.swiper-pagination-bullet-active {
	border: 0px;
  background-color: #97CAFA;
  border-radius: 4.5px;
  -webkit-transition: 250ms ease;
  -o-transition: 250ms ease;
  transition: 250ms ease;
}

.testimonials {
  background-color: #DFEDFA;
  padding-bottom: 60px;
}

.testimonials__heading {
  padding: 2.6875rem 0px 0.125rem 0px;
	margin-bottom: 20px;
}

.testimonials__subtitle {
  margin-bottom: 60px;
}

.testimonials__wrap {
  display: -ms-grid;
  display: grid;
  margin: 0 auto;
  margin-bottom: 60px;
}

.testimonials__item {
  padding: 30px 20px 22px 22px;
  background-color: #FFFFFF;
  border-radius: 6px;
  margin-bottom: 22px;
  width: 31%;
  float: left;
}

.testimonials__img {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
}

.testimonials__img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonials__quote {
  color: #171C2A;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 0;
  line-height: 20px;
}

.testimonials__person {
  font-family: "Anek Devanagari";
  font-weight: 500;
  color: #171C2A;
  text-transform: uppercase;
}

.testimonials__positions {
  color: #171C2A;
  font-size: 10px;
}

.testimonials__gap {
  width: 2%;
}

.questions {
  background-color: #F7FBFE;
  padding-bottom: 88px;
}

.questions__heading {
  padding: 2.6875rem 0px 0.125rem 0px;
}

.questions__subtitle {
  margin-bottom: 60px;
}

.questions__wrap {
  max-width: 57.375rem;
  margin: 0 auto;
}

.questions__item {
  border-bottom: 1px solid #171C2A;
  position: relative;
}

.questions__item button {
  padding: 30px 12px;
}

.questions__item:first-of-type {
  border-top: 1px solid #171C2A;
}

.questions__title {
  width: 100%;
  text-align: left;
}

@supports (font-size: clamp( 0.875rem , 0.7720588235rem  +  0.3921568627vw , 1.125rem )) {
  .questions__title {
    font-size: clamp( 0.875rem , 0.7720588235rem  +  0.3921568627vw , 1.125rem );
  }
}

@supports not (font-size: clamp( 0.875rem , 0.7720588235rem  +  0.3921568627vw , 1.125rem )) {
  .questions__title {
    font-size: calc(0.875rem + 0.25 * (100vw - 26.25rem) / 63.75);
  }
}

.questions__title::after {
  content: "+";
  font-size: 30px;
  font-weight: 300;
  color: #171C2A;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 200ms ease;
  -o-transition: 200ms ease;
  transition: 200ms ease;
}

.questions__body {
  font-size: 1rem;
  margin: 15px 0;
  padding-left: 12px;
  line-height: 24px;
  text-align: left;
}

@supports (max-width: clamp( 18.75rem , -0.4464285714rem  +  71.4285714286vw , 53.125rem )) {
  .questions__body {
    max-width: clamp( 18.75rem , -0.4464285714rem  +  71.4285714286vw , 53.125rem );
  }
}

@supports not (max-width: clamp( 18.75rem , -0.4464285714rem  +  71.4285714286vw , 53.125rem )) {
  .questions__body {
    max-width: calc(18.75rem + 34.375 * (100vw - 26.875rem) / 48.125);
  }
}

.questions ._spoller-active::after {
  -webkit-transform: rotate(45deg) translate(-100%, -50%);
      -ms-transform: rotate(45deg) translate(-100%, -50%);
          transform: rotate(45deg) translate(-100%, -50%);
  -webkit-transition: 200ms ease;
  -o-transition: 200ms ease;
  transition: 200ms ease;
}

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.swiper-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

.page-with-sidebar {
    display: flex;
    flex-direction: row-reverse;
	gap: 30px;
	margin-top: 65px;
}

.page-with-sidebar #primary {
	flex: 3;
}

.page-with-sidebar #secondary {
    flex: 1;
}

.page .entry-title {
	color: #171C2A;
    font-family: "Anek Devanagari";
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 46px;
	padding-bottom: 30px;
	margin-bottom: 45px;
	border-bottom: 1px solid #171C2A;
}

.entry-content h2 { 
	color: #171C2A;
	font-size: 36px;
	font-weight: bold;
	letter-spacing: 0;
	line-height: 46px;
	margin-bottom: 30px;
}

.entry-content h3 { 
	color: #171C2A;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 28px;
	margin-bottom: 30px;
}

.entry-content p {
    color: #171C2A;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 28px;
	margin-bottom: 30px;
}

.entry-content blockquote p { 
	font-size: 20px;
	font-weight: 700;
}

.entry-content ul, .entry-content ol {
	margin-bottom: 30px;
}

.entry-content ol {
	padding-left: 1.5em;
}

.entry-content ul li, .entry-content ol li {
    color: #171C2A;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 28px;
}

.entry-content img { 
	margin-bottom: 30px;
}

#secondary .widget .widget-title {
	color: #171C2A;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 18px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

#secondary .widget { 
	margin-bottom: 30px;
}

#secondary .widget.widget_block p {  
	margin-bottom: 15px;
}

#secondary .widget p a { 
	text-decoration: underline;
	color: #171C2A;
}

#secondary .widget p a:hover {  
	text-decoration: none;
	color: #000;
}

#secondary .widget ul li { 
	margin-bottom: 15px;
} 

#secondary .widget ul li a { 
    color: #171C2A;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 18px;
	text-decoration: underline;
}

#secondary .widget ul li a:hover {  
	text-decoration: none;
	color: #000;
}

#secondary .widget .wp-block-button a {
	border-radius: 6px;
    background-color: #74AFE6;
	color: #171C2A;
	font-size: 15px;
    font-weight: bold;
    letter-spacing: 1.88px;
    line-height: 36px;
	text-transform: uppercase;
}
#secondary #block-12 .wp-block-button a {
    border-radius: 4.8px;
    background-color: #FFFFFF;
	padding: 5px 20px;
}

#secondary #block-12 {
	border-radius: 6px;
	background-color: #293E5A;
	padding: 25px;
	color: #fff;
}

#secondary #block-12 .widget-title { 
	color: #FFFFFF;
    font-size: 22px;
    letter-spacing: 0;
    line-height: 24px;
	text-transform: none;
	margin-bottom: 30px;
}

#secondary #block-12 img { 
	margin-bottom: 50px;
}

.footer__copyright {
	line-height: 18px;
}

.client_testimonial {
	padding: 30px;
	border-radius: 5px;
	background-color: #D4E8FB;
}

.client_testimonial img { 
	margin-bottom: 15px;
}

.client_testimonial p { 
	margin-bottom: 0px;
}

.page .entry-footer {
    padding-top: 45px;
    margin-top: 45px;
	margin-bottom: 60px;
    border-top: 1px solid #171C2A;
	color: #000000;
   	font-family: "IBM Plex Sans";
  	font-size: 14px;
 	font-weight: bold;
  	letter-spacing: 0;
 	line-height: 30px;
	text-transform: uppercase;
}

.social-icons {
    display: flex;
}

.social-icons a {
  display: inline-block;
  width: 18px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  margin-right: 20px;
}

.social-icons .facebook {
  color: 000000;
}

.social-icons .twitter {
  color: 000000;
}

.social-icons i {
  font-size: 18px;
}

@media (max-width: 61.99875em) {
  .main__columns {
    padding: 0 20px;
  }

  .main__arrow-bottom {
    display: none;
  }

  .testimonials__item {
    width: 32%;
  }
}

@media (max-width: 1240px) { 
	.swiper-button-next {
		right: 5px;
		height: 50px;
		width: 50px;
		line-height: 50px
	}
}

@media (max-width: 1140px) { 
	.main__columns {
	    padding: 0 25px;
		justify-content: center;
	}
	.main__columns img {
  		max-width: 500px; 
	}
	.main__heading {
	    font-size: 56px;
	    line-height: 80px;
	}
}

@media (max-width: 960px) {
	.page-with-sidebar #primary {
		flex: 2;
	}
}

@media (max-width: 840px) { 
	.cta__wrap {
	    grid-template-columns: none;
	    text-align: center;
	}
	.cta__column {
		margin-bottom: 15px;
	}
	.cta__heading {
	  text-align: center;
	}
	.columns__column img { 
		width: 100%;
	}
	
}

@media (max-width: 768px) {
	.page-with-sidebar {
	  flex-direction: column-reverse;
	}
	#block-11, #block-12 {
		display: none;
	}
	.main__container, .landing .main__container {
		grid-template-columns: none;
	}
	.main__heading {
	    font-size: 44px;
	    line-height: 60px;
	}
	.landing .main__heading {
	    font-size: 32px;
	    line-height: 42px;
	}
	.main__content {
		margin-bottom: 20px;
	}
	.columns__wrap {
		display: grid;
		grid-template-columns: 1fr;
		padding-top: 25px;
		margin: 0px auto 30px;
	}
	.columns__column img { 
		margin-bottom: 15px;
	}
	.nine_boxes__row {
		flex-direction: column!important;
	}
	.nine_boxes__column {
		margin: 20px 0;
	}
	.nine_boxes__column::after {
		display: none!important;
	}
	.nine_boxes__row {
	  padding-top: 0;
	}
}

@media (max-width: 47.99875em) {
  .icon-menu {
    display: none;
    position: relative;
    width: 1.875rem;
    height: 1.125rem;
    cursor: pointer;
    z-index: 5;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: #fff;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }

  .menu-open .icon-menu {
    position: absolute;
    top: 27px;
    right: 35px;
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open .icon-menu::before,
  .menu-open .icon-menu::after {
    background-color: #171C2A;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  .menu__body {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #EDDDCE;
    top: 0;
    left: -100%;
    z-index: 2;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }

  .menu__list {
    margin-top: 50%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .menu__item {
    padding: 9px 0;
  }

  .menu__link {
    color: #171C2A;
    font-size: 24px;
  }

  .services__column {
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials__item {
    width: 48%;
  }

  .testimonials__gap {
    width: 4%;
  }
}

@media (min-width: 980px) {
	.social-icons-left {
		float: left;
		
	}
	.social-icons {
		float: right;
	}
}

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

@media (any-hover: hover) {
  .menu__link:hover {
    color: #F2542B;
    -webkit-transition: all 0.35s ease 0s;
    -o-transition: all 0.35s ease 0s;
    transition: all 0.35s ease 0s;
  }

  .button a:hover {
    color: #97cafa;
    -webkit-transition: all 0.35s ease 0s;
    -o-transition: all 0.35s ease 0s;
    transition: all 0.35s ease 0s;
  }
}