@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap");
* {
  font-family: "Manrope";
  box-sizing: border-box;
  margin: 0;
}

.reset_pass_page.popup{
	margin: 60px auto;
}

body {
  font-family: "Manrope";
  background-color: #E8F2F4;
}

button{
	cursor: pointer;
}

.container-header {
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.container {
  width: 1290px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.main-heading {
  font-weight: 500;
  font-size: 46px;
  line-height: 68px;
  letter-spacing: -1px;
  color: #1D1D1D;
}
.main-heading--purple {
  color: #362F76;
}

.heading {
  font-weight: 500;
  font-size: 34px;
  line-height: 68px;
  letter-spacing: -1px;
  color: #362F76;
}
.heading--center {
  text-align: center;
}

.text-description {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #7A7799;
}
.text-description--center {
  text-align: center;
}

header {
  border-bottom: 1px solid #D6DFE1;
}

.logo {
  display: block;
  width: 395px;
  height: 90px;
}
.logo img {
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-inner__right-part {
  display: flex;
  align-items: center;
}
.header-inner__right-part .btn {
  margin-left: 10px;
}
.header-inner__right-part .btn:first-of-type {
  margin-left: 30px;
}
.header-inner .gumb {
  display: none;
}

.gumb {
  background-image: url(../img/gumb.svg);
  background-repeat: no-repeat;
  background-size: 22px 16px;
  width: 22px;
  height: 16px;
  cursor: pointer;
}
.gumb.active {
  background-image: url(../img/close.svg);
  background-repeat: no-repeat;
  background-size: 16px 16px;
  width: 16px;
  height: 16px;
}

.search {
  width: 22px;
  height: 22px;
}
.search img {
  width: 100%;
}

.menu {
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.menu ul{
	display: flex;
  	align-items: center;
}
.menu li {
  list-style: none;
  margin-right: 14px;
  position: relative;
}
.menu li:last-of-type {
  margin-right: 30px;
}
.menu li.current-menu-item:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  background: #3394C6;
  height: 2px;
  width: 100%;
}
.menu li:hover a {
  color: #3394C6;
}
.menu li.menu-item-has-children {
  position: relative;
}
.menu li.menu-item-has-children:hover:after {
  transform: rotate(180deg);
}
.menu li.menu-item-has-children:hover .sub-menu {
  position: absolute;
  top: 100%;
  right: -40px;
  display: block;
}
.menu li.menu-item-has-children:after {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  right: -15px;
  background-image: url(../img/arrow_after.svg);
  background-repeat: no-repeat;
  width: 10px;
  height: 6px;
}
.menu li.menu-item-has-children .sub-menu {
  display: none;
  padding: 17px 27px;
  background-color: #fff;
  border-radius: 12px;
  width: fit-content;
}
.menu li.menu-item-has-children .sub-menu a {
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  color: #362F76;
  text-decoration: none;
  transition: 0.3s;
}

.menu li.menu-item-has-children.pll-parent-menu-item{
	padding-left: 15px;
}

.menu li.menu-item-has-children.pll-parent-menu-item:after{
	top: calc(50% - 3px);
}
.menu li.menu-item-has-children.pll-parent-menu-item .sub-menu {
	width: 64px;
	padding: 17px 20px;
    flex-direction: column;
}

.menu li.menu-item-has-children.pll-parent-menu-item .sub-menu li.current_page_item a{
	order: -1;
	color: #F16262;
}
.menu li.menu-item-has-children.pll-parent-menu-item .sub-menu li.lang-item-first{
	border-bottom: 2px solid #D6DFE1;
}
.menu li.menu-item-has-children .sub-menu a:hover {
  color: #3394C6;
}
.menu li a {
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  color: #362F76;
  text-decoration: none;
  transition: 0.3s;
}

.menu .sub-menu li{
  margin: 0;
}

.btn {
  padding: 6px 28px 8px;
  display: inline-block;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  hanging-punctuation: first last;
  color: #FFFFFF;
  text-decoration: none;
  border: none;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor:pointer;
}
.btn--blue {
  background: #3394C6;
}
.btn--blue:hover {
  background: #2B87B7;
}
.btn--red {
  background: #F16363;
}
.btn--red:hover {
  background: #E65959;
}

.shopping-wraper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 20px;
}

.shopping-card {
  background: #FFFFFF;
  border-radius: 12px;
}
.shopping-card__top {
  padding: 24px 45px 14px 45px;
  border-bottom: 1px solid #E8F2F4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shopping-card__top img {
  width: 215px;
  height: 100px;
}
.shopping-card__bottom {
  padding: 20px 30px 18px;
}
.shopping-card__link-site {
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  color: #362F76;
}
.shopping-card__charity-text {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #362F76;
  margin-bottom: 20px;
}
.shopping-card__charity-text span {
  font-weight: 700;
  color: #F16363;
}

.link-shop {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: 0.3s;
}
.link-shop:hover span {
  color: #F16363;
}
.link-shop:hover svg path {
  stroke: #F16363;
}
.link-shop span {
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  color: #3394C6;
}
.link-shop svg {
  width: 18px;
  height: 18px;
  margin-left: 8px;
}

.center-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-form {
  border: 1px solid #C9D2D5;
  border-radius: 4px;
}
.search-form input {
  border: none;
  background-color: transparent;
  padding: 11px 20px 13px 51px;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #919EA3;
  background-image: url(../img/search_input.svg);
  background-repeat: no-repeat;
  background-position: 20px center;
  background-size: 16px 16px;
  width: calc(100% - 82px);
  outline: none;
}
.search-form input::placeholder {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #919EA3;
}
.search-form button {
  background-color: transparent;
  border: none;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  color: #3394C6;
  padding: unset;
}

.soc-media {
  display: flex;
  align-items: center;
}
.soc-media__link {
  background: #FFFFFF;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: 0.3s;
}
.soc-media__link:last-of-type {
  margin-right: 0;
}
.soc-media__link:hover {
  background: #3394C6;
}
.soc-media__link:hover svg path {
  fill: #fff;
}
.soc-media__link svg {
  width: 26px;
  height: 26px;
}

footer {
  border-top: 1px solid #D6DFE1;
}

.container-footer {
  width: 1340px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.copyright {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #7A7799;
}

.account {
  display: flex;
  align-items: center;
  border-left: 1px solid #D6DFE1;
  padding-left: 33px;
  margin-left: 25px;
}
.account__name {
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  color: #362F76;
}
.account__email {
  font-weight: 500;
  font-size: 14px;
  line-height: 30px;
  color: #362F76;
}
.account__link {
  margin-left: 20px;
}
.account__link svg {
  width: 20px;
  height: 19px;
}

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

html.hidden {
  overflow: hidden;
}

.popup {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 30px 44px;
  position: relative;
  width: 30%;
  margin: 0 auto;
}
.popup .text-description {
  margin-bottom: 22px;
}
.popup .form .btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup .popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 12px;
  height: 12px;
  cursor: pointer;
}
.popup .popup-close:hover path {
  stroke: #F16363;
}
.popup .popup-heading {
  margin-bottom: 20px;
}

.popup-heading {
  font-weight: 500;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
  color: #1D1D1D;
}
.popup-heading--center {
  text-align: center;
}

.form-input {
  display: block;
  margin-bottom: 10px;
  position:relative;
}
.form-input.password {
  position: relative;
}
.form-input.password .open-password {
  position: absolute;
  top: 44px;
  right: 16px;
  cursor: pointer;
  width: 20px;
  height: 15px;
}
.form-input.password .open-password img{
  width: 100%;
}
.form-input.password .closed-password {
  display: none;
  position: absolute;
  top: 44px;
  right: 16px;
  cursor: pointer;
  width: 22px;
  height: 16px;
}
.form-input.password .closed-password img{
  width: 100%;
}
.form-input.password input.error .open-password {
  top: 43px;
}
.form-input.password input.error .closed-password {
  top: 43px;
}
.form-input.password input.valid {
  background-image: unset;
}
.form-input:last-of-type {
  margin-bottom: 20px;
}
.form-input__name {
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  color: #362F76;
  margin-bottom: 4px;
  display: block;
}
.form-input input.info_input{
	padding-right: 40px;
}
.form-input input {
  display: block;
  border: 1px solid #C9D2D5;
  border-radius: 4px;
  padding: 10px 20px 14px;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #362F76;
  width: 100%;
  outline: none;
  max-height: 56px;
}
.form-input input[type="password"]{
  color:#F16363;
  font-size: 24px;
  letter-spacing: -4px;
}

.form-input input[type="password"]::placeholder{
  font-size: 18px;
  line-height: 30px;
  letter-spacing: normal;
}

.form-input input:focus {
  border: 2px solid #3394C6;
}
.form-input input::placeholder {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #919EA3;
}
.form-input input.valid {
  background-image: url(../img/success_icon.svg);
  background-repeat: no-repeat;
  background-size: 14px 11px;
  background-position: 96% center;
}

.form__links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}
.form__links a {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  text-decoration-line: underline;
  color: #362F76;
  transition: 0.3s;
}
.form__links a:hover {
  color: #3394C6;
}

.have-account {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #362F76;
  margin-top: 24px;
  display: block;
  transition: 0.3s;
}
.have-account--center {
  text-align: center;
}
.have-account:hover {
  color: #3394C6;
}

.error {
  font-size: 12px;
  color: #F16363;
}

.mfp-bg {
  background: #e8f2f4 !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  filter: blur(20px);
  -webkit-filter: blur(20px);
}

.message_bl{
  margin-top: 10px;
  text-align: center;
}

.message_bl span{
  display: none;
}

.message_bl .success_message{
  font-weight: 600;
}

.message_bl .error_message{
  font-weight: 600;
  color:red;
}

.search_p{
	min-height: 400px
}

.already_logged{
	text-align:center;
	padding: 40px 0;
}

.info_bl {
	position: absolute;
	z-index: 10;
	left: 91%;
	width: 20px;
	top: 42px;
	cursor:pointer;
}

.info_bl:hover{
	width: 324px;
}

.info_bl:hover .info_text{
	display:block;
}

.info_text{
	color: #FFF;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 22px;
	padding: 14px 18px;
	border-radius: 4px;
	background: #2B87B7;
	display: none;
}

.info_text a{
	color: #FFF;
	text-decoration: underline;
}

.funds_bl{
	border-radius: 12px;
	background: #FFF;
	display: flex;
    align-items: stretch;
	margin-bottom: 18px;
}

.funds_logo{
	padding: 0;
	border-right: 1px solid #E8F2F4;
	min-width: 302px;
	display:flex;
	align-items: center;
	justify-content: center;
	height: auto;
}

.funds_logo img{
	width: 100%;
	height: auto;
	max-width: 302px;
    padding: 10px;
}

.funds_text-btn{
	display: flex;
    align-items: flex-end;
    padding: 30px;
}

.funds_text h2{
	color: #362F76;
	font-size: 20px;
	font-weight: 600;
	line-height: 22px;
	margin-bottom: 11px
}

.funds_text{
	margin-right: 100px;
}

.funds_text p{
	color: #362F76;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	margin: 0;
}

.funds_grid{
	padding-bottom: 60px;
    margin-top: -60px;
}

.mob_switch{
	display:none
}


.mob_switch ul li{
	display:none;
}

.mob_switch ul.menu li.menu-item-has-children.pll-parent-menu-item {
	display:block;
	width: fit-content;
    position: relative;
    top: inherit;
    right: inherit;
    left: initial;
    bottom: inherit;
}

.mob_switch ul li ul li{
	display:block;
}

.mob_switch .menu li.pll-parent-menu-item.menu-item-has-children:hover .sub-menu{
	position: absolute;
    width: 100%;
    top: 46px;
    height: fit-content;
    width: fit-content;
}

.wrap_sw_gumb{
	display:none;
	align-items:center;
}
.faq-page{
	background-color: #fff;
}
.about-sec-feq{
	background-color: #E8F2F4;
}
.about-sec-feq__inner{
	display: flex;
	align-items: center;
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: 50% 100%;
}
.about-sec-feq__inner .text{
	width: 45%;
	padding: 55px 0 50px;
}
.about-sec-feq__inner .text h1{
	color: #1D1D1D;
	font-size: 38px;
	font-style: normal;
	font-weight: 500;
	line-height: 54px; /* 142.105% */
	letter-spacing: -1px; 
	margin-bottom: 30px;
}
.about-sec-feq__inner .text h1 span{
	color: #1165B8; 
}
.about-sec-feq__inner .text .descr p{
	color: #362F76;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
	margin-bottom: 20px;
}
.about-sec-feq__inner .text .descr p:last-of-type{
	margin-bottom: 0;
}
.about-sec-feq__inner .img{
	display: none;
	width: calc(55% - 96px);
	margin-left: 96px;
	vertical-align: bottom;
}
.about-sec-feq__inner .img img{
	width: 100%;
}
.faq-wrap{
	width: 70%;
	margin: 0 auto;
	padding: 50px 0 72px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.faq-wrap .btn{
	display: inline-block;
}
.faq-wrap__title{
	color: #1D1D1D;
	font-size: 38px;
	font-style: normal;
	font-weight: 500;
	line-height: 54px; /* 142.105% */
	letter-spacing: -1px; 
	text-align: center;
	margin-bottom: 20px;
}
.faq-wrap .accordion-sec{
	border-radius: 12px;
	background: #E8F2F4; 
	margin-bottom: 10px;
	width: 100%;
	cursor: pointer;
}
.faq-wrap .accordion-sec.active .name-sec {
  border-bottom: 1px solid #FFF;
}
.faq-wrap .accordion-sec.active .name-sec img {
  transform: rotate(180deg);
}
.faq-wrap .accordion-sec:last-of-type{
	margin-bottom: 30px;
}
.name-sec{
	padding: 25px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.name-sec span{
	color: #362F76;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 30px; 
}
.name-sec img{
	width: 14px;
	height: 14px;
	display: block;
}
.faq-wrap .accordion-sec .content{
	padding: 30px 30px 35px 30px;
	color: #362F76;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
}
.news-page__inner{
	padding: 65px 0 40px;
}
.news-page__inner .title-news{
	color: #362F76;
	font-size: 46px;
	font-style: normal;
	font-weight: 500;
	line-height: 68px; /* 147.826% */
	letter-spacing: -1px;
	margin-bottom: 30px;
}
.single-news{
	border-radius: 12px;
	background-color: #FFF;
	overflow: hidden;
}
.single-news .img{
	width: 100%;
	height: 190px;
	display: block;
}
.single-news .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.single-news .text{
	padding: 20px 30px 21px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: calc(100% - 190px);
}
.single-news .text p{
	color: #362F76;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 28px;
	margin-bottom: 10px;
}
.single-news .text .bottom-text{
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-decoration: none;
}
.single-news .text .bottom-text .date{
	color: #919EA3;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 30px;
}
.single-news .text .bottom-text img{
	width: 32px;
	height: 20px;
	display: block;
}
.news-wrap{
	display: flex;
	flex-flow: row;
	flex-wrap: wrap;
	width: calc(100% + 23px);
	margin-left: -23px;
}
.news-wrap .single-news{
	width: calc(33.3% - 23px);
	margin-left: 23px;
	margin-bottom: 23px;
}
.center-div{
	display: flex;
	justify-content: center;
}
.main-section-single-post{
	background-color: #fff;
	padding: 30px 0 37px;
}
.back-link{
	display: flex;
	align-items: center;
	text-decoration: none;
	margin-bottom: 15px;
}
.back-link img{
	width: 32px;
	height: 20px;
	display: block;
	margin-right: 7px;
}
.back-link span{
	color: #3394C6;
	font-size: 16px;
	font-weight: 700;
	line-height: 30px; /* 187.5% */
	letter-spacing: 1px;
}
.post-flex{
	display: flex;
	align-items: center;
}
.post-flex .img{
	width: 45%;
}
.post-flex .img img{
	width: 100%;
	border-radius: 12px;
	object-fit: cover;
}
.post-flex .text{
	width: calc(55% - 40px);
	margin-left: 40px;
}
.post-flex .text .date{
	color: #919EA3;
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
	margin-bottom: 10px;
}
.post-flex .text .title{
	color: #362F76;
	font-size: 30px;
	font-weight: 500;
	line-height: 44px; /* 146.667% */
	letter-spacing: -1px;
	margin-bottom: 20px;
}
.soc-media-single-post{
	display: flex;
	align-items: center;
}
.soc-media-single-post span{
	color: #919EA3;
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
	margin-right: 20px;
}
.soc-media-single-post .soc-media__link{
	background: #3394C6;
}
.soc-media-single-post .soc-media__link img{
	width: 26px;
	height: 26px;
	display: block;
}
.soc-media-single-post .soc-media__link:hover{
	background: #362F76;
}
.single-post__inner{
	width: 55%;
	margin: 0 auto;
	padding: 40px 0 76px;
}
.single-post__inner h1{
	color: #362F76;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 30px;
	margin-bottom: 20px;
}
.single-post__inner h2{
	color: #362F76;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 30px;
	margin-bottom: 20px;
}
.single-post__inner h3{
	color: #362F76;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 30px;
	margin-bottom: 20px;
}
.single-post__inner h4{
	color: #362F76;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 30px;
	margin-bottom: 20px;
}
.single-post__inner h5{
	color: #362F76;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 30px;
	margin-bottom: 20px;
}
.single-post__inner h6{
	color: #362F76;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 30px;
	margin-bottom: 20px;
}
.single-post__inner p{
	color: #362F76;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	margin-bottom: 20px;
}
.single-post__inner ul li{
	color: #362F76;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	margin-bottom: 20px;
}
.single-post__inner ol li{
	color: #362F76;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	margin-bottom: 20px;
}
.single-post__inner p:last-of-type{
	margin-bottom: 30px;
}
.single-post__inner ul li:last-of-type{
	margin-bottom: 30px;
}
.single-post__inner ol li:last-of-type{
	margin-bottom: 30px;
}
.single-post__inner .foto-post{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 30px;
}
.single-post__inner .foto-post img{
	width: 100%;
	object-fit: cover;
	border-radius: 12px;
	height: 390px;
}
.single-post__inner .foto-post .heading-img-post{
	color: #362F76;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	line-height: 24px;
	margin-top: 10px;
}
.more-news-sec{
	margin-bottom: 50px;
}
.more-news-sec .title{
	color: #362F76;
	text-align: center;
	font-size: 34px;
	font-weight: 500;
	line-height: 68px; /* 200% */
	letter-spacing: -1px;
}