/***** Responsive breakpoints*****/
/* Colors */
/* fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
*,
html {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-size: 16px;
  font-family: "Montserrat", sans-serif !important;
  font-weight: normal;
  color: #303030;
}

.container {
  width: 100%;
  max-width: 1524px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  display: block;
}
@media only screen and (max-width: 1440px) {
  .container {
    max-width: 1366px;
  }
}
@media only screen and (max-width: 1280px) {
  .container {
    max-width: 1200px;
    padding: 0 44px;
  }
}
@media only screen and (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 32px;
  }
}
@media only screen and (max-width: 780px) {
  .container {
    max-width: 100%;
    padding: 0 24px;
  }
}
.container__inner {
  padding: 0 110px;
}
@media only screen and (max-width: 1440px) {
  .container__inner {
    padding: 0 60px;
  }
}
@media only screen and (max-width: 1280px) {
  .container__inner {
    padding: 0 44px;
  }
}
@media only screen and (max-width: 1024px) {
  .container__inner {
    padding: 0 32px;
  }
}
@media only screen and (max-width: 780px) {
  .container__inner {
    max-width: 100%;
    padding: 0 24px;
  }
}

.paypal {
  width: 120px;
}

/*flexbox*/
/*Flexbox SASS mixins*/
.flex {
  display: flex;
}
.flex__wrap {
  flex-wrap: wrap;
}
.flex__col {
  flex-direction: column;
}
.flex__row {
  flex-direction: row;
}
.flex__reverse {
  flex-direction: row-reverse;
}
.flex__grow {
  flex-grow: 1;
  min-width: 1px;
}
.flex__shrink {
  flex-shrink: 0;
}
.flex__1 {
  flex: 1;
}
.flex__2 {
  flex: 2;
}
.flex__3 {
  flex: 3;
}
.flex__aln-start {
  align-items: flex-start;
}
.flex__aln-center {
  align-items: center;
}
.flex__aln-end {
  align-items: flex-end;
}
.flex__jfy-start {
  justify-content: flex-start;
}
.flex__jfy-center {
  justify-content: center;
}
.flex__jfy-end {
  justify-content: flex-end;
}
.flex__jfy-between {
  justify-content: space-between;
}
.flex__jfy-around {
  justify-content: space-around;
}

.header {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  background: #0D0C22;
  color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}
.header .logo {
  margin-right: 44px;
}
@media only screen and (max-width: 1024px) {
  .header .logo {
    margin-right: 24px;
  }
}
@media only screen and (max-width: 780px) {
  .header .logo {
    flex: 1;
  }
}
.header .logo img {
  width: 100px;
}
@media only screen and (max-width: 1024px) {
  .header .logo img {
    width: 80px;
  }
}
.header .hide-mobile {
  width: 100%;
}
@media only screen and (max-width: 780px) {
  .header .hide-mobile {
    display: none;
  }
}
.header .show-mobile {
  display: flex;
  position: absolute;
  top: 62px;
  left: 0;
  width: 100%;
  max-height: calc(100vh - 64px);
  overflow: hidden scroll;
  flex-direction: column;
  background: #0D0C22;
  padding: 32px;
}
.header .menu-bars {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
}
.header .menu-bars i {
  font-size: 32px;
}
@media only screen and (max-width: 780px) {
  .header .menu-bars {
    display: flex;
  }
}
.header__left .left-ul {
  height: 80px;
}
@media only screen and (max-width: 780px) {
  .header__left .left-ul {
    width: 100%;
    height: 100%;
  }
  .header__left .left-ul .row-item {
    flex-direction: column;
    width: 100%;
  }
}
.header__left li {
  margin-right: 44px;
}
@media only screen and (max-width: 1440px) {
  .header__left li {
    margin-right: 32px;
  }
}
@media only screen and (max-width: 1024px) {
  .header__left li {
    margin-right: 16px;
  }
}
@media only screen and (max-width: 780px) {
  .header__left li {
    margin-right: 0;
    width: 100%;
    padding: 12px 0;
    text-align: center;
  }
}
.header__left li a {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
}
@media only screen and (max-width: 1024px) {
  .header__left li a {
    font-size: 14px;
    width: 100%;
  }
}
.header__left li a i {
  font-weight: 700;
}
.header__left .main-dropdown {
  position: relative;
  height: 80px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 780px) {
  .header__left .main-dropdown {
    height: auto;
    align-items: self-start;
    justify-content: flex-start;
    position: relative;
    flex-direction: column;
  }
}
.header__left .main-dropdown:hover .fa-angle-down:before {
  content: "\f106";
}
.header__left .main-dropdown:hover .dropdown {
  display: block;
}
.header__right {
  font-size: 14px;
}
@media only screen and (max-width: 780px) {
  .header__right {
    width: 100%;
    flex-direction: column;
  }
}
.header__right ul {
  margin-right: 32px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .header__right ul {
    margin-right: 16px;
  }
}
@media only screen and (max-width: 780px) {
  .header__right ul {
    width: 100%;
    height: auto;
    padding: 8px 0;
    margin-right: 0;
    justify-content: flex-start;
  }
}
.header__right .lang-dropdown {
  position: relative;
}
@media only screen and (max-width: 780px) {
  .header__right .lang-dropdown {
    font-weight: 700;
    text-align: center;
  }
  .header__right .lang-dropdown li {
    width: 100%;
  }
}
.header__right .lang-dropdown .dropdown {
  top: 80px;
}
@media only screen and (max-width: 780px) {
  .header__right .lang-dropdown .dropdown {
    width: 100%;
    position: relative;
    top: 12px;
    padding: 0;
  }
}
.header__right .lang-dropdown:hover .fa-angle-down:before {
  content: "\f106";
}
.header__right .lang-dropdown:hover .dropdown {
  display: block;
}
.header__right .news-dropdown {
  position: relative;
}
@media only screen and (max-width: 780px) {
  .header__right .news-dropdown {
    font-size: 14px;
    font-weight: 700;
    align-items: flex-start;
    flex-direction: column;
    text-align: center;
  }
  .header__right .news-dropdown li {
    width: 100%;
  }
}
.header__right .news-dropdown .dropdown {
  white-space: nowrap;
  top: 80px;
}
@media only screen and (max-width: 780px) {
  .header__right .news-dropdown .dropdown {
    width: 100%;
    position: relative;
    top: 12px;
    left: 0;
    padding: 0;
  }
}
.header__right .news-dropdown:hover .fa-angle-down:before {
  content: "\f106";
}
.header__right .news-dropdown:hover .dropdown {
  display: block;
}
.header .dropdown {
  background: #0D0C22;
  color: #ffffff;
  position: absolute;
  top: 80px;
  height: auto;
  left: 0;
  padding: 32px;
  transition: all ease-in-out 0.3s;
  display: none;
  z-index: 5;
}
@media only screen and (max-width: 780px) {
  .header .dropdown {
    width: 100%;
    left: 0;
    top: 12px;
    position: relative;
    padding: 0;
  }
  .header .dropdown .dropdown-row {
    flex-direction: column;
  }
}
.header .dropdown.larg-dd {
  width: 797px;
}
@media only screen and (max-width: 780px) {
  .header .dropdown.larg-dd {
    width: 100%;
  }
}
.header .dropdown li {
  margin-bottom: 16px;
}
.header .dropdown li:last-child {
  margin-bottom: 0;
}
.header .dropdown li a {
  color: #ffffff;
  font-weight: 400;
  line-height: 24px;
  font-size: 18px;
}
@media only screen and (max-width: 1024px) {
  .header .dropdown li a {
    font-size: 14px;
    line-height: 20px;
  }
}
.header .dropdown li a.active, .header .dropdown li a:hover {
  color: #CECECE;
}
.header .dropdown__item {
  margin-right: 32px;
}
@media only screen and (max-width: 780px) {
  .header .dropdown__item {
    margin-right: 0px;
  }
}
.header .dropdown__item h6 {
  font-weight: 700;
  color: #E86830;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 16px;
  text-transform: capitalize;
}
@media only screen and (max-width: 780px) {
  .header .dropdown__item h6 {
    margin-bottom: 8px;
    line-height: 30px;
    font-size: 20px;
  }
}
.header .dropdown__item:last-child {
  margin-right: 0;
}
.header .dropdown__item li {
  margin-bottom: 16px;
}
@media only screen and (max-width: 780px) {
  .header .dropdown__item li {
    margin-bottom: 0;
  }
}
.header .dropdown__item li a {
  font-weight: 400;
  line-height: 24px;
  text-transform: capitalize;
}
@media only screen and (max-width: 780px) {
  .header .dropdown__item li a {
    line-height: 20px;
  }
}
.header .btn {
  min-width: 144px;
}
@media only screen and (max-width: 780px) {
  .header .donate {
    display: none;
  }
}
.header .mobile-donate {
  display: none;
  margin-right: 24px;
}
@media only screen and (max-width: 780px) {
  .header .mobile-donate {
    display: flex;
  }
}
.header__search {
  width: 73px;
  height: 80px;
  cursor: pointer;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
  transition: all ease-in-out 0.3s;
  position: relative;
}
.header__search.show-mobile-search {
  display: none;
}
@media only screen and (max-width: 780px) {
  .header__search.show-mobile-search {
    display: flex;
  }
}
@media only screen and (max-width: 780px) {
  .header__search.hide-mobile-search {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .header__search {
    margin-left: 16px;
    width: 32px;
  }
}
@media only screen and (max-width: 780px) {
  .header__search {
    width: 100%;
    margin-top: 8px;
    margin-left: 0;
  }
}
.header__search:hover i {
  color: #E86830;
}
.header__search:hover .header__search-input {
  display: block;
}
.header__search:hover .header__search-input i {
  color: #CECECE;
}
.header__search i {
  font-size: 14px;
}
@media only screen and (max-width: 780px) {
  .header__search i {
    display: none;
  }
}
.header__search-input {
  position: absolute;
  top: 79px;
  right: 0;
  width: 528px;
  display: none;
}
@media only screen and (max-width: 780px) {
  .header__search-input {
    position: relative;
    top: 0;
    width: 100%;
    display: block;
    height: 54px;
  }
}
.header__search-input input {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  border: 0;
  padding-right: 44px;
  background: #0D0C22;
  color: #ffffff;
}
@media only screen and (max-width: 780px) {
  .header__search-input input {
    margin-right: 0;
    height: 100%;
    border: 1px solid #ffffff;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    border-radius: 7px;
  }
}
.header__search-input input::placeholder {
  color: #CECECE;
  font-weight: 400;
  font-size: 18px;
}
.header__search-input i {
  position: absolute;
  top: 20px;
  right: 16px;
  cursor: pointer;
  color: #CECECE;
}
@media only screen and (max-width: 780px) {
  .header__search-input i {
    display: block;
  }
}

.btn {
  min-width: 210px;
  padding: 0 24px;
  color: #ffffff;
  height: 44px;
  -webkit-border-radius: 33px;
  -moz-border-radius: 33px;
  -ms-border-radius: 33px;
  border-radius: 33px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.2s;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}
@media only screen and (max-width: 780px) {
  .btn {
    height: 36px;
    min-width: 144px;
    font-size: 14px;
  }
}
.btn:hover, .btn.active {
  transform: scale(0.95);
}
.btn__primery {
  background: #E86830;
  border: 2px solid #E86830;
}
.btn__primery:hover, .btn__primery:focus {
  background: #EF940B;
  border-color: #EF940B;
}
.btn__secondary {
  color: #E86830;
  border: 2px solid #ffffff;
  background: #ffffff;
}
.btn__secondary:hover, .btn__secondary:focus {
  color: #ffffff;
  border-color: #ffffff;
  background: transparent;
}
.btn__default {
  background: #FAFAFA;
  color: #E86830;
  text-transform: uppercase;
  border: 1px solid #E86830;
}
.btn__default:hover, .btn__default:focus {
  background: #EF940B;
  border-color: #EF940B;
  color: #ffffff;
}
.btn__input {
  background: transparent;
  color: #000000;
  text-transform: uppercase;
  border: 1px solid #000000;
}
.btn__input:hover, .btn__input:focus {
  background: #EF940B;
  border-color: #EF940B;
  color: #ffffff;
}

.banner-block {
  width: 100%;
  height: 544px;
  background: #E86830;
  color: #ffffff;
  padding: 104px 0;
  background-size: 100% 100%;
  background-position: top center;
  margin-top: 80px;
  position: relative;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1024px) {
  .banner-block {
    height: 464px;
  }
}
@media only screen and (max-width: 780px) {
  .banner-block {
    height: 364px;
    padding: 88px 44px;
  }
}
@media only screen and (max-width: 520px) {
  .banner-block {
    height: 100%;
    padding: 32px 0;
    height: 484px;
    background-size: cover;
    background-position: right center;
  }
}
.banner-block.donate {
  height: 834px;
}
@media only screen and (max-width: 1024px) {
  .banner-block.donate {
    height: 44rem;
  }
}
@media only screen and (max-width: 780px) {
  .banner-block.donate {
    height: 40rem;
  }
}
@media only screen and (max-width: 520px) {
  .banner-block.donate {
    height: 52rem;
  }
  .banner-block.donate .flex__row {
    flex-direction: column;
  }
  .banner-block.donate .banner-block__inner {
    order: 2;
  }
}
.banner-block h1 {
  font-size: 44px;
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 58px;
  text-transform: uppercase;
}
.banner-block h1 span {
  font-weight: 700;
  color: #E86830;
}
@media only screen and (max-width: 1440px) {
  .banner-block h1 {
    font-size: 36px;
    line-height: 46px;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-block h1 {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 780px) {
  .banner-block h1 {
    font-size: 20px;
    line-height: 30px;
  }
}
.banner-block h6 {
  font-size: 22px;
  font-weight: 400;
  line-height: 31px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1440px) {
  .banner-block h6 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-block h6 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 780px) {
  .banner-block h6 {
    font-size: 14px;
  }
}
.banner-block p {
  font-size: 20px;
  font-weight: 400;
  line-height: 31px;
}
@media only screen and (max-width: 780px) {
  .banner-block p {
    font-size: 14px;
    line-height: 20px;
  }
}
.banner-block .donate-img {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 124px;
}
@media only screen and (max-width: 1280px) {
  .banner-block .donate-img {
    margin-right: 0;
  }
  .banner-block .donate-img img {
    width: 240px;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-block .donate-img img {
    width: 144px;
  }
}
@media only screen and (max-width: 520px) {
  .banner-block .donate-img {
    width: 100%;
    justify-content: center;
    order: 1;
    margin-bottom: 24px;
  }
  .banner-block .donate-img img {
    width: 124px;
  }
}
.banner-block__inner {
  width: 60%;
  background: rgba(13, 12, 34, 0.5);
  padding: 32px 64px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  border-radius: 24px;
}
@media only screen and (max-width: 1440px) {
  .banner-block__inner {
    padding: 44px;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-block__inner {
    width: calc(100% - 32px);
    text-align: center;
    margin: 0 32px;
  }
}
@media only screen and (max-width: 780px) {
  .banner-block__inner {
    width: 100%;
    margin: 0;
    padding: 24px;
  }
}
.banner-block__inner .donate-txt {
  padding-right: 240px;
  text-transform: inherit;
}
@media only screen and (max-width: 1440px) {
  .banner-block__inner .donate-txt {
    padding-right: 180px;
  }
}
@media only screen and (max-width: 1280px) {
  .banner-block__inner .donate-txt {
    padding-right: 124px;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-block__inner .donate-txt {
    padding-right: 64px;
  }
}
@media only screen and (max-width: 520px) {
  .banner-block__inner .donate-txt {
    padding-right: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-block__inner .btn {
    margin: 0 auto;
  }
}
.banner-block__inner-center {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: rgba(13, 12, 34, 0.5);
  padding: 31px 65px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  border-radius: 24px;
}
.banner-block__inner-center h1 {
  text-transform: uppercase;
  margin-bottom: 25px;
}
.banner-block__inner-center p {
  font-size: 22px;
  font-weight: 400;
  line-height: 31px;
  text-transform: capitalize;
  margin-bottom: 24px;
}

.banner-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 520px) {
  .banner-carousel {
    height: 484px;
    background: pink;
  }
}
.banner-carousel .owl-stage {
  display: flex;
}
.banner-carousel .owl-nav button {
  width: 32px;
  height: 32px;
  position: absolute;
  color: #ffffff;
  top: 50%;
  font-size: 32px;
}
.banner-carousel .owl-nav .owl-prev {
  left: 24px;
}
@media only screen and (max-width: 520px) {
  .banner-carousel .owl-nav .owl-prev {
    left: 0;
  }
}
.banner-carousel .owl-nav .owl-next {
  right: 24px;
}
@media only screen and (max-width: 520px) {
  .banner-carousel .owl-nav .owl-next {
    right: 0;
  }
}

.partner-member-block {
  padding-top: 64px;
}
@media only screen and (max-width: 780px) {
  .partner-member-block {
    padding-top: 44px;
  }
}
.partner-member-block__inner {
  background: #FAFAFB;
  border: 1px solid #E1E1E1;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
  padding: 32px 44px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .partner-member-block__inner {
    max-width: 100%;
    padding: 32px;
  }
}
@media only screen and (max-width: 780px) {
  .partner-member-block__inner {
    padding: 16px;
  }
}
@media only screen and (max-width: 520px) {
  .partner-member-block__inner {
    flex-direction: column;
  }
}
.partner-member-block__inner h2 {
  color: #E86830;
  font-size: 36px;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1024px) {
  .partner-member-block__inner h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 520px) {
  .partner-member-block__inner h2 {
    font-size: 24px;
  }
}
.partner-member-block__icons .icon {
  margin-right: 64px;
}
@media only screen and (max-width: 1440px) {
  .partner-member-block__icons .icon {
    margin-right: 44px;
  }
}
@media only screen and (max-width: 1024px) {
  .partner-member-block__icons .icon {
    margin-right: 32px;
  }
}
@media only screen and (max-width: 780px) {
  .partner-member-block__icons .icon {
    margin-right: 24px;
  }
}
.partner-member-block__icons .icon img {
  width: 100%;
  max-width: 160px;
  object-fit: contain;
}
@media only screen and (max-width: 1440px) {
  .partner-member-block__icons .icon img {
    max-width: 144px;
  }
}
@media only screen and (max-width: 1024px) {
  .partner-member-block__icons .icon img {
    max-width: 124px;
  }
}
.partner-member-block__icons .icon:last-child {
  margin-right: 0;
}

.work-block {
  padding: 32px 0;
  background: #ffffff;
  font-family: "Montserrat", sans-serif !important;
}
@media only screen and (max-width: 780px) {
  .work-block {
    padding: 44px 0;
  }
}
.work-block__inner {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 110px;
  padding: 0 110px;
}
@media only screen and (max-width: 1440px) {
  .work-block__inner {
    padding: 0 60px;
  }
}
@media only screen and (max-width: 1280px) {
  .work-block__inner {
    padding: 0 44px;
  }
}
@media only screen and (max-width: 1024px) {
  .work-block__inner {
    padding: 0 32px;
  }
}
@media only screen and (max-width: 780px) {
  .work-block__inner {
    padding: 0;
  }
}
.work-block__inner h2 {
  font-size: 36px;
  color: #0D0C22;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  line-height: 48px;
  margin-bottom: 24px;
  font-family: "Montserrat", sans-serif !important;
}
@media only screen and (max-width: 1440px) {
  .work-block__inner h2 {
    font-size: 32px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 780px) {
  .work-block__inner h2 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 16px;
  }
}
.work-block__inner .brand {
  color: #E86830;
}
.work-block__inner p {
  color: #605B5B;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  line-height: 31px;
  font-family: "Montserrat", sans-serif !important;
}
@media only screen and (max-width: 1440px) {
  .work-block__inner p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 780px) {
  .work-block__inner p {
    font-size: 14px;
    line-height: 26px;
  }
}
.work-block__inner .padding-rl {
  padding: 0 54px;
}
@media only screen and (max-width: 780px) {
  .work-block__inner .padding-rl {
    padding: 0;
  }
}
.work-block__inner table {
  width: 100% !important;
}
.work-block__inner table, .work-block__inner td, .work-block__inner th {
  border: 1px solid;
  vertical-align: middle;
  padding: 0 8px !important;
  text-align: left;
  color: #605B5B;
  font-size: 20px !important;
  font-weight: 400;
  font-family: "Montserrat", sans-serif !important;
  line-height: 31px;
}
@media only screen and (max-width: 1440px) {
  .work-block__inner table, .work-block__inner td, .work-block__inner th {
    font-size: 18px !important;
  }
}
.work-block__inner td p span,
.work-block__inner td span {
  text-align: left;
  color: #605B5B;
  font-size: 20px !important;
  font-weight: 400;
  font-family: "Montserrat", sans-serif !important;
  line-height: 31px;
}
@media only screen and (max-width: 1440px) {
  .work-block__inner td p span,
  .work-block__inner td span {
    font-size: 18px !important;
  }
}
.work-block__inner table p,
.work-block__inner td p,
.work-block__inner th p {
  text-align: left !important;
  font-family: "Montserrat", sans-serif !important;
}
.work-block__inner ul {
  list-style-type: disc;
  list-style-position: inside;
  font-family: "Montserrat", sans-serif !important;
  padding-left: 44px;
  line-height: 31px;
}
.work-block__inner ol {
  list-style-type: decimal;
  list-style-position: inside;
  font-family: "Montserrat", sans-serif !important;
  padding-left: 44px;
  line-height: 31px;
}
.work-block__box.margin-box {
  margin-top: 80px;
}
@media only screen and (max-width: 780px) {
  .work-block__box.margin-box {
    margin-top: 70px;
  }
}
.work-block__items {
  margin-bottom: 132px;
  position: relative;
}
@media only screen and (max-width: 1440px) {
  .work-block__items {
    align-items: center;
    justify-content: center;
    margin-bottom: 106px;
  }
}
@media only screen and (max-width: 1024px) {
  .work-block__items {
    margin-bottom: 64px;
    flex-direction: column;
  }
}
@media only screen and (max-width: 780px) {
  .work-block__items {
    margin-bottom: 44px;
    padding: 0 24px;
  }
}
.work-block__items:last-child {
  margin-bottom: 64px;
}
@media only screen and (max-width: 1280px) {
  .work-block__items:last-child {
    margin-bottom: 44px;
  }
}
.work-block__items .border-left {
  position: absolute;
  /* background: red; */
  left: 190px;
  top: 94px;
  width: calc(100% - 190px);
  overflow: hidden;
}
@media only screen and (max-width: 1440px) {
  .work-block__items .border-left {
    top: 80px;
    left: 160px;
    width: calc(100% - 160px);
  }
}
@media only screen and (max-width: 1024px) {
  .work-block__items .border-left {
    top: 72px;
    left: 144px;
    width: calc(100% - 144px);
    display: none;
  }
}
.work-block__items .border-left img {
  width: 100%;
  object-fit: cover;
}
.work-block__items .border-right {
  position: absolute;
  right: 190px;
  top: 94px;
  width: calc(100% - 190px);
  overflow: hidden;
}
@media only screen and (max-width: 1440px) {
  .work-block__items .border-right {
    top: 80px;
    right: 160px;
    width: calc(100% - 160px);
  }
}
@media only screen and (max-width: 1024px) {
  .work-block__items .border-right {
    top: 72px;
    right: 144px;
    width: calc(100% - 144px);
    display: none;
  }
}
.work-block__items .border-right img {
  width: 100%;
  object-fit: cover;
}
.work-block__items .icon {
  width: 190px;
  height: 190px;
  margin-right: 322px;
  order: 1;
}
@media only screen and (max-width: 1440px) {
  .work-block__items .icon {
    width: 160px;
    height: 160px;
    margin-right: 302px;
  }
}
@media only screen and (max-width: 1024px) {
  .work-block__items .icon {
    width: 144px;
    height: 144px;
    margin-right: 0;
    margin-bottom: 64px;
  }
}
@media only screen and (max-width: 780px) {
  .work-block__items .icon {
    width: 132px;
    height: 132px;
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.work-block__items .icon__right {
  order: 2;
  margin-right: 0;
  margin-left: 322px;
}
@media only screen and (max-width: 1440px) {
  .work-block__items .icon__right {
    margin-left: 302px;
  }
}
@media only screen and (max-width: 1024px) {
  .work-block__items .icon__right {
    margin-left: 0;
  }
}
.work-block__items .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.work-block__items .text {
  text-align: left;
  order: 2;
}
@media only screen and (max-width: 1024px) {
  .work-block__items .text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.work-block__items .text__left {
  order: 1;
}
@media only screen and (max-width: 1024px) {
  .work-block__items .text__left {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.work-block__items .text h6 {
  font-size: 26px;
  font-weight: 700;
  color: #000000;
  line-height: 31px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1440px) {
  .work-block__items .text h6 {
    font-size: 24px;
    margin-bottom: 8px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .work-block__items .text h6 {
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 780px) {
  .work-block__items .text h6 {
    text-align: center;
    font-size: 20px;
  }
}
.work-block__items .text p {
  color: #605B5B;
  text-align: left;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
}
@media only screen and (max-width: 1440px) {
  .work-block__items .text p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 1024px) {
  .work-block__items .text p {
    font-size: 16px;
    text-align: center;
  }
}
@media only screen and (max-width: 780px) {
  .work-block__items .text p {
    font-size: 14px;
  }
}
.work-block__items .text a {
  max-width: 164px;
  text-transform: capitalize;
  font-size: 13px;
  margin-top: 16px;
}
.work-block__items .text a span {
  width: 22px;
  height: 22px;
  border: 1px solid #ffffff;
  margin-left: 8px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-in-out;
}
.work-block__items .text a:hover span {
  transform: translateX(5px);
}
.work-block__items:nth-child(2n+2) .icon {
  order: 2;
  margin-right: 0;
  margin-left: 284px;
}
@media only screen and (max-width: 1440px) {
  .work-block__items:nth-child(2n+2) .icon {
    margin-left: 302px;
  }
}
@media only screen and (max-width: 1024px) {
  .work-block__items:nth-child(2n+2) .icon {
    margin-left: 0px;
    order: inherit;
  }
}
.work-block__items:nth-child(2n+2) .text {
  text-align: left;
  order: 1;
}
@media only screen and (max-width: 1024px) {
  .work-block__items:nth-child(2n+2) .text {
    order: inherit;
    text-align: center;
  }
}
.work-block__links-row {
  /*padding: 167px 0;*/
  align-items: flex-start;
}
@media only screen and (max-width: 1024px) {
  .work-block__links-row {
    padding: 64px 0;
  }
}
@media only screen and (max-width: 780px) {
  .work-block__links-row {
    flex-direction: column;
  }
}
.work-block__links {
  flex: 1;
  margin-right: 57px;
  text-align: left;
}
.work-block__links:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 1024px) {
  .work-block__links {
    margin-right: 32px;
  }
}
@media only screen and (max-width: 780px) {
  .work-block__links {
    margin-right: 0;
    margin-bottom: 32px;
  }
  .work-block__links:last-child {
    margin-bottom: 0;
  }
}
.work-block__links .icon {
  width: 114px;
  height: 114px;
  color: #232323;
  margin-bottom: 24px;
  overflow: hidden;
}
.work-block__links .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.work-block__links h6 {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  color: #000000;
  margin-bottom: 8px;
}
.work-block__links h6 span {
  color: #E86830;
}
.work-block__links p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.work-block__desc {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 64px;
}
@media only screen and (max-width: 1024px) {
  .work-block__desc {
    padding: 44px 0;
  }
}
@media only screen and (max-width: 780px) {
  .work-block__desc {
    flex-direction: column;
  }
}
.work-block__desc .image {
  width: 40%;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
  margin-right: 32px;
  border: 1px solid #E86830;
  overflow: hidden;
}
@media only screen and (max-width: 780px) {
  .work-block__desc .image {
    width: 100%;
    margin-bottom: 32px;
  }
}
.work-block__desc .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-block__desc .text {
  width: 60%;
}
@media only screen and (max-width: 780px) {
  .work-block__desc .text {
    width: 100%;
  }
}
.work-block__desc .text h2 {
  width: 100%;
}
.work-block__desc .text p {
  font-size: 18px;
  font-weight: 400;
  line-height: 31px;
  margin-bottom: 24px;
}
.work-block__desc .text p:last-child {
  margin-bottom: 0;
}

.work-block-item {
  padding-top: 64px;
}
@media only screen and (max-width: 1024px) {
  .work-block-item {
    padding-top: 44px;
  }
}

.work-block-item-top {
  padding-top: 0;
}

.support-block {
  padding: 64px 0;
  background: #E86830;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
}
@media only screen and (max-width: 780px) {
  .support-block {
    padding: 44px 0;
  }
}
.support-block__inner {
  text-align: center;
  max-width: 672px;
  margin: 0 auto;
}
@media only screen and (max-width: 780px) {
  .support-block__inner {
    max-width: 100%;
    width: 100%;
  }
}
.support-block__inner h2 {
  font-size: 36px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  line-height: 48px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1440px) {
  .support-block__inner h2 {
    font-size: 32px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 780px) {
  .support-block__inner h2 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 16px;
  }
}
.support-block__inner p {
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  line-height: 24px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1440px) {
  .support-block__inner p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 780px) {
  .support-block__inner p {
    font-size: 14px;
    margin-bottom: 16px;
  }
}
.support-block__input {
  cursor: pointer;
}
.support-block__input input {
  text-align: center;
  margin-bottom: 0;
  border: 1px solid #ffffff;
  color: #ffffff;
  background: transparent;
  -webkit-border-radius: 33px;
  -moz-border-radius: 33px;
  -ms-border-radius: 33px;
  border-radius: 33px;
  height: 48px;
  max-width: 210px;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
}
@media only screen and (max-width: 780px) {
  .support-block__input input {
    height: 36px;
    font-size: 14px;
    width: 144px;
  }
}
.support-block__input input::placeholder {
  color: #ffffff;
}
.support-block__btns .btn:last-child {
  margin-left: 28px;
}

.news-block__top {
  background: #ffffff;
  padding: 64px 0;
}
@media only screen and (max-width: 780px) {
  .news-block__top {
    padding: 44px 0;
  }
}
.news-block__top h2 {
  font-size: 36px;
  color: #0D0C22;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  line-height: 48px;
  margin-bottom: 44px;
}
@media only screen and (max-width: 1440px) {
  .news-block__top h2 {
    font-size: 32px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 780px) {
  .news-block__top h2 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 16px;
  }
}
.news-block__inner-page {
  background: #F5F5F5;
  padding-top: 72px;
}
.news-block__inner-page:last-child {
  padding-bottom: 72px;
}
.news-block__inner-page h2 {
  font-size: 36px;
  color: #E86830;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  line-height: 48px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1440px) {
  .news-block__inner-page h2 {
    font-size: 32px;
    line-height: 36px;
  }
}
.news-block__inner-page button {
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .news-block__item-box {
    flex-direction: column;
  }
}
.news-block__item {
  width: calc(50% - 0px);
  margin-right: 24px;
  margin-bottom: 24px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
  background: #FAFAFB;
  border: 1px solid #E1E1E1;
  overflow: hidden;
}
.news-block__item:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 1024px) {
  .news-block__item {
    width: 100%;
    flex-direction: column;
    margin-bottom: 32px;
  }
}
.news-block__item-img {
  width: 283px;
  height: 281px;
  overflow: hidden;
}
@media only screen and (max-width: 1440px) {
  .news-block__item-img {
    width: 250px;
    height: 250px;
  }
}
@media only screen and (max-width: 1024px) {
  .news-block__item-img {
    width: 100%;
    height: 220px;
  }
}
.news-block__item-info {
  padding: 24px 16px;
  width: calc(100% - 283px);
  height: 100%;
  position: relative;
}
@media only screen and (max-width: 1440px) {
  .news-block__item-info {
    width: calc(100% - 250px);
  }
}
@media only screen and (max-width: 1024px) {
  .news-block__item-info {
    width: 100%;
    padding: 32px;
    text-align: center;
  }
}
.news-block__item-info h6 {
  color: #232323;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}
@media only screen and (max-width: 1440px) {
  .news-block__item-info h6 {
    font-size: 20px;
    margin-bottom: 14px;
  }
}
@media only screen and (max-width: 1024px) {
  .news-block__item-info h6 {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
.news-block__item-info p {
  color: #B0ABAB;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 18px;
}
@media only screen and (max-width: 1440px) {
  .news-block__item-info p {
    font-size: 16px;
    margin-bottom: 14px;
  }
}
@media only screen and (max-width: 1024px) {
  .news-block__item-info p {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.news-block__item-info a {
  font-size: 16px;
  font-weight: 700;
  position: absolute;
  left: 16px;
  bottom: 24px;
  color: #E86830;
  transition: all ease-in-out 0.3s;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .news-block__item-info a {
    width: 100%;
    height: 32px;
    left: 0;
    bottom: 8px;
    align-items: center;
    justify-content: center;
  }
}
.news-block__item-info a:hover {
  color: #EF940B;
}
.news-block__item-info a:hover span {
  border-color: #EF940B;
}
.news-block__item-info a span {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #E86830;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-left: 8px;
}
.news-block__item-info a span i {
  font-size: 8px;
}
.news-block__bottom {
  background: #FAFAFB;
  color: #ffffff;
  padding: 64px 0;
}
@media only screen and (max-width: 780px) {
  .news-block__bottom {
    padding: 44px 0;
  }
}
.news-block__inner {
  max-width: 773px;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (max-width: 520px) {
  .news-block__inner .row {
    flex-direction: column;
  }
  .news-block__inner .row input {
    margin-left: 0;
  }
}
.news-block__inner h1 {
  font-size: 36px;
  color: #E86830;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 44px;
  text-align: center;
}
@media only screen and (max-width: 1440px) {
  .news-block__inner h1 {
    font-size: 32px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 780px) {
  .news-block__inner h1 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 16px;
  }
}
.news-block__inner p {
  color: #0D0C22;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  line-height: 31px;
  margin-bottom: 40px;
  text-transform: capitalize;
  padding: 0px 84px;
}
@media only screen and (max-width: 1440px) {
  .news-block__inner p {
    font-size: 20px;
    margin-bottom: 32px;
    padding: 0 64px;
  }
}
@media only screen and (max-width: 780px) {
  .news-block__inner p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
    padding: 0 24px;
  }
}

.light-block {
  background: #FAFAFB;
  padding: 32px 0;
}
@media only screen and (max-width: 780px) {
  .light-block {
    padding: 44px 0;
  }
}
.light-block .about-item {
  flex: 1;
  margin-right: 72px;
}
@media only screen and (max-width: 1440px) {
  .light-block .about-item {
    margin-right: 64px;
  }
}
@media only screen and (max-width: 1280px) {
  .light-block .about-item {
    margin-right: 44px;
  }
}
@media only screen and (max-width: 1024px) {
  .light-block .about-item {
    margin-right: 32px;
  }
}
@media only screen and (max-width: 780px) {
  .light-block .about-item {
    text-align: center;
    width: 100% !important;
    margin: 0 !important;
    margin-bottom: 32px !important;
  }
}
@media only screen and (max-width: 520px) {
  .light-block .about-item {
    margin-right: 0;
    margin-bottom: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .light-block .about-item:last-child {
    margin-bottom: 0;
  }
}
.light-block .about-item ul {
  list-style: disc;
  padding-left: 44px;
  font-size: 20px;
  font-weight: 400;
  line-height: 31px;
}
.light-block .about-item ol {
  list-style: decimal;
  padding-left: 44px;
  font-size: 20px;
  font-weight: 400;
  line-height: 31px;
}
.light-block .about-item a {
  color: #E86830;
  text-decoration: underline;
  text-underline-position: under;
}
.light-block .about-item .icon {
  width: 132px;
  height: 132px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1440px) {
  .light-block .about-item .icon {
    width: 124px;
    height: 124px;
  }
}
@media only screen and (max-width: 1280px) {
  .light-block .about-item .icon {
    width: 100px;
    height: 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .light-block .about-item .icon {
    width: 80px;
    height: 80px;
  }
}
@media only screen and (max-width: 780px) {
  .light-block .about-item .icon {
    width: 100%;
    height: 80px;
  }
}
.light-block .about-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.light-block .about-item:last-child {
  margin-right: 0;
}
.light-block .about-item h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 60px;
  color: #E86830;
  margin-bottom: 12px;
}
@media only screen and (max-width: 1440px) {
  .light-block .about-item h2 {
    font-size: 32px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 780px) {
  .light-block .about-item h2 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 16px;
  }
}
.light-block .about-item p {
  font-size: 20px;
  font-weight: 400;
  line-height: 31px;
  color: #000000;
}
@media only screen and (max-width: 520px) {
  .light-block .about-item p {
    text-align: center;
  }
}

.dark-block {
  background: #E86830;
  color: #ffffff;
  padding: 64px 0;
  text-align: center;
}
@media only screen and (max-width: 780px) {
  .dark-block {
    padding: 44px 0;
  }
}
.dark-block h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1440px) {
  .dark-block h2 {
    font-size: 32px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 780px) {
  .dark-block h2 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 16px;
  }
}
.dark-block p {
  font-size: 20px;
  font-weight: 400;
  line-height: 31px;
  padding: 0 190px;
}
@media only screen and (max-width: 1440px) {
  .dark-block p {
    padding: 0 124px;
    font-size: 18px;
  }
}
@media only screen and (max-width: 780px) {
  .dark-block p {
    padding: 0 64px;
    font-size: 14px;
  }
}

.team-members-block {
  padding: 0 92px;
}
@media only screen and (max-width: 520px) {
  .team-members-block {
    padding: 0 24px;
  }
}
.team-members-block__inner h2 {
  font-size: 36px;
  color: #000000;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  line-height: 48px;
}
@media only screen and (max-width: 1440px) {
  .team-members-block__inner h2 {
    font-size: 36px;
    line-height: 34px;
  }
}
@media only screen and (max-width: 780px) {
  .team-members-block__inner h2 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 8px;
  }
}
.team-members-block__inner p {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  line-height: 31px;
}
.team-members-block__carousel {
  position: relative;
  width: 100%;
  margin: 64px auto 204px auto;
}
@media only screen and (max-width: 1440px) {
  .team-members-block__carousel {
    margin: 64px auto 144px auto;
  }
}
@media only screen and (max-width: 1024px) {
  .team-members-block__carousel {
    margin: 64px auto;
  }
}
.team-members-block__carousel .owl-carousel {
  overflow: hidden;
}
.team-members-block__carousel .owl-carousel .owl-stage {
  display: flex;
}
.team-members-block__carousel .owl-nav button {
  width: 28px;
  height: 28px;
  border-radius: 50% !important;
  background: #E86830 !important;
  border: 1px solid #E86830;
  color: #ffffff;
}
.team-members-block__carousel .owl-nav button:hover, .team-members-block__carousel .owl-nav button.active {
  background: #EF940B !important;
  border-color: #EF940B !important;
}
.team-members-block__carousel .owl-nav button span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  font-size: 20px;
}
.team-members-block__carousel .owl-nav .owl-prev {
  position: absolute;
  left: -64px;
  top: 40%;
}
@media only screen and (max-width: 520px) {
  .team-members-block__carousel .owl-nav .owl-prev {
    left: -32px;
  }
}
.team-members-block__carousel .owl-nav .owl-next {
  position: absolute;
  right: -64px;
  top: 40%;
}
@media only screen and (max-width: 520px) {
  .team-members-block__carousel .owl-nav .owl-next {
    right: -32px;
  }
}
.team-members-block__carousel-item {
  width: calc(100% - 20px);
  height: 360px;
  background: #FAFAFB;
  border: 1px solid #E1E1E1;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
  margin-left: 10px;
  margin-right: 10px;
  overflow: hidden;
}
.team-members-block__carousel-item .image-block {
  width: 100%;
  height: 202px;
  background: #E86830;
  overflow: hidden;
}
.team-members-block__carousel-item .image-block img {
  width: 100%;
  object-fit: contain;
}
.team-members-block__carousel-item .info-block {
  width: 100%;
  height: 158px;
}
.team-members-block__carousel-item .info-block h6 {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 12px;
}
.team-members-block__carousel-item .info-block p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #E86830;
}

.members-block__row {
  margin-bottom: 24px;
}
.members-block__row:first-of-type {
  margin-top: 60px;
}
.members-block__row:last-child {
  margin-bottom: 0;
}
.members-block__item {
  color: #0D0C22;
  width: calc(25% - 32px);
  margin-right: 32px;
}
.members-block__item:last-child {
  margin-right: 0;
}
.members-block__item .m-item {
  width: 159px;
  height: 159px;
  background: #ffffff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  margin-bottom: 22px;
}
.members-block__item .m-item img {
  width: 100%;
  object-fit: contain;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.members-block__item h6 {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}
.members-block__item P {
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
}

.supporters-block {
  padding: 64px 0;
  background-color: #ffffff;
  text-align: center;
}
@media only screen and (max-width: 780px) {
  .supporters-block {
    padding: 44px 0;
  }
}
.supporters-block h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.supporters-block p {
  font-size: 18px;
  font-weight: 400;
  line-height: 31px;
  padding: 0 190px;
}
.supporters-block__row {
  margin-top: 58px;
}
.supporters-block__item {
  margin-right: 44px;
}
.supporters-block__item img {
  object-fit: contain;
}
.supporters-block__item:last-child {
  margin-right: 0;
}

.volunteering-block {
  padding: 64px 0;
  background: #F5F5F5;
}
@media only screen and (max-width: 1280px) {
  .volunteering-block {
    padding: 44px 0;
  }
}
.volunteering-block__news-row {
  padding: 0 60px;
}
@media only screen and (max-width: 780px) {
  .volunteering-block__news-row {
    padding: 0;
  }
}
.volunteering-block__news {
  margin-bottom: 58px;
  align-items: flex-start;
}
@media only screen and (max-width: 1440px) {
  .volunteering-block__news {
    margin-bottom: 44px;
  }
}
@media only screen and (max-width: 1280px) {
  .volunteering-block__news {
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 1024px) {
  .volunteering-block__news {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 780px) {
  .volunteering-block__news {
    flex-direction: column;
    margin-bottom: 32px;
  }
}
.volunteering-block__news .news {
  width: 55%;
  margin-right: 90px;
}
@media only screen and (max-width: 1440px) {
  .volunteering-block__news .news {
    margin-right: 64px;
  }
}
@media only screen and (max-width: 1280px) {
  .volunteering-block__news .news {
    margin-right: 44px;
  }
}
@media only screen and (max-width: 1024px) {
  .volunteering-block__news .news {
    margin-right: 32px;
  }
}
@media only screen and (max-width: 780px) {
  .volunteering-block__news .news {
    width: 100%;
    margin-right: 0;
    margin-bottom: 24px;
    text-align: center;
  }
}
.volunteering-block__news .news h6 {
  font-size: 24px;
  font-weight: 700;
  color: #1E1E1E;
  line-height: 31px;
  margin-bottom: 34px;
  padding-right: 34px;
}
@media only screen and (max-width: 1440px) {
  .volunteering-block__news .news h6 {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 1280px) {
  .volunteering-block__news .news h6 {
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 780px) {
  .volunteering-block__news .news h6 {
    padding-right: 0;
  }
}
.volunteering-block__news .news p {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  padding-right: 60px;
  margin-bottom: 34px;
}
@media only screen and (max-width: 1440px) {
  .volunteering-block__news .news p {
    margin-bottom: 24px;
    padding-right: 44px;
  }
}
@media only screen and (max-width: 1280px) {
  .volunteering-block__news .news p {
    margin-bottom: 16px;
    padding-right: 0px;
  }
}
.volunteering-block__news .news a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 164px;
  font-size: 14px;
  text-transform: capitalize;
}
@media only screen and (max-width: 780px) {
  .volunteering-block__news .news a {
    margin: 0 auto;
  }
}
.volunteering-block__news .news a span {
  width: 22px;
  height: 22px;
  border: 1px solid #ffffff;
  margin-left: 8px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.volunteering-block__news .image {
  width: 45%;
  height: 267px;
  overflow: hidden;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
}
@media only screen and (max-width: 780px) {
  .volunteering-block__news .image {
    width: 100%;
    height: 100%;
  }
}
.volunteering-block__news .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.volunteering-block__submition {
  text-align: center;
  max-width: 70%;
  margin: 0 auto;
}
@media only screen and (max-width: 1280px) {
  .volunteering-block__submition {
    max-width: 80%;
  }
}
@media only screen and (max-width: 780px) {
  .volunteering-block__submition {
    max-width: 90%;
  }
}
.volunteering-block__submition h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1E1E1E;
  line-height: 36px;
  margin-bottom: 45px;
}
@media only screen and (max-width: 1440px) {
  .volunteering-block__submition h2 {
    font-size: 36px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 780px) {
  .volunteering-block__submition h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
.volunteering-block__submition p {
  font-size: 22px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1280px) {
  .volunteering-block__submition p {
    font-size: 20px;
  }
}
@media only screen and (max-width: 780px) {
  .volunteering-block__submition p {
    font-size: 16px;
  }
}
.volunteering-block__submition button,
.volunteering-block__submition a {
  text-transform: capitalize;
  margin: 0 auto;
  margin-top: 24px;
}

.mision_row {
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .mision_row {
    padding: 0 24px;
  }
}
@media only screen and (max-width: 780px) {
  .mision_row {
    flex-direction: column;
  }
}

.post-page-block {
  padding: 64px 0;
}
.post-page-block__left {
  width: 70%;
  margin-right: 111px;
}
.post-page-block__left h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  line-height: 60px;
  margin-bottom: 40px;
}
.post-page-block__left h4 {
  font-family: "Inter", sans-serif;
  color: #000000;
  font-weight: 700;
  font-size: 29px;
  line-height: 42px;
  letter-spacing: 0.2px;
  margin-bottom: 22px;
}
.post-page-block__left .image-block {
  width: calc(100% - 40px);
  height: 538px;
  padding-right: 40px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
  margin-bottom: 40px;
  overflow: hidden;
}
.post-page-block__left .image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-page-block__left .info {
  font-weight: 400;
  font-size: 20px;
  line-height: 31px;
  margin-bottom: 22px;
  background: transparent;
  border: none;
}
.post-page-block__left .info:last-child {
  margin-bottom: 0;
}
.post-page-block__left .publishment {
  margin-bottom: 22px;
}
.post-page-block__left .publishment .avatar {
  width: 44px;
  height: 44px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: #D9D9D9;
  margin-right: 12px;
}
.post-page-block__left .publishment p {
  font-size: 13px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 20px;
}
.post-page-block__left .publishment p span {
  font-weight: 700;
}
.post-page-block__right {
  width: 30%;
}
.post-page-block__right h4 {
  font-size: 18px;
  color: #000000;
  font-weight: 700;
  line-height: 60px;
  border-bottom: 1px solid #000000;
  width: 80%;
}
.post-page-block__right .articles-box {
  margin-top: 78px;
}
.post-page-block__right .articles-box__item {
  margin-bottom: 34px;
}
.post-page-block__right .articles-box__item .article-img {
  width: 183px;
  height: 150px;
  background: #D9D9D9;
  margin-right: 39px;
}
.post-page-block__right .articles-box__item .article-text {
  width: calc(100% - 222px);
  font-size: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.2px;
}
.post-page-block__right .tag-box {
  display: inline-block;
  width: 100%;
}
.post-page-block__right .tag-box a {
  display: block;
  float: left;
  width: calc(50% - 30px);
  margin-top: 30px;
  margin-right: 30px;
  border: 1px solid #000000;
  color: #000000;
  -webkit-border-radius: 56px;
  -moz-border-radius: 56px;
  -ms-border-radius: 56px;
  border-radius: 56px;
  text-align: center;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 400;
  padding: 7px;
}
.post-page-block__right .tag-box a:nth-child(2n+2) {
  margin-right: 0;
}

.donate-block {
  background: #F5F5F5;
  position: relative;
  height: 500px;
}
@media only screen and (max-width: 520px) {
  .donate-block {
    height: 600px;
  }
}
.donate-block .detail-form {
  width: 100%;
  background: #F0F0F0;
  max-width: 1165px;
  margin: 0 auto;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  position: absolute;
  left: 50%;
  top: 43%;
  -moz-transform: translate(-50%, -43%);
  -o-transform: translate(-50%, -43%);
  -ms-transform: translate(-50%, -43%);
  -webkit-transform: translate(-50%, -43%);
  transform: translate(-50%, -43%);
}
@media only screen and (max-width: 1024px) {
  .donate-block .detail-form {
    max-width: 900px;
  }
}
@media only screen and (max-width: 780px) {
  .donate-block .detail-form {
    max-width: calc(100% - 48px);
  }
}
.donate-block .detail-form__header {
  background: #D9D9D9;
  padding: 48px 115px;
}
.donate-block .detail-form .tab {
  overflow: hidden;
  background-color: #0D0C22;
}
.donate-block .detail-form .tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  padding: 48px 0;
  color: #ffffff;
  font-weight: 400;
  line-height: 16px;
  font-size: 24px;
}
@media only screen and (max-width: 1280px) {
  .donate-block .detail-form .tab button {
    font-size: 20px;
    padding: 32px 0;
  }
}
@media only screen and (max-width: 780px) {
  .donate-block .detail-form .tab button {
    padding: 24px 0;
    font-size: 18px;
  }
}
@media only screen and (max-width: 520px) {
  .donate-block .detail-form .tab button {
    padding: 24px;
    font-size: 16px;
    line-height: 24px;
  }
}
.donate-block .detail-form .tab button.active {
  font-weight: 700;
  color: #E86830;
}
.donate-block .detail-form .tabcontent {
  display: none;
  background: #F0F0F0;
  padding: 24px 108px;
  height: 580px;
}
@media only screen and (max-width: 1024px) {
  .donate-block .detail-form .tabcontent {
    padding: 24px 64px;
  }
}
@media only screen and (max-width: 780px) {
  .donate-block .detail-form .tabcontent {
    padding: 24px 32px;
  }
}
@media only screen and (max-width: 520px) {
  .donate-block .detail-form .tabcontent {
    height: 100%;
  }
}
@media only screen and (max-width: 780px) {
  .donate-block .detail-form .tabcontent .custom-input input {
    margin-left: 0;
  }
}
.donate-block .detail-form .tabcontent .purpose .title-row {
  margin-bottom: 40px;
}
@media only screen and (max-width: 780px) {
  .donate-block .detail-form .tabcontent .purpose .title-row {
    margin-bottom: 24px;
  }
}
.donate-block .detail-form .tabcontent .purpose .title {
  color: #343A40;
  font-size: 20px;
  font-weight: 400;
  line-height: 31px;
  width: 30%;
}
@media only screen and (max-width: 780px) {
  .donate-block .detail-form .tabcontent .purpose .title {
    width: 50%;
  }
}
@media only screen and (max-width: 520px) {
  .donate-block .detail-form .tabcontent .purpose .title {
    width: 70%;
    font-size: 16px;
    line-height: 24px;
  }
}
.donate-block .detail-form .tabcontent .purpose .total-amount {
  justify-content: center;
  align-items: flex-end;
  width: 70%;
}
@media only screen and (max-width: 520px) {
  .donate-block .detail-form .tabcontent .purpose .total-amount {
    width: 30%;
  }
}
.donate-block .detail-form .tabcontent .purpose .total-amount p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 7px;
}
.donate-block .detail-form .tabcontent .purpose .total-amount h1 {
  font-size: 40px;
  line-height: 24px;
  font-weight: 700;
  color: #E86830;
}
@media only screen and (max-width: 520px) {
  .donate-block .detail-form .tabcontent .purpose .total-amount h1 {
    font-size: 26px;
  }
}
.donate-block .detail-form .tabcontent .purpose__form {
  margin: 42px 0;
  width: 80%;
}
.donate-block .detail-form .tabcontent .purpose__form-row {
  margin-bottom: 30px;
  width: 80%;
}
@media only screen and (max-width: 780px) {
  .donate-block .detail-form .tabcontent .purpose__form-row {
    width: 100%;
  }
}
@media only screen and (max-width: 520px) {
  .donate-block .detail-form .tabcontent .purpose__form-row {
    display: block;
    margin-bottom: 0px;
  }
  .donate-block .detail-form .tabcontent .purpose__form-row .sel {
    margin-top: 32px;
  }
  .donate-block .detail-form .tabcontent .purpose__form-row .sel label {
    top: -32px;
  }
}
.donate-block .detail-form .tabcontent .purpose__form-row:last-child {
  margin-bottom: 0px;
}
.donate-block .detail-form .tabcontent .purpose__form-row button {
  margin-right: 24px;
  margin-top: 0;
  min-width: 172px;
}
@media only screen and (max-width: 780px) {
  .donate-block .detail-form .tabcontent .purpose__form-row button {
    min-width: 144px;
    flex: 1;
  }
}
@media only screen and (max-width: 520px) {
  .donate-block .detail-form .tabcontent .purpose__form-row button {
    width: 100%;
    margin-bottom: 16px;
  }
}
.donate-block .detail-form .tabcontent .purpose__form-row button:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 520px) {
  .donate-block .detail-form .tabcontent .purpose__total {
    flex-direction: column;
  }
}
@media only screen and (max-width: 520px) {
  .donate-block .detail-form .tabcontent .purpose__total .payment-methods {
    margin-bottom: 24px;
  }
}
.donate-block .detail-form .tabcontent .purpose__total .payment-methods h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 20px;
}
.donate-block .detail-form .tabcontent .purpose__total .payment-methods .img-item {
  width: 100px;
  height: 50px;
  margin-right: 8px;
  border: 1px solid #000000;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
  padding: 8px;
}
@media only screen and (max-width: 520px) {
  .donate-block .detail-form .tabcontent .purpose__total .payment-methods .img-item {
    width: 80px;
    height: 40px;
  }
}
.donate-block .detail-form .tabcontent .purpose__total .payment-methods .img-item:last-child {
  margin-right: 0;
}
.donate-block .detail-form .tabcontent .purpose__total .payment-methods .img-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.donate-block .detail-form .tabcontent .purpose__total .row {
  width: 100%;
}
@media only screen and (max-width: 520px) {
  .donate-block .detail-form .tabcontent .purpose__total .row {
    display: block;
  }
}
.donate-block .detail-form .tabcontent .purpose__total .btn {
  margin-right: 24px;
}
@media only screen and (max-width: 520px) {
  .donate-block .detail-form .tabcontent .purpose__total .btn {
    width: 100%;
    margin-right: 0;
    margin-bottom: 24px;
  }
  .donate-block .detail-form .tabcontent .purpose__total .btn:last-child {
    margin-bottom: 0;
  }
}
.donate-block .detail-form .tabcontent .purpose__total .btn:last-child {
  margin-right: 0;
}
.donate-block .detail-form .tabcontent .purpose .selection {
  margin-bottom: 40px;
}
.donate-block .detail-form .tabcontent .purpose .selection button {
  margin-right: 87px;
  color: #1E1E1E;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  text-align: left;
}
@media only screen and (max-width: 520px) {
  .donate-block .detail-form .tabcontent .purpose .selection button {
    flex: 1;
    margin-right: 8px;
  }
}
.donate-block .detail-form .tabcontent .purpose .selection button:last-child {
  margin-right: 0;
}
.donate-block .detail-form .tabcontent .purpose .selection button.active {
  font-weight: 700;
}
.donate-block .detail-form .tabcontent .purpose .perioud .form-control {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 15px;
  font-weight: 400;
  line-height: 40px;
  color: #000000;
  width: 140px;
}
.donate-block .detail-form .tabcontent .purpose .perioud .form-control input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.donate-block .detail-form .tabcontent .purpose .perioud .form-control input:focus ~ .checkmark {
  border-color: #C9C9C9;
}
.donate-block .detail-form .tabcontent .purpose .perioud .form-control .checkmark {
  position: absolute;
  top: 6px;
  left: 0;
  height: 24px;
  width: 24px;
  border: 1px solid #C9C9C9;
  border-radius: 50%;
}
.donate-block .detail-form .tabcontent .purpose .perioud .form-control .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.donate-block .detail-form .tabcontent .purpose .perioud .form-control input:checked ~ .checkmark:after {
  display: block;
}
.donate-block .detail-form .tabcontent .purpose .perioud .form-control .checkmark:after {
  top: 0px;
  left: 0px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #000000;
}
.donate-block .details {
  padding: 0 32px;
}
@media only screen and (max-width: 1024px) {
  .donate-block .details {
    padding: 0;
  }
}
.donate-block .details h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 16px;
  margin-bottom: 44px;
}
.donate-block .details h3 span {
  font-size: 16px;
}
.donate-block .details__row {
  margin-bottom: 44px;
}
@media only screen and (max-width: 520px) {
  .donate-block .details__row {
    margin-bottom: 0;
    flex-direction: column;
  }
}
.donate-block .details__row .custom-input {
  margin-right: 32px;
}
.donate-block .details__row .custom-input:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 520px) {
  .donate-block .details__row .custom-input {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.donate-block .payment {
  padding: 0 32px;
}
.donate-block .payment h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 16px;
  margin-bottom: 64px;
}
.donate-block .payment h3 span {
  font-size: 16px;
}

.thanks-block {
  position: relative;
  height: 500px;
}
.thanks-block__inner {
  width: 100%;
  background: #F0F0F0;
  max-width: 1165px;
  padding: 50px 120px;
  margin: 0 auto;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  position: absolute;
  left: 50%;
  top: 43%;
  -moz-transform: translate(-50%, -43%);
  -o-transform: translate(-50%, -43%);
  -ms-transform: translate(-50%, -43%);
  -webkit-transform: translate(-50%, -43%);
  transform: translate(-50%, -43%);
}
@media only screen and (max-width: 1024px) {
  .thanks-block__inner {
    max-width: 900px;
    padding: 44px 64px;
  }
}
@media only screen and (max-width: 780px) {
  .thanks-block__inner {
    max-width: calc(100% - 48px);
  }
}
.thanks-block__header {
  padding-bottom: 120px;
}
@media only screen and (max-width: 1024px) {
  .thanks-block__header {
    padding-bottom: 44px;
  }
}
.thanks-block__header .logo-wrapper {
  width: 188px;
}
.thanks-block__header .logo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.thanks-block__header .sum h5 {
  font-size: 16px;
  font-weight: 700;
}
.thanks-block__header .sum span {
  font-size: 24px;
  font-weight: 700;
}
.thanks-block__body h1 {
  font-size: 114px;
  font-weight: 700;
  color: #E86830;
  text-transform: capitalize;
  margin-bottom: 28px;
}
@media only screen and (max-width: 1024px) {
  .thanks-block__body h1 {
    font-size: 72px;
  }
}
@media only screen and (max-width: 780px) {
  .thanks-block__body h1 {
    font-size: 32px;
  }
}
.thanks-block__body h6 {
  font-weight: 400;
  font-size: 24px;
  line-height: 16px;
  text-transform: capitalize;
}
@media only screen and (max-width: 780px) {
  .thanks-block__body h6 {
    font-size: 20px;
  }
}
.thanks-block__body .home-btn {
  margin-top: 120px;
}
@media only screen and (max-width: 1024px) {
  .thanks-block__body .home-btn {
    margin-top: 44px;
  }
}

.social-block {
  padding: 64px 0;
  background: #ffffff;
}
@media only screen and (max-width: 780px) {
  .social-block {
    padding: 44px 0;
  }
}
.social-block__icons li a {
  font-size: 24px;
  margin: 0 16px;
  color: #E86830;
  transition: all ease-in-out 0.3s;
}
@media only screen and (max-width: 780px) {
  .social-block__icons li a {
    font-size: 20px;
  }
}
.social-block__icons li a:hover {
  color: #EF940B;
}

.partners-block {
  padding: 64px 0;
  background: #FAFAFA;
  position: relative;
}
@media only screen and (max-width: 1440px) {
  .partners-block {
    padding: 64px 0;
  }
}
@media only screen and (max-width: 780px) {
  .partners-block {
    padding: 44px 24px;
  }
}
.partners-block h2 {
  font-size: 36px;
  color: #E86830;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  line-height: 36px;
}
@media only screen and (max-width: 1440px) {
  .partners-block h2 {
    font-size: 36px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 780px) {
  .partners-block h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
.partners-block h5 {
  font-size: 18px;
  line-height: 48px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}
.partners-block__logo-row {
  margin: 32px 0;
}
@media only screen and (max-width: 1024px) {
  .partners-block__logo-row {
    margin: 24px 0;
  }
}
.partners-block__logo-row:last-child {
  margin-bottom: 0;
}
.partners-block__logo-row .item {
  margin-right: 80px;
}
@media only screen and (max-width: 1440px) {
  .partners-block__logo-row .item {
    margin-right: 64px;
  }
}
@media only screen and (max-width: 1024px) {
  .partners-block__logo-row .item {
    margin-right: 44px;
  }
}
.partners-block__logo-row .item:last-child {
  margin-right: 0;
}
.partners-block__logo-row .item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partners-section {
  margin: -260px auto 0 auto;
  padding-bottom: 64px;
}

.footer-block {
  background: #FAFAFB;
  padding: 50px 0;
  color: #0D0C22;
}
@media only screen and (max-width: 1024px) {
  .footer-block {
    padding: 44px 24px;
  }
}
@media only screen and (max-width: 780px) {
  .footer-block {
    padding: 32px 0px;
  }
}
.footer-block__inner-top ul {
  flex: 1;
}
.footer-block__inner-top ul h5 {
  color: #0D0C22;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 17px;
  margin-bottom: 34px;
}
.footer-block__inner-top ul li {
  margin-bottom: 18px;
}
.footer-block__inner-top ul li a {
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
  line-height: 14px;
  transition: all ease-in-out 0.3s;
}
.footer-block__inner-top ul li a:hover {
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  .footer-block__inner-middle {
    flex-direction: row;
    align-items: start;
  }
}
.footer-block__inner-top-left {
  width: 100%;
  margin-bottom: 146px;
}
@media only screen and (max-width: 1024px) {
  .footer-block__inner-top-left {
    flex-direction: column;
    margin-bottom: 32px;
  }
}
.footer-block__inner-top-left .address {
  text-align: right;
}
.footer-block__inner-top-left .address p {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  margin-bottom: 8px;
}
.footer-block__inner-top-left .address .mail {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  margin-top: 16px;
  margin-bottom: 8px;
}
.footer-block__inner-bottom {
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
  line-height: 14px;
  transition: all ease-in-out 0.3s;
}
@media only screen and (max-width: 780px) {
  .footer-block__inner-bottom {
    flex-direction: column;
  }
}
@media only screen and (max-width: 780px) {
  .footer-block__inner-bottom .all-rights {
    order: 2;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid #E1E1E1;
  }
}
.footer-block__inner-bottom .copyright {
  margin-right: 64px;
}
@media only screen and (max-width: 780px) {
  .footer-block__inner-bottom .copyright {
    margin-right: 12px;
  }
}
.footer-block__inner-bottom .divider {
  border-left: 1px solid #EF940B;
  border-right: 1px solid #EF940B;
  height: 20px;
}
.footer-block__inner-bottom .policy {
  margin-left: 64px;
}
@media only screen and (max-width: 780px) {
  .footer-block__inner-bottom .policy {
    margin-left: 12px;
  }
}
.footer-block__inner-bottom .icons li a {
  font-size: 16px;
  margin-left: 20px;
  color: #E86830;
  transition: all ease-in-out;
}
.footer-block__inner-bottom .icons li a:hover {
  color: #EF940B;
}
.footer-block .btn {
  width: 152px;
  max-width: 152px;
  min-width: 152px;
  margin: 0;
  font-size: 14px;
}

.popup-block.show {
  display: flex;
}
.popup-block__inner {
  background: #ffffff;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 44px;
  position: relative;
  text-align: center;
  overflow: hidden;
}
@media only screen and (max-width: 520px) {
  .popup-block__inner {
    padding: 64px 0px;
  }
}
.popup-block__inner h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1440px) {
  .popup-block__inner h2 {
    font-size: 36px;
    line-height: 34px;
  }
}
@media only screen and (max-width: 780px) {
  .popup-block__inner h2 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 8px;
  }
}
.popup-block__inner p {
  font-size: 20px;
  line-height: 31px;
  font-weight: 400;
  margin-bottom: 16px;
}
@media only screen and (max-width: 780px) {
  .popup-block__inner p {
    font-size: 16px;
  }
}
.popup-block__inner form {
  padding: 16px;
}
@media only screen and (max-width: 520px) {
  .popup-block__inner form {
    padding: 0;
  }
}
.popup-block__inner form .flex__1 {
  position: relative;
}
@media only screen and (max-width: 520px) {
  .popup-block__inner form .flex__1 {
    width: 100%;
    margin: 0;
  }
}
.popup-block__inner form .right-margin {
  margin-right: 16px;
}
@media only screen and (max-width: 520px) {
  .popup-block__inner form .right-margin {
    margin-right: 0;
  }
}
.popup-block__inner form .payment-info {
  background: #ECECEC;
  border: 1px solid #E1E1E1;
  padding: 24px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
  margin-bottom: 24px;
}
.popup-block__inner form .payment-info p {
  color: #56647E;
}
.popup-block__inner form .product-checkboxes {
  margin-bottom: 32px;
}
.popup-block__inner form .product-checkboxes label.orange-title {
  color: #E86830;
  margin-bottom: 16px;
  padding-bottom: 8px;
  text-align: left;
  padding-left: 0;
  font-size: 24px;
  width: 100%;
  border-bottom: 1px solid #D9D9D9;
}
.popup-block__inner form .product-checkboxes h5 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: left;
}
.popup-block__inner form .product-checkboxes .checkbox-item {
  margin-bottom: 0px;
  padding: 0 32px;
}
@media only screen and (max-width: 520px) {
  .popup-block__inner form .product-checkboxes .checkbox-item {
    padding: 0;
    flex-direction: column;
    margin-bottom: 32px;
  }
}
.popup-block__inner form .product-checkboxes .custom-checkbox {
  display: block;
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  user-select: none;
}
.popup-block__inner form .product-checkboxes .custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.popup-block__inner form .product-checkboxes .custom-checkbox input:checked ~ .checkmark {
  background-color: #E86830;
  border-color: #E86830;
}
.popup-block__inner form .product-checkboxes .custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}
.popup-block__inner form .product-checkboxes .custom-checkbox:hover input ~ .checkmark {
  background-color: #FAFAFA;
  border: 1px solid #E1E1E1;
}
.popup-block__inner form .product-checkboxes .custom-checkbox:hover input ~ .checkmark::after {
  border-color: #000000;
}
.popup-block__inner form .product-checkboxes .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: #FAFAFA;
  border: 1px solid #E1E1E1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
.popup-block__inner form .product-checkboxes .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.popup-block__inner form .product-checkboxes .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.popup-block__inner form .product-checkboxes .price {
  font-weight: 700;
  padding-top: 2px;
}
.popup-block__inner form .product-checkboxes .price i,
.popup-block__inner form .product-checkboxes .price svg {
  margin-right: 8px;
}
.popup-block__inner form .total {
  margin-right: 24px;
}
@media only screen and (max-width: 780px) {
  .popup-block__inner form .total {
    margin-top: 16px;
    margin-right: 0;
  }
}
.popup-block__inner form .total p {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 700;
}
.popup-block__inner form .total i,
.popup-block__inner form .total #total_amount {
  font-size: 20px;
  color: #E86830;
}
@media only screen and (max-width: 780px) {
  .popup-block__inner form .payment-m-row {
    flex-direction: column;
  }
}
.popup-block__inner form .btn {
  margin: 32px auto 0 auto;
}
.popup-block__inner .btn {
  width: 164px;
  margin: 16px auto;
}
.popup-block .payment-methods h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 20px;
  text-align: left;
}
.popup-block .payment-methods .img-item {
  width: 100px;
  height: 50px;
  margin-right: 8px;
  border: 1px solid #000000;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
  padding: 8px;
}
@media only screen and (max-width: 520px) {
  .popup-block .payment-methods .img-item {
    width: 80px;
    height: 40px;
  }
}
.popup-block .payment-methods .img-item:last-child {
  margin-right: 0;
}
.popup-block .payment-methods .img-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media only screen and (max-width: 520px) {
  .popup-block .custom-input-box {
    flex-direction: column;
    margin-bottom: 16px;
  }
}
.popup-block .custom-input-box .input-title {
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 700;
  width: 40%;
}
@media only screen and (max-width: 780px) {
  .popup-block .custom-input-box .input-title {
    width: 45%;
    margin-bottom: 16px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 520px) {
  .popup-block .custom-input-box .input-title {
    width: 100%;
  }
}

.contact-us-block {
  padding-top: 171px;
}
@media only screen and (max-width: 1440px) {
  .contact-us-block {
    padding: 144px 0;
  }
}
@media only screen and (max-width: 1280px) {
  .contact-us-block {
    padding: 70px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .contact-us-block {
    padding: 64px 0;
  }
}
@media only screen and (max-width: 780px) {
  .contact-us-block {
    flex-direction: column;
  }
}
.contact-us-block .mapouter {
  width: 75%;
  margin-right: 44px;
}
@media only screen and (max-width: 780px) {
  .contact-us-block .mapouter {
    width: 100%;
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.contact-us-block .wrap-contact-txt p {
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  color: #000000;
  margin-bottom: 32px;
}
@media only screen and (max-width: 1280px) {
  .contact-us-block .wrap-contact-txt p {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 16px;
  }
}
.contact-us-block .wrap-contact-txt p span {
  font-weight: 700;
  color: #E86830;
}

.search-page {
  margin-top: 80px;
  padding: 120px 0;
}
.search-page__inner {
  position: relative;
}
.search-page__inner input {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  border-color: #E86830;
  background: #ffffff;
  padding-right: 44px;
}
.search-page__inner input::placeholder {
  color: #CECECE;
}
.search-page__inner .search-btn {
  position: absolute;
  right: 12px;
  top: 12px;
  color: #CECECE;
}

.custom-pagination .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.custom-pagination .pagination .next a::before {
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f105";
  font-size: 20px;
}
.custom-pagination .pagination .prev a::before {
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f104";
  font-size: 20px;
}
.custom-pagination .pagination .active {
  background: #EF940B;
}
.custom-pagination .pagination li {
  width: 32px;
  height: 32px;
  background: #E86830;
  color: #ffffff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  transition: all ease-in-out 0.3s;
}
.custom-pagination .pagination li:hover {
  background: #EF940B;
}

.error-block {
  width: 100%;
  padding: 124px 0;
  height: 50vh;
}
.error-block__row {
  max-width: 1200px;
  width: 100%;
  position: relative;
  margin: 0 auto;
  height: 50vh;
}
.error-block__row::after {
  content: "";
  width: 700px;
  height: 500px;
  background-color: #E86830;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  right: 0;
}
.error-block__row h1 {
  font-size: 72px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
  position: relative;
  left: 25%;
}

input[type=email] {
  text-transform: none !important;
}

input {
  width: 100%;
  padding: 16px 24px;
  -webkit-border-radius: 33px;
  -moz-border-radius: 33px;
  -ms-border-radius: 33px;
  border-radius: 33px;
  background: #FAFAFA;
  font-size: 15px;
  border: 1px solid #E1E1E1;
  color: #9B9BA4;
  outline: 0;
  margin-left: 42px;
  margin-bottom: 24px;
  height: 44px;
}
input.error {
  border: 1px solid #E1E1E1;
}
@media only screen and (max-width: 1280px) {
  input {
    font-size: 16px;
    padding: 0 20px;
    height: 44px;
  }
}
@media only screen and (max-width: 780px) {
  input {
    padding: 0px 12px;
    font-size: 14px;
    margin-left: 16px;
    margin-bottom: 16px;
  }
}
input::placeholder {
  font-weight: 400;
  color: #9B9BA4;
}
input:first-child {
  margin-left: 0;
}

textarea {
  width: 100%;
  padding: 16px 24px;
  -webkit-border-radius: 33px;
  -moz-border-radius: 33px;
  -ms-border-radius: 33px;
  border-radius: 33px;
  background: #FAFAFA;
  font-size: 15px;
  border: 1px solid #E1E1E1;
  color: #9B9BA4;
  outline: 0;
  margin-left: 42px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1280px) {
  textarea {
    font-size: 16px;
    padding: 12px 20px;
    height: 44px;
  }
}
@media only screen and (max-width: 780px) {
  textarea {
    padding: 12px;
    font-size: 14px;
    margin-left: 16px;
    margin-bottom: 16px;
  }
}
textarea::placeholder {
  font-weight: 400;
}
textarea:first-child {
  margin-left: 0;
}

.custom-input {
  width: 100%;
  position: relative;
}
.custom-input label {
  position: absolute;
  top: -24px;
  left: 8px;
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
@media only screen and (max-width: 520px) {
  .custom-input label {
    top: -20px;
    font-size: 16px;
  }
}
.custom-input .iti {
  width: 100%;
}
.custom-input .iti--allow-dropdown,
.custom-input .iti__flag-container:hover,
.custom-input .iti__selected-flag {
  background-color: transparent !important;
}
.custom-input .light {
  font-size: 12px;
  font-weight: 400;
  line-height: 40px;
  top: -32px;
}
.custom-input .bold {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}
@media only screen and (max-width: 520px) {
  .custom-input .bold {
    font-size: 16px;
  }
}
.custom-input input {
  background: transparent;
  color: #000000;
  text-transform: capitalize;
  font-size: 15px;
  border: 1px solid #000000;
  margin-bottom: 0;
  margin-left: 0;
  height: 44px;
}
@media only screen and (max-width: 1280px) {
  .custom-input input {
    font-size: 16px;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 780px) {
  .custom-input input {
    padding: 0px 12px;
    font-size: 14px;
    margin-left: 16px;
    margin-bottom: 16px;
  }
}

.custom-checkbox {
  display: block;
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.custom-checkbox:hover input ~ .checkmark {
  background-color: #CECECE;
}
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom-checkbox input:checked ~ .checkmark {
  background-color: #CECECE;
}
.custom-checkbox input:checked ~ .checkmark :after {
  content: "";
  position: absolute;
  display: none;
}
.custom-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #D9D9D9;
}
.custom-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.custom-checkbox .checkmark:after {
  left: 8px;
  top: 4px;
  width: 6px;
  height: 10px;
  border: solid #000000;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.custom-select {
  width: 100%;
}
.custom-select select {
  width: 100%;
  padding: 0px 24px;
  height: 44px;
  -webkit-border-radius: 33px;
  -moz-border-radius: 33px;
  -ms-border-radius: 33px;
  border-radius: 33px;
  background: #FAFAFA;
  font-size: 15px;
  border: 1px solid #E1E1E1;
  color: #9B9BA4;
  outline: 0;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1280px) {
  .custom-select select {
    font-size: 16px;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 780px) {
  .custom-select select {
    padding: 0px 12px;
    font-size: 14px;
    margin-bottom: 16px;
  }
}
.custom-select input {
  margin-left: 0;
  margin-bottom: 0;
}

label.error {
  position: absolute;
  font-weight: 700;
  top: 50px;
  font-size: 12px;
  text-align: right;
  width: 100%;
  color: red;
  left: 0px;
  background: transparent !important;
  border: none !important;
}

.error {
  background: transparent !important;
}/*# sourceMappingURL=main.css.map */