/***** Responsive breakpoints*****/
/* Colors */
/* fonts */
/*flexbox*/
/*Flexbox SASS mixins*/
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@100;200;300;400;500;600;700;800;900&display=swap");
.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;
}

*,
html {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: "Rubik", sans-serif;
  font-weight: normal;
  font-size: 16px;
  width: 100%;
}

.main-block {
  width: 100%;
  min-height: calc(100vh - 548px);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: block;
}
@media only screen and (max-width: 1281px) {
  .container {
    width: 100%;
    padding: 0 44px;
  }
}
@media only screen and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
}
@media only screen and (max-width: 520px) {
  .container {
    padding: 0 24px;
  }
}

.top-space {
  margin-top: 84px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1281px) {
  .top-space {
    margin-top: 74px;
  }
}

.custom-dropdown {
  position: relative;
  border: 1px solid #DEDEDE;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  padding: 12px 44px 12px 16px;
  margin-right: 16px;
}
.custom-dropdown li {
  color: #2E2E2E;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 18px;
}
.custom-dropdown i,
.custom-dropdown svg {
  position: absolute;
  right: 12px;
  top: 16px;
}
.custom-dropdown .dropdown-menu {
  position: absolute;
  background: #ffffff;
  padding: 16px;
  left: 0;
  top: 45px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.6);
  z-index: 2;
  display: none;
}
.custom-dropdown .dropdown-menu li {
  margin-bottom: 16px;
}
.custom-dropdown .dropdown-menu li:last-child {
  margin-bottom: 0;
}
.custom-dropdown .dropdown-menu.show {
  display: block;
}

.switch-button {
  background: #EFEFEF;
  overflow: hidden;
  text-align: center;
  font-size: 18px;
  letter-spacing: 1.5px;
  color: #2E2E2E;
  position: relative;
}
.switch-button .btn {
  width: 100%;
  min-width: 100%;
  height: auto;
  border: 0;
  display: inline-block;
  padding: 16px;
  position: relative;
  text-align: center;
  transition: background 600ms ease, color 600ms ease;
  margin-left: 0;
}
.switch-button .btn::before {
  display: none;
}
.switch-button .btn:hover {
  border: 0;
}
.switch-button input[type=radio].toggle {
  display: none;
}
.switch-button input[type=radio].toggle + label {
  cursor: pointer;
  min-width: 260px;
}
.switch-button input[type=radio].toggle.toggle-left + label {
  border-right: 0;
}
.switch-button input[type=radio].toggle.toggle-left + label:after {
  left: 100%;
}
.switch-button input[type=radio].toggle.toggle-right + label {
  margin-left: -5px;
}
.switch-button input[type=radio].toggle.toggle-right + label:after {
  left: -100%;
}
.switch-button input[type=radio].toggle:checked + label {
  cursor: default;
  background: #3DA46C;
  color: white;
  transition: color 200ms;
}
.switch-button input[type=radio].toggle:checked + label:after {
  left: 0;
}

.custom-select {
  position: relative;
  margin-right: 16px;
}
@media only screen and (max-width: 520px) {
  .custom-select {
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.custom-select select {
  width: 100%;
  outline: 0;
  border: 1px solid #DEDEDE;
  padding: 12px 16px;
  color: #444444;
  font-size: 14px;
}
.custom-select select option {
  padding: 8px 0;
  font-size: 14px;
}

.input-form input {
  width: 100%;
  outline: 0;
  border: 1px solid #DEDEDE;
  padding: 12px 16px;
  color: #444444;
  font-size: 14px;
}

.leaflet-control-layers,
.leaflet-popup-content-wrapper {
  border-radius: 0px !important;
}

.leaflet-control-layers label {
  text-align: left;
}

.leaflet-popup-content h3 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: left;
}

.leaflet-popup-content p {
  margin: 0 !important;
  color: #444444;
  font-size: 12px !important;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-align: left !important;
}

/*Animations*/
.drop-in {
  animation: fadeIn 3s ease 600ms backwards;
}

.drop-in-2 {
  animation: fadeIn 1200ms ease 500ms backwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes drop-out {
  from {
    opacity: 0;
    transform: translateY(200px);
  }
  to {
    opacity: 1;
    transform: translate(0px);
  }
}
@keyframes appearance {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    top: 20px;
  }
  to {
    opacity: 1;
    top: 0px;
  }
}
.intro__logos {
  position: relative;
  height: 70px;
  overflow: hidden;
}
@media only screen and (max-width: 780px) {
  .intro__logos {
    height: 80px;
  }
}

.fading-lines {
  position: unset !important;
  margin-top: -70px;
}
@media only screen and (max-width: 780px) {
  .fading-lines {
    margin-top: -80px;
  }
}
@media only screen and (max-width: 520px) {
  .fading-lines {
    margin-top: -60px;
  }
}

.intro__logos-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  overflow: hidden;
  justify-content: center;
}
@media only screen and (max-width: 780px) {
  .intro__logos-line {
    height: 80px;
    overflow: hidden;
  }
}
@media only screen and (max-width: 520px) {
  .intro__logos-line {
    height: 60px;
    overflow: hidden;
  }
}

.intro__logos-line img {
  height: 66px;
  margin: 0 8px;
  margin-left: 40px;
  transition-duration: 0.1s;
  transition-property: transform;
  filter: grayscale(100%);
  transition: all ease-in-out 0.1s;
}
@media only screen and (max-width: 1024px) {
  .intro__logos-line img {
    margin-left: 8px;
    height: 70px;
  }
}
@media only screen and (max-width: 780px) {
  .intro__logos-line img {
    height: 64px;
    width: 64px;
    margin: 0 8px;
    object-fit: contain;
  }
}
@media only screen and (max-width: 520px) {
  .intro__logos-line img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    margin: 0 2px !important;
  }
}

.intro__logos-line img:hover {
  filter: grayscale(0%);
}

.intro__logos-line img:nth-child(2) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.intro__logos-line img:nth-child(3) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.intro__logos-line img:nth-child(4) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.intro__logos-line img:nth-child(5) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.intro__logos-line img:nth-child(6) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.intro__logos-line:last-child {
  position: absolute;
  bottom: 0;
  left: 0;
}

.intro__logos-line:last-child img {
  -webkit-transform: translateY(108px);
  transform: translateY(108px);
}

.intro__logos.flipped .intro__logos-line img {
  -webkit-transform: translateY(-108px);
  transform: translateY(-108px);
}

.intro__logos.flipped .intro__logos-line:last-child img {
  -webkit-transform: none;
  transform: none;
}

.intro__figure {
  margin: -48% -69.3% -48% -52%;
  margin: -11% -10% -10% 0;
}

.intro__figure img {
  margin-right: auto;
  margin-left: auto;
}

.intro__title {
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 1283.98px) {
  .intro {
    padding-top: 64px;
    padding-bottom: 122px;
  }
}
@media screen and (max-width: 991.98px) {
  .intro {
    text-align: center;
  }
  .intro__logos-line {
    margin-right: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .intro__logos-line:last-child {
    right: 0;
  }
  .intro__figure {
    margin: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .intro {
    padding-top: 48px;
    padding-bottom: 106px;
  }
  .intro__logos-line {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 0;
  }
  .intro__logos-line img {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media screen and (max-width: 599.98px) {
  .intro__note {
    font-size: 14px;
  }
  .intro__logos {
    margin-bottom: 0;
  }
  .intro__logos-line img {
    margin-bottom: 0;
  }
}
.intro__logos.flipped .intro__logos-line img {
  -webkit-transform: translateY(-108px);
  transform: translateY(-108px);
}

.intro__logos.flipped .intro__logos-line:last-child img {
  -webkit-transform: none;
  transform: none;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    top: 0px;
  }
  to {
    opacity: 1;
    top: 20px;
  }
}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  position: relative;
  overflow: hidden;
  width: 244px !important;
}

.leaflet-container a.leaflet-popup-close-button {
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2E2E2E !important;
  width: 24px !important;
  height: 24px !important;
}

.leaflet-popup-content {
  padding: 16px !important;
  width: 100% !important;
  margin: 0 !important;
}

.leaflet-popup-content img {
  width: 100%;
  height: 200px;
}

#inp-news .container {
  padding: 0;
}

.text-center-block p:empty {
  display: none;
}

.selectBox {
  position: relative;
}
.selectBox select {
  width: 100%;
}

.overSelect {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.custom-checkbox {
  display: none;
  width: 100%;
  outline: 0;
  border: 1px solid #DEDEDE;
  padding: 12px 16px;
  color: #959595;
  font-size: 14px;
}
.custom-checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.custom-checkbox label {
  display: flex;
  color: #959595;
  font-size: 14px;
  padding: 6px 0;
  align-items: flex-start;
  position: relative;
  line-height: 22px;
  border-bottom: 1px solid #DEDEDE;
}
.custom-checkbox label:last-child {
  border-bottom: none;
}
.custom-checkbox label:before {
  content: "";
  appearance: none;
  background-color: transparent;
  border: 2px solid #959595;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 8px;
}
.custom-checkbox input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 10px;
  width: 6px;
  height: 14px;
  border: solid #4CC2E0;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.multipleSelection {
  width: 244px;
}

.page-row {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  outline: 0;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  margin-left: 16px;
  transition: color 0.5s;
  transition: border 0.5s;
  border: 2px solid;
  box-sizing: border-box;
  white-space: nowrap;
}
.btn .btn-box {
  width: 22px;
  height: 22px;
  position: absolute;
  top: -0.098rem;
  left: -0.098rem;
  border-top: 2px solid;
  border-left: 2px solid;
  z-index: 2;
}
.btn .btn-box.mac-btn {
  top: -2px;
  left: -2px;
}
.btn:first-child {
  margin-left: 0;
}
.btn:hover {
  border: 2px solid;
}
.btn:hover::before,
.btn:hover .btn-box {
  border-left: 2px solid;
  border-top: 2px solid;
}
.btn__primery {
  border-color: #ffffff;
  color: #ffffff;
}
.btn__primery::before,
.btn__primery .btn-box {
  border-color: #F6A925;
}
.btn__primery:hover {
  color: #F6A925;
  border-color: #F6A925;
}
.btn__primery:hover::before,
.btn__primery:hover .btn-box {
  border-color: #ffffff;
}
.btn__secondary {
  border-color: #193952;
  color: #193952;
}
.btn__secondary::before,
.btn__secondary .btn-box {
  border-color: #F6A925;
}
.btn__secondary:hover {
  color: #F6A925;
  border-color: #193952;
}
.btn__secondary:hover::before,
.btn__secondary:hover .btn-box {
  border-color: #F6A925;
}
.btn__green-border {
  border-color: #3DA46C;
}
.btn__green-border:hover,
.btn__green-border .btn-box {
  background: #3DA46C;
  color: #ffffff;
}
.btn__yellow-border {
  border-color: #193952;
  color: #193952;
}
.btn__yellow-border::before,
.btn__yellow-border .btn-box {
  border-color: #F6A925;
}
.btn__yellow-border:hover {
  color: #F6A925;
  border-color: #F6A925;
}
.btn__yellow-border:hover::before,
.btn__yellow-border:hover .btn-box {
  border-color: #193952;
}

header {
  width: 100%;
  height: 84px;
  display: flex;
  align-items: center;
  padding: 0px 64px;
  position: fixed;
  top: 0;
  z-index: 8;
}
@media only screen and (max-width: 1600px) {
  header {
    padding: 0px 44px;
  }
}
@media only screen and (max-width: 1281px) {
  header {
    padding: 0px 24px;
    height: 70px;
  }
}
@media only screen and (max-width: 520px) {
  header {
    width: 100%;
    padding: 0px 24px;
  }
}
header .header-row {
  width: 100%;
}
header .wrap-logo {
  width: 172px;
  padding-right: 16px;
}
@media only screen and (max-width: 1281px) {
  header .wrap-logo {
    width: 124px;
    padding-right: 0;
  }
}
@media only screen and (max-width: 1024px) {
  header .wrap-logo {
    width: 124px;
    justify-content: flex-start;
  }
}
header .wrap-logo .logo {
  width: 120px;
  height: 70px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media only screen and (max-width: 1281px) {
  header .wrap-logo .logo {
    width: 80px;
  }
}
header .wrap-logo h1 {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 1024px) {
  header .wrap-logo h1 {
    font-size: 24px;
  }
}
header .toggleMenu {
  position: relative;
}
header .toggleMenu:hover ul {
  display: block;
}
@media only screen and (max-width: 1024px) {
  header .toggleMenu:hover ul {
    display: none;
  }
}
header .toggleMenu:hover i,
header .toggleMenu:hover svg {
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media only screen and (max-width: 1024px) {
  header .toggleMenu:hover i,
  header .toggleMenu:hover svg {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
header .toggleMenu:hover .angle-up {
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
header .toggle-mobile {
  width: 32px;
  height: 100%;
  display: none;
}
header .toggle-mobile i,
header .toggle-mobile svg {
  font-size: 32px;
}
@media only screen and (max-width: 1024px) {
  header .toggle-mobile {
    display: flex;
  }
}
header .nav-ul {
  height: 84px;
}
header .nav-ul.show-nav {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  color: #2E2E2E;
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 70px;
  padding: 16px;
  box-shadow: 0px 0px 1.45px rgba(0, 0, 0, 0.32);
}
@media only screen and (max-width: 1024px) {
  header .nav-ul {
    display: none;
  }
}
header .nav-ul__left {
  justify-content: flex-end;
}
@media only screen and (max-width: 1024px) {
  header .nav-ul__left {
    flex-direction: column;
    flex: none;
    justify-content: flex-start;
    align-items: flex-start;
    order: 2;
  }
}
header .nav-ul__left li {
  margin-right: 16px;
  font-size: 16px;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1440px) {
  header .nav-ul__left li {
    margin-right: 12px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 1281px) {
  header .nav-ul__left li {
    margin-right: 4px;
    font-size: 12px;
  }
}
@media only screen and (max-width: 1024px) {
  header .nav-ul__left li {
    font-size: 16px;
    margin-right: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
  }
}
header .nav-ul__left li a {
  font-weight: 400;
  padding: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  header .nav-ul__left li a {
    width: 100%;
    display: block;
  }
}
header .nav-ul__left li a i,
header .nav-ul__left li a svg {
  margin-left: 8px;
}
@media only screen and (max-width: 1281px) {
  header .nav-ul__left li a i,
  header .nav-ul__left li a svg {
    margin-left: 4px;
  }
}
@media only screen and (max-width: 1024px) {
  header .nav-ul__left li a i,
  header .nav-ul__left li a svg {
    float: right;
  }
}
header .nav-ul__left li:hover a::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 0px;
  top: 24px;
  border-left: 3px solid #F6A925;
  border-top: 3px solid #F6A925;
  animation: fadeIn 0.8s ease-in;
}
@media only screen and (max-width: 1024px) {
  header .nav-ul__left li:hover a::before {
    display: none;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
header .nav-ul__right {
  margin-left: 24px;
}
@media only screen and (max-width: 1281px) {
  header .nav-ul__right {
    margin-left: 8px;
  }
}
@media only screen and (max-width: 1024px) {
  header .nav-ul__right {
    margin-left: 0;
    order: 1;
    margin-bottom: 16px;
  }
}
header .dropdown-menu {
  position: absolute;
  min-width: 300px;
  background: #ffffff;
  color: #2E2E2E;
  box-shadow: 0px 0px 1.45px rgba(0, 0, 0, 0.32);
  padding: 16px;
  display: none;
  top: 64px;
  left: 0;
  animation: growDown 300ms ease-in-out forwards;
  transform-origin: top center;
}
@media only screen and (max-width: 1024px) {
  header .dropdown-menu {
    display: none;
    position: relative;
    min-width: auto;
    width: 100%;
    top: 0;
    padding: 0;
    box-shadow: none;
  }
}
header .dropdown-menu.show {
  display: block !important;
  border-bottom: 1px solid #E6E6E6;
  margin-bottom: 8px;
}
header .dropdown-menu li {
  margin-right: 0;
  text-align: left;
  font-size: 14px;
  width: 100%;
  line-height: 24px;
}
header .dropdown-menu li a {
  justify-content: flex-start;
  width: 100%;
}
header .dropdown-menu li a::before {
  display: none;
}
header .dropdown-menu li:hover a {
  color: #F6A925;
  justify-content: start;
}
header .dropdown-menu li:hover a::before {
  display: none;
}
@media only screen and (max-width: 1024px) {
  header .dropdown-menu li {
    margin-bottom: 0;
  }
}
header .search {
  width: 170px;
  margin-right: 16px;
  position: relative;
}
@media only screen and (max-width: 1281px) {
  header .search {
    margin-right: 8px;
  }
}
@media only screen and (max-width: 1024px) {
  header .search {
    width: 100%;
  }
}
header .search .search-icon {
  position: absolute;
  top: 10px;
  left: 8px;
}
header .search input {
  width: 100%;
  height: 40px;
  padding: 12px 16px 12px 32px;
  outline: 0;
  border: 1px solid #DEDEDE;
  color: #ffffff;
  text-transform: capitalize;
  background: transparent;
}
@media only screen and (max-width: 1281px) {
  header .search input {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1024px) {
  header .search input {
    color: #2E2E2E;
  }
}
header .search input::placeholder {
  color: #ffffff;
}
@media only screen and (max-width: 1024px) {
  header .search input::placeholder {
    color: #2E2E2E;
  }
}
header .lang {
  padding: 0px 12px;
  border: 1px solid #DEDEDE;
  text-transform: capitalize;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1281px) {
  header .lang {
    font-size: 12px;
    padding: 0px 8px;
  }
}
@media only screen and (max-width: 1024px) {
  header .lang .mobile-lang {
    display: none;
    position: absolute;
    padding: 8px;
    box-shadow: 0px 0px 1.45px rgba(0, 0, 0, 0.32);
  }
  header .lang .mobile-lang.show {
    display: block;
  }
}
header .lang li a {
  display: flex;
  align-items: center;
  flex-direction: row;
}
header .lang li a img {
  width: 20px;
  height: 14px;
  background-position: center center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  display: flex;
  margin-right: 4px;
}
header .lang li i,
header .lang li svg {
  margin-left: 8px;
  margin-top: 4px;
}
header .lang .dropdown-menu {
  min-width: 50px;
  width: 100%;
  top: 38px;
}

.header {
  color: #ffffff;
}
.header .logo {
  background-image: url("./../images/logo.png");
}

.scroll {
  background: #ffffff;
  color: #2E2E2E;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(2px);
}
.scroll .logo {
  background-image: url("./../images/logo.png");
}
.scroll .header__search-input input {
  color: #959595;
}
.scroll .header__search-input input::placeholder {
  color: #959595;
}

@media only screen and (max-width: 1281px) {
  #SearchForm {
    width: 100%;
  }
}

@keyframes growDown {
  0% {
    opacity: 0;
    transform: translateY(32px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer {
  background: #F6F6F6;
  color: #2E2E2E;
  width: 100%;
  padding: 64px 0;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .footer {
    padding: 44px 0;
  }
}
@media only screen and (max-width: 520px) {
  .footer {
    padding: 24px 0;
  }
}
@media only screen and (max-width: 520px) {
  .footer__inner {
    flex-direction: column;
  }
}
@media only screen and (max-width: 520px) {
  .footer__right {
    flex-direction: column;
  }
}
.footer__socials {
  text-align: right;
}
@media only screen and (max-width: 520px) {
  .footer__socials {
    text-align: center;
    margin-top: 16px;
    justify-content: center;
  }
}
.footer__socials li {
  margin: 0 10px;
  margin-bottom: 0px !important;
  transition: all ease-in-out 0.3s;
}
.footer__socials li a {
  color: #193952;
  font-size: 32px;
}
.footer__socials li:hover a {
  color: #F6A925;
}
.footer__partner {
  margin-right: 44px;
}
@media only screen and (max-width: 520px) {
  .footer__partner {
    margin-right: 0;
    margin-bottom: 32px;
  }
}
.footer__partner img {
  width: 240px;
  margin-bottom: 24px;
  object-fit: contain;
}
@media only screen and (max-width: 520px) {
  .footer__partner img {
    margin: 0 auto;
    width: 200px;
    margin-bottom: 16px;
  }
}
.footer__partner p {
  border-top: 1px solid #E6E6E6;
  padding-top: 24px;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.5px;
  margin-right: 44px;
}
@media only screen and (max-width: 520px) {
  .footer__partner p {
    margin-right: 0;
  }
}
.footer__item {
  margin-right: 64px;
}
@media only screen and (max-width: 780px) {
  .footer__item {
    margin-right: 16px;
  }
}
@media only screen and (max-width: 520px) {
  .footer__item {
    margin-right: 0;
    margin-bottom: 16px;
  }
  .footer__item:last-child {
    margin-bottom: 0;
  }
}
.footer__item:last-child {
  margin-right: 0;
}
.footer__item h5 {
  background: #E6E6E6;
  font-weight: 400;
  font-size: 14px;
  padding: 8px 16px;
  margin-bottom: 16px;
  text-align: center;
  width: fit-content;
}
.footer__item .custom-ul li {
  border-bottom: 1px solid #E6E6E6;
  padding: 16px 0;
}
.footer__item .custom-ul li:last-child {
  border-bottom: 0;
}
.footer__item .custom-ul li a i,
.footer__item .custom-ul li a svg {
  color: #F6A925;
  margin-right: 16px;
}
.footer__item .custom-ul li a:hover i,
.footer__item .custom-ul li a:hover svg {
  color: #F5A200;
}
.footer__item ul li {
  margin-bottom: 16px;
}
.footer__item ul li a {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.2px;
  transition: all ease-in-out 0.3s;
}
.footer__item ul li a i,
.footer__item ul li a svg {
  margin-right: 8px;
  font-size: 16px;
  margin-top: 2px;
}
.footer__item ul li a img {
  width: 16px;
  height: auto;
  margin-right: 8px;
  margin-bottom: 0;
  margin-top: 2px;
}
.footer__item ul .email {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #E6E6E6;
}
.footer__copyright {
  border-top: 1px solid #E6E6E6;
  padding-top: 24px;
  margin-top: 44px;
}
@media only screen and (max-width: 520px) {
  .footer__copyright {
    flex-direction: column;
    margin-top: 24px;
    text-align: center;
  }
}
.footer__copyright .copyright {
  font-size: 13px;
  line-height: 21px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.banner-block-carousel {
  width: 100%;
  position: relative;
  height: 46rem;
  overflow: hidden;
}
@media only screen and (max-width: 1600px) {
  .banner-block-carousel {
    height: 42rem;
  }
}
@media only screen and (max-width: 1281px) {
  .banner-block-carousel {
    height: 38rem;
  }
}
@media only screen and (max-width: 780px) {
  .banner-block-carousel {
    height: 36rem;
  }
}
@media only screen and (max-width: 520px) {
  .banner-block-carousel {
    height: 46rem;
  }
}
.banner-block-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: transparent !important;
}
.banner-block-carousel .owl-nav button span {
  color: #ffffff;
  font-size: 32px;
}
.banner-block-carousel .owl-nav .owl-prev {
  left: 16px;
}
.banner-block-carousel .owl-nav .owl-next {
  right: 16px;
}

.banner-block {
  padding: 112px 0;
  background: linear-gradient(90deg, #193952, rgba(255, 133, 12, 0.4)), url("./../images/banner-img.jpg");
  width: 100%;
  height: 46rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1600px) {
  .banner-block {
    height: 42rem;
  }
}
@media only screen and (max-width: 1281px) {
  .banner-block {
    height: 38rem;
  }
}
@media only screen and (max-width: 780px) {
  .banner-block {
    height: 36rem;
  }
}
@media only screen and (max-width: 520px) {
  .banner-block {
    height: 48rem;
  }
}
.banner-block__inner {
  position: absolute;
  width: 60%;
  top: 25%;
  left: 20%;
  margin: 0;
  color: #ffffff;
  -moz-transform: translate(-20%, -25%);
  -o-transform: translate(-20%, -25%);
  -ms-transform: translate(-20%, -25%);
  -webkit-transform: translate(-20%, -25%);
  transform: translate(-20%, -25%);
  text-align: left;
  padding-top: 64px;
}
@media only screen and (max-width: 1281px) {
  .banner-block__inner {
    width: 80%;
    top: 15%;
    -moz-transform: translate(-20%, -15%);
    -o-transform: translate(-20%, -15%);
    -ms-transform: translate(-20%, -15%);
    -webkit-transform: translate(-20%, -15%);
    transform: translate(-20%, -15%);
  }
}
@media only screen and (max-width: 780px) {
  .banner-block__inner {
    width: 100%;
    padding: 32px;
  }
}
@media only screen and (max-width: 520px) {
  .banner-block__inner {
    width: 100%;
    padding: 84px 24px 24px 24px;
  }
}
.banner-block__inner h1 {
  font-size: 44px;
  margin: 0 auto;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 54px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1281px) {
  .banner-block__inner h1 {
    font-size: 40px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 780px) {
  .banner-block__inner h1 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 520px) {
  .banner-block__inner h1 {
    font-size: 24px;
    line-height: 30px;
  }
}
.banner-block__inner p {
  font-size: 24px;
  max-width: 1300px;
  margin: 0 auto;
  font-weight: 300;
  letter-spacing: 0.2px;
  line-height: 40px;
  margin-bottom: 72px;
}
@media only screen and (max-width: 1600px) {
  .banner-block__inner p {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.1px;
    line-height: 30px;
    margin-bottom: 56px;
  }
}
@media only screen and (max-width: 1281px) {
  .banner-block__inner p {
    margin-bottom: 44px;
  }
}
@media only screen and (max-width: 520px) {
  .banner-block__inner p {
    margin-bottom: 24px;
  }
}
.banner-block__btns {
  margin: 0;
}

.technology-section {
  background: #3DA46C;
  position: absolute;
  bottom: -64px;
  right: 0%;
  max-width: 600px;
  width: 100%;
  overflow: hidden;
  padding: 24px;
  z-index: 3;
}
@media only screen and (max-width: 780px) {
  .technology-section {
    padding: 16px;
  }
}
@media only screen and (max-width: 520px) {
  .technology-section {
    width: calc(100% - 32px);
    max-width: 100%;
    margin: 0 16px;
    right: 0;
    bottom: -164px;
  }
}
.technology-section__inner-row {
  width: 100%;
  margin-bottom: 24px;
}
@media only screen and (max-width: 780px) {
  .technology-section__inner-row {
    margin-bottom: 16px;
  }
}
.technology-section__inner-row:last-child {
  margin-bottom: 0;
}
.technology-section__inner .tech-item {
  width: 50%;
  text-align: left;
  color: #ffffff;
  padding: 0;
  border-left: 1px solid #ffffff;
  align-items: center;
}
.technology-section__inner .tech-item:first-child {
  border-left: 0;
}
@media only screen and (max-width: 520px) {
  .technology-section__inner .tech-item {
    flex-direction: column;
  }
}
.technology-section__inner .tech-item .sun-anime {
  position: relative;
  width: 64px;
  overflow: hidden;
}
@media only screen and (max-width: 780px) {
  .technology-section__inner .tech-item .sun-anime {
    width: 54px;
  }
}
@media only screen and (max-width: 520px) {
  .technology-section__inner .tech-item .sun-anime {
    width: 50px;
  }
}
.technology-section__inner .tech-item .sun-anime .sun {
  width: 54px;
  object-fit: contain;
  animation: scaleSun 1.5s infinite;
}
@media only screen and (max-width: 780px) {
  .technology-section__inner .tech-item .sun-anime .sun {
    width: 40px;
  }
}
@media only screen and (max-width: 520px) {
  .technology-section__inner .tech-item .sun-anime .sun {
    width: 100%;
  }
}
@keyframes scaleSun {
  0% {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.technology-section__inner .tech-item .rays {
  height: 24px;
  width: 100%;
  position: relative;
}
.technology-section__inner .tech-item .rays img {
  width: 14px;
  animation: jumpInfinitee 1.5s infinite;
  position: absolute;
  -moz-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}
.technology-section__inner .tech-item .rays img:first-child {
  left: 12px;
}
@media only screen and (max-width: 780px) {
  .technology-section__inner .tech-item .rays img:first-child {
    left: 8px;
  }
}
@media only screen and (max-width: 520px) {
  .technology-section__inner .tech-item .rays img:first-child {
    left: 4px;
  }
}
.technology-section__inner .tech-item .rays img:nth-child(2n+2) {
  left: 24px;
}
@media only screen and (max-width: 780px) {
  .technology-section__inner .tech-item .rays img:nth-child(2n+2) {
    left: 20px;
  }
}
@media only screen and (max-width: 520px) {
  .technology-section__inner .tech-item .rays img:nth-child(2n+2) {
    left: 18px;
  }
}
.technology-section__inner .tech-item .rays img:last-child {
  left: 36px;
}
@media only screen and (max-width: 780px) {
  .technology-section__inner .tech-item .rays img:last-child {
    left: 32px;
  }
}
@keyframes jumpInfinitee {
  0% {
    bottom: 0px;
  }
  50% {
    bottom: 6px;
  }
  100% {
    bottom: 0px;
  }
}
.technology-section__inner .tech-item .tech-info {
  font-size: 24px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 1.2px;
  margin-left: 8px;
  width: calc(100% - 72px);
}
@media only screen and (max-width: 780px) {
  .technology-section__inner .tech-item .tech-info {
    font-size: 20px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 520px) {
  .technology-section__inner .tech-item .tech-info {
    width: 100%;
    font-size: 18px;
    margin: 0;
    padding: 8px;
    text-align: center;
  }
}
.technology-section__inner .tech-item span {
  display: block;
  font-size: 14px;
  letter-spacing: 1.2px;
  font-weight: 400;
  line-height: 24px;
}
@media only screen and (max-width: 520px) {
  .technology-section__inner .tech-item span {
    letter-spacing: 0.5px;
    line-height: 22px;
  }
}
.technology-section__inner .tech-img {
  width: 64px;
  height: 84px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.technology-section__inner .tech-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.technology-section__inner .tech-img .wave-1,
.technology-section__inner .tech-img .wave-2 {
  margin-top: 2px;
  height: 10px;
  position: absolute;
}
.technology-section__inner .tech-img .wave-1 {
  bottom: 14px;
}
.technology-section__inner .tech-img .wave-2 {
  bottom: 4px;
}

.news-block {
  padding-top: 110px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 520px) {
  .news-block {
    padding-top: 224px;
  }
}
@media only screen and (max-width: 520px) {
  .news-block .news-row {
    flex-direction: column;
  }
}
@media only screen and (max-width: 520px) {
  .news-block__item-row {
    flex-direction: column;
  }
}
.news-block__title {
  margin-bottom: 24px;
}
@media only screen and (max-width: 520px) {
  .news-block__title {
    flex-direction: column;
  }
}
.news-block__title h4 {
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
@media only screen and (max-width: 520px) {
  .news-block__title h4 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 520px) {
  .news-block__title .btn {
    margin-left: 0;
    margin-top: 16px;
  }
}
.news-block__inner {
  margin-bottom: 44px;
}
@media only screen and (max-width: 780px) {
  .news-block__inner {
    flex-direction: column;
  }
}
.news-block__inner:last-child {
  margin-bottom: 0;
}
.news-block__inner .news_item {
  flex: 1;
  margin-right: 24px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1024px) {
  .news-block__inner .news_item {
    margin-right: 12px;
  }
}
@media only screen and (max-width: 520px) {
  .news-block__inner .news_item {
    flex-direction: column;
    margin-right: 0;
    width: 100%;
  }
}
.news-block__inner .news_item:last-child {
  margin-right: 0;
}
.news-block__inner .news_item .new-item-img-cont {
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}
.news-block__inner .news_item .new-item-img-cont .date {
  background: transparent;
  border: 1px solid #F6F6F6;
  position: absolute;
  bottom: 0px;
  left: 16px;
  color: #ffffff;
  width: 124px;
  height: 30px;
  padding: 6px 10px;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.2px;
  line-height: 17px;
  margin-bottom: 16px;
}
.news-block__inner .news_item .new-item-img-cont .date i,
.news-block__inner .news_item .new-item-img-cont .date svg {
  color: #ffffff;
  margin-right: 8px;
}
.news-block__inner .news_item img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  object-fit: cover;
}
@media only screen and (max-width: 520px) {
  .news-block__inner .news_item img {
    height: 220px;
    object-position: center;
  }
}
.news-block__inner h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.2px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1024px) {
  .news-block__inner h5 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    letter-spacing: 0;
  }
}
.news-block__inner p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.5px;
  color: #676767;
}
.news-block__main-news {
  margin-right: 24px;
}
@media only screen and (max-width: 780px) {
  .news-block__main-news {
    margin-right: 0;
  }
}
.news-block__main-news .new-item-img-cont img {
  height: 344px;
}
.news-block__main-news .date {
  background: #F6F6F6;
  width: 124px;
  height: 30px;
  padding: 6px 10px;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.2px;
  line-height: 17px;
  margin-bottom: 16px;
}
.news-block__main-news .date i,
.news-block__main-news .date svg {
  margin-right: 8px;
}
.news-block__main-news h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.2px;
  margin-bottom: 8px;
}
.news-block__main-news p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.5px;
  color: #676767;
}

.announcement-block {
  padding: 40px 0;
  position: relative;
  background: linear-gradient(90deg, #193952, rgba(61, 164, 108, 0.4)), url("./../images/announcements.jpg");
  color: #ffffff;
  overflow: hidden;
  z-index: 0;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.announcement-block__title {
  margin-bottom: 44px;
}
@media only screen and (max-width: 520px) {
  .announcement-block__title {
    margin-bottom: 24px;
    flex-direction: column;
  }
}
.announcement-block__title h3 {
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1.5px;
  font-size: 24px;
  line-height: 35px;
}
@media only screen and (max-width: 520px) {
  .announcement-block__title h3 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 16px;
  }
}
.announcement-block__slider {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 64px;
}
@media only screen and (max-width: 780px) {
  .announcement-block__slider {
    max-width: 100%;
    width: 100%;
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 520px) {
  .announcement-block__slider {
    margin-bottom: 0;
  }
}
.announcement-block__slider-item {
  background: #193952;
  padding: 24px;
  color: #ffffff;
  width: 100%;
  cursor: pointer;
  transition: transform 0.4s;
}
.announcement-block__slider-item:hover {
  transform: scale(1.02);
}
.announcement-block__slider-item:first-child {
  margin-left: 0;
}
.announcement-block__slider-item .publish-title {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.2px;
  line-height: 16px;
  margin-bottom: 14px;
}
@media only screen and (max-width: 520px) {
  .announcement-block__slider-item .publish-title {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
.announcement-block__slider-item .publish-date {
  width: 216px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 17px;
  align-items: center;
}
.announcement-block__slider-item .publish-date p {
  font-size: 14px;
}
@media only screen and (max-width: 520px) {
  .announcement-block__slider-item .publish-date {
    font-size: 12px;
    margin-bottom: 12px;
  }
  .announcement-block__slider-item .publish-date p {
    font-size: 12px;
  }
}
.announcement-block__slider-item .publish-date span {
  color: #ffffff;
  margin: 0 8px;
}
.announcement-block__slider-item h5 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 22px;
  margin-bottom: 14px;
}
@media only screen and (max-width: 520px) {
  .announcement-block__slider-item h5 {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
.announcement-block__slider-item p {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 520px) {
  .announcement-block__slider-item p {
    font-size: 14px;
  }
}
.announcement-block__slider-item .deadline {
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: 0.2px;
  margin-top: 14px;
}
.announcement-block__slider-item .deadline span {
  margin-left: 8px;
  color: #ffffff;
}
.announcement-block__item {
  color: #ffffff;
}
@media only screen and (max-width: 520px) {
  .announcement-block__item {
    margin-left: 0;
    margin-bottom: 24px;
  }
  .announcement-block__item:last-child {
    margin-bottom: 0;
  }
}
.announcement-block__item:first-child {
  margin-left: 0;
}
.announcement-block__item .publish-title {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 20px;
  margin-bottom: 14px;
  color: #999999;
}
@media only screen and (max-width: 780px) {
  .announcement-block__item .publish-title {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 12px;
  }
}
.announcement-block__item p {
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 780px) {
  .announcement-block__item p {
    font-size: 14px;
  }
}
.announcement-block__item .deadline {
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: 0.2px;
  margin-top: 14px;
  display: block;
}
.announcement-block__item .deadline span {
  margin-left: 8px;
  color: #ffffff;
}
.announcement-block__slider-dots {
  width: 100%;
  margin-bottom: 15px;
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 520px) {
  .announcement-block__slider-dots {
    display: none;
  }
}
.announcement-block__slider-dots .owl-dots {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1281px) {
  .announcement-block__slider-dots .owl-dots {
    margin-bottom: 16px;
  }
}
.announcement-block__slider-dots .owl-dot {
  flex: 1;
  height: 3px;
  margin-left: 32px;
  background: #ffffff;
}
@media only screen and (max-width: 520px) {
  .announcement-block__slider-dots .owl-dot {
    margin-left: 12px;
  }
}
.announcement-block__slider-dots .owl-dot:first-child {
  margin-left: 0;
}
.announcement-block__slider-dots .owl-dot.active, .announcement-block__slider-dots .owl-dot:hover {
  background: #3DA46C;
}
@media only screen and (max-width: 520px) {
  .announcement-block__row {
    display: none;
  }
}
.announcement-block__dots-item {
  margin-right: 24px;
}
.announcement-block__dots-item:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 1281px) {
  .announcement-block__dots-item {
    margin-right: 16px;
  }
}
@media only screen and (max-width: 520px) {
  .announcement-block .btn {
    margin-left: 0;
  }
}

.programme-block {
  background: #ffffff;
  padding: 40px 0;
}
.programme-block h2 {
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.programme-block form {
  width: 100%;
  margin-bottom: 24px;
}
.programme-block__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 24px;
  position: relative;
  min-height: 90px;
}
@media only screen and (max-width: 1024px) {
  .programme-block__row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 780px) {
  .programme-block__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 520px) {
  .programme-block__row {
    grid-template-columns: repeat(1, 1fr);
    column-gap: 0px;
  }
}
.programme-block__card {
  width: 100%;
  background: #ffffff;
  border: 1px solid #ebebeb;
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  margin-bottom: 24px;
}
.programme-block__card .date {
  text-align: left;
  width: 100%;
  padding: 0 16px;
  margin-bottom: 16px;
  justify-content: flex-start;
  color: #000000;
  letter-spacing: 0.5px;
}
.programme-block__card .date i,
.programme-block__card .date svg {
  margin-right: 8px;
}
.programme-block__card:last-child {
  margin-right: 0;
}
.programme-block__card .card-img {
  width: 100%;
  height: 200px;
  margin-bottom: 14px;
  overflow: hidden;
  position: relative;
}
.programme-block__card .card-img .date {
  background: transparent;
  border: 1px solid #F6F6F6;
  position: absolute;
  bottom: 0px;
  left: 16px;
  color: #ffffff;
  width: 124px;
  height: 30px;
  padding: 6px 10px;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.2px;
  line-height: 17px;
  margin-bottom: 16px;
}
.programme-block__card .card-img .date i,
.programme-block__card .card-img .date svg {
  color: #ffffff;
  margin-right: 8px;
}
.programme-block__card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.programme-block__card h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
  padding: 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.programme-block__card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0.5px;
  color: #000000;
  margin-bottom: 16px;
  padding: 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.programme-block__card button {
  margin-left: 16px;
  width: 164px;
  padding: 0 16px;
  margin-bottom: 16px;
}
.programme-block__filter {
  margin-bottom: 80px;
}
.programme-block__carousel .owl-nav {
  display: block !important;
}
.programme-block__carousel .owl-nav button {
  position: absolute;
  top: 50%;
  font-size: 24px;
  outline: 0;
  border: 0;
}
.programme-block__carousel .owl-nav .owl-next {
  right: -32px;
}
.programme-block__carousel .owl-nav .owl-next:hover, .programme-block__carousel .owl-nav .owl-next:focus {
  background: transparent !important;
  color: #3DA46C;
}
@media only screen and (max-width: 1024px) {
  .programme-block__carousel .owl-nav .owl-next {
    right: -24px;
  }
}
@media only screen and (max-width: 520px) {
  .programme-block__carousel .owl-nav .owl-next {
    right: -16px;
  }
}
.programme-block__carousel .owl-nav .owl-prev {
  left: -32px;
}
.programme-block__carousel .owl-nav .owl-prev:hover, .programme-block__carousel .owl-nav .owl-prev:focus {
  background: transparent !important;
  color: #3DA46C;
}
@media only screen and (max-width: 1024px) {
  .programme-block__carousel .owl-nav .owl-prev {
    left: -24px;
  }
}
@media only screen and (max-width: 520px) {
  .programme-block__carousel .owl-nav .owl-prev {
    left: -16px;
  }
}

.services-block {
  background: linear-gradient(90deg, #193952, rgba(61, 164, 108, 0.4)), url("./../images/announcements.jpg");
  padding: 40px 0;
  position: relative;
  z-index: 0;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 780px) {
  .services-block__outer {
    flex-direction: column;
  }
}
.services-block__inner {
  color: #ffffff;
  text-align: left;
  margin-right: 64px;
}
@media only screen and (max-width: 1024px) {
  .services-block__inner {
    margin-right: 44px;
  }
}
@media only screen and (max-width: 780px) {
  .services-block__inner {
    margin-right: 0;
    margin-bottom: 32px;
  }
}
.services-block__inner h4 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 32px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
@media only screen and (max-width: 520px) {
  .services-block__inner h4 {
    font-size: 18px;
  }
}
.services-block__inner p {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 20px;
}
.services-block__item-block {
  flex-grow: 1.5;
}
@media only screen and (max-width: 520px) {
  .services-block__item-block {
    flex-direction: column;
  }
}
.services-block__item {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(3.5px);
  padding: 24px;
  margin-right: 24px;
  height: 484px;
}
@media only screen and (max-width: 1281px) {
  .services-block__item {
    height: 544px;
  }
}
@media only screen and (max-width: 1024px) {
  .services-block__item {
    padding: 16px;
    margin-right: 16px;
  }
}
@media only screen and (max-width: 780px) {
  .services-block__item {
    height: 460px;
  }
}
@media only screen and (max-width: 520px) {
  .services-block__item {
    margin-right: 0;
    margin-bottom: 24px;
    height: 416px;
  }
  .services-block__item:last-child {
    margin-bottom: 0;
  }
}
.services-block__item:last-child {
  margin-right: 0;
}
.services-block__item .img {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .services-block__item .img {
    width: 70px;
    height: 70px;
    margin-bottom: 16px;
  }
}
.services-block__item .img img {
  width: 100%;
  object-fit: contain;
}
.services-block__item .text {
  color: #ffffff;
}
.services-block__item .text h6 {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.2px;
  margin-bottom: 12px;
}
.services-block__item .text p {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 20px;
  margin-bottom: 24px;
}
.services-block__item button {
  width: 164px;
  margin-left: 0;
  position: absolute;
  bottom: 24px;
  left: 24px;
}
@media only screen and (max-width: 1024px) {
  .services-block__item button {
    left: 16px;
    bottom: 16px;
  }
}

.partners-block {
  background: #ffffff;
  padding: 32px 0;
}
.partners-block h2 {
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 1.5px;
  text-align: center;
  text-transform: uppercase;
  color: #2E2E2E;
  margin-bottom: 40px;
}
@media only screen and (max-width: 520px) {
  .partners-block h2 {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
.partners-block__carousel {
  position: relative;
  display: none !important;
  margin: 0 32px;
  width: calc(100% - 64px);
}
@media only screen and (max-width: 780px) {
  .partners-block__carousel {
    display: block !important;
  }
}
.partners-block__carousel .item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 74px;
  margin: 0 16px;
  overflow: hidden;
  transition: all ease-in-out 0.3s;
}
.partners-block__carousel .item img {
  width: 100%;
  filter: grayscale(100%);
  object-fit: contain;
  height: 100%;
}
@media only screen and (max-width: 520px) {
  .partners-block__carousel .item img {
    height: 74px;
  }
}
.partners-block__carousel .item:hover img {
  filter: grayscale(0%);
}
.partners-block__carousel .owl-nav {
  margin-top: 0px;
}
.partners-block__carousel .owl-nav button {
  position: absolute;
  top: 50%;
  -moz-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  width: 44px;
  height: 44px;
  margin: 0;
  border-radius: 50% !important;
}
.partners-block__carousel .owl-nav button span {
  font-size: 32px;
  color: #193952;
  width: 44px;
  height: 44px;
  display: block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.partners-block__carousel .owl-nav button:hover {
  background: none !important;
}
.partners-block__carousel .owl-nav button:hover span {
  color: #F6A925;
}
.partners-block__carousel .owl-nav .owl-prev {
  left: -50px;
}
.partners-block__carousel .owl-nav .owl-next {
  right: -50px;
}
@media only screen and (max-width: 780px) {
  .partners-block__carousel-inner {
    display: none;
  }
}

.map-block {
  padding: 40px 0;
  position: relative;
  background: linear-gradient(90deg, #193952, rgba(61, 164, 108, 0.4)), url("./../images/armenia_land.jpg");
  color: #ffffff;
  overflow: hidden;
  z-index: 0;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 780px) {
  .map-block__inner {
    flex-direction: column;
  }
}
.map-block__content {
  margin-right: 64px;
}
@media only screen and (max-width: 1024px) {
  .map-block__content {
    margin-right: 24px;
  }
}
@media only screen and (max-width: 780px) {
  .map-block__content {
    margin-right: 0;
    text-align: center;
    margin-bottom: 44px;
  }
}
.map-block__content h4 {
  font-size: 48px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1024px) {
  .map-block__content h4 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 520px) {
  .map-block__content h4 {
    font-size: 32px;
  }
}
.map-block__content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.5px;
  margin-bottom: 40px;
}
.map-block__content .btn {
  margin-left: 0;
}
@media only screen and (max-width: 1024px) {
  .map-block__map {
    max-width: 400px;
  }
}
@media only screen and (max-width: 520px) {
  .map-block__map {
    width: 100%;
  }
}
.map-block__map svg {
  width: 500px;
  height: auto;
}
.map-block__map #map path {
  transition: all 0.6s ease-in-out;
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.map-block__map #map path:hover {
  -moz-transform: scale(1.009);
  -o-transform: scale(1.009);
  -ms-transform: scale(1.009);
  -webkit-transform: scale(1.009);
  transform: scale(1.009);
}
.map-block__btns {
  margin-top: 64px;
}
@media only screen and (max-width: 1024px) {
  .map-block__btns {
    margin-top: 32px;
  }
}
@media only screen and (max-width: 780px) {
  .map-block__btns {
    justify-content: center;
  }
}
.map-block__btns a {
  margin-right: 44px;
  text-transform: capitalize;
  color: #ffffff;
  line-height: 20px;
  font-weight: 500;
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all ease-in-out 0.3s;
}
.map-block__btns a:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 1024px) {
  .map-block__btns a {
    margin-right: 24px;
  }
}
@media only screen and (max-width: 520px) {
  .map-block__btns a {
    margin-right: 0px;
    flex: 1;
    font-size: 12px;
  }
}
.map-block__btns a:hover {
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.map-block__btns a .map-item {
  width: 68px;
  height: 68px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  margin-bottom: 16px;
  background: #3DA46C;
}
@media only screen and (max-width: 1024px) {
  .map-block__btns a .map-item {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
  }
}
.map-block__btns a .map-item img {
  width: 50px;
}
@media only screen and (max-width: 1024px) {
  .map-block__btns a .map-item img {
    width: 46px;
  }
}
@media only screen and (max-width: 1024px) {
  .map-block__btns a p {
    text-align: center;
  }
}
@media only screen and (max-width: 520px) {
  .map-block__btns a p {
    height: 50px;
    font-size: 16px;
  }
}

.solar-resources-block {
  padding-top: 40px;
  background: #ffffff;
}
.solar-resources-block__inner {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(90deg, #193952, rgba(255, 133, 12, 0.4)), url(./../images/solar_panels.jpg);
  padding: 64px 32px;
  color: #ffffff;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 520px) {
  .solar-resources-block__inner {
    padding: 32px;
  }
}
.solar-resources-block__text {
  width: 40%;
  padding-left: 64px;
}
@media only screen and (max-width: 780px) {
  .solar-resources-block__text {
    width: 100%;
  }
}
@media only screen and (max-width: 520px) {
  .solar-resources-block__text {
    width: 100%;
    padding-left: 0;
  }
}
.solar-resources-block__text img {
  width: 80px;
  margin-bottom: 16px;
  margin-top: 85px;
}
@media only screen and (max-width: 1281px) {
  .solar-resources-block__text img {
    width: 60px;
    margin-top: 70px;
  }
}
@media only screen and (max-width: 1281px) {
  .solar-resources-block__text .sun-arrow {
    margin-left: 3px;
  }
}
.solar-resources-block__text h1 {
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1.5px;
  font-size: 24px;
  line-height: 35px;
  margin-bottom: 16px;
}
.solar-resources-block__text p {
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.solar-resources-block__text .btn {
  max-width: 144px;
  margin-left: 0;
  margin-top: 16px;
}

.invest-block {
  background: #ffffff;
  padding: 40px 0 40px 0;
}
.invest-block__inner .invest-img-box .invest-img {
  width: 25%;
  margin-right: 24px;
  overflow: hidden;
  overflow: hidden;
}
.invest-block__inner .invest-img-box .invest-img:last-child {
  margin-right: 0;
}
.invest-block__inner .invest-img-box .invest-img .invest-img-cont {
  margin-bottom: 12px;
  position: relative;
}
.invest-block__inner .invest-img-box .invest-img .invest-img-cont .overlay {
  background: linear-gradient(90deg, #193952, rgba(61, 164, 108, 0.4));
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}
.invest-block__inner .invest-img-box .invest-img .invest-img-cont h6 {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 24px;
  color: #ffffff;
  z-index: 2;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 30px;
  text-transform: uppercase;
}
.invest-block__inner .invest-img-box .invest-img img {
  width: 100%;
  height: 344px;
  object-fit: cover;
  overflow: hidden;
}
.invest-block__inner .invest-img-box .invest-img p {
  margin-top: 12px;
  font-size: 14px;
  letter-spacing: 0.5px;
  font-weight: 300;
  line-height: 22px;
}
.invest-block__inner .invest-img-box .invest-img .border {
  width: calc(100% - 0px);
  height: 8px;
  margin-right: 0px;
}
.invest-block__inner .invest-img-box .invest-img .border:last-child {
  margin-right: 0;
}
.invest-block__inner .invest-img-box .invest-img .border.green {
  background: #3DA46C;
}
.invest-block__inner .invest-img-box .invest-img .border.navy {
  background: #193952;
}
.invest-block__inner .invest-img-box .invest-img .border.orange {
  background: #F6A925;
}
.invest-block__inner .invest-img-box .invest-img .border.blue {
  background: #4CC2E0;
}
.invest-block__inner .invest-content .invest-text {
  padding: 2.5rem 4rem;
  margin-bottom: 14px;
}
.invest-block__inner .invest-content .invest-text h3 {
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1.5px;
  font-size: 24px;
  line-height: 35px;
}
.invest-block__inner .invest-content .invest-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.invest-block__inner .invest-content .invest-text .btn {
  width: 136px;
  margin-left: 0;
}

.indicators-block {
  padding-bottom: 40px;
}
.indicators-block__inner h2 {
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.indicators-block__inner h4 {
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  text-align: center;
  min-height: 3rem;
}
@media only screen and (max-width: 1024px) {
  .indicators-block__inner h4 {
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
  }
}
@media only screen and (max-width: 520px) {
  .indicators-block__inner h4 {
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
  }
}
.indicators-block__inner p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.5px;
  margin: 0 auto;
  margin-bottom: 40px;
  text-align: center;
  max-width: 800px;
}
.indicators-block__inner .charts-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 780px) {
  .indicators-block__inner .charts-container {
    flex-direction: column;
  }
}
.indicators-block__inner .charts-container .chart-item {
  flex: 1;
  width: 100%;
  margin-right: 0px;
  overflow: hidden;
}
.indicators-block__inner .charts-container .chart-item:last-child {
  margin-right: 0;
}
.indicators-block__inner .charts-container div {
  width: 100%;
}
@media only screen and (max-width: 780px) {
  .indicators-block__inner .charts-container div {
    width: 100%;
    margin-right: 0;
    padding: 0 24px;
    margin-bottom: 24px;
  }
  .indicators-block__inner .charts-container div:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 520px) {
  .indicators-block__inner .charts-container div {
    width: 100% !important;
    padding: 0;
  }
}
.indicators-block__inner .charts-container div :last-child {
  margin-right: 0;
}
.indicators-block__inner .charts-container h3 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.indicators-block__inner .chart .apexcharts-canvas {
  overflow: hidden;
}
.indicators-block__inner .chart .apexcharts-canvas svg {
  width: 100%;
  height: 100%;
}
.indicators-block__inner .chart .apexcharts-tooltip {
  width: 100px;
}

.elibrary-block {
  position: relative;
  background: linear-gradient(90deg, #193952, rgba(61, 164, 108, 0.4)), url("./../images/elib.jpg");
  overflow-x: hidden;
  z-index: 0;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.elibrary-block__inner {
  width: 100%;
  height: 380px;
}
@media only screen and (max-width: 520px) {
  .elibrary-block__inner {
    height: 464px;
  }
}
.elibrary-block__inner h1,
.elibrary-block__inner h2 {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1.5px;
  max-width: 800px;
  margin: 0;
  text-transform: uppercase;
  line-height: 44px;
  padding-top: 32px;
}
@media only screen and (max-width: 780px) {
  .elibrary-block__inner h1,
  .elibrary-block__inner h2 {
    font-size: 32px;
    line-height: 40px;
    padding-top: 32px;
  }
}
@media only screen and (max-width: 520px) {
  .elibrary-block__inner h1,
  .elibrary-block__inner h2 {
    font-size: 24px;
    line-height: 30px;
  }
}
.elibrary-block__inner .elib-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #DEDEDE;
  backdrop-filter: blur(11px);
  color: #ffffff;
  padding: 0 89px;
}
@media only screen and (max-width: 520px) {
  .elibrary-block__inner .elib-layer {
    padding: 0;
  }
}
.elibrary-block__inner .elib-layer .elib-ico {
  margin-bottom: 8px;
}
.elibrary-block__inner .elib-layer h4 {
  font-size: 28px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
@media only screen and (max-width: 520px) {
  .elibrary-block__inner .elib-layer h4 {
    font-size: 24px;
    line-height: 28px;
  }
}
.elibrary-block__inner .elib-layer p {
  max-width: 580px;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
}
.elibrary-block__inner .elib-layer .btn {
  margin-left: 0;
  width: 136px;
}

.FAQS-block {
  background: #ffffff;
  padding: 40px 0;
}
.FAQS-block__text {
  margin-right: 40px;
}
@media only screen and (max-width: 520px) {
  .FAQS-block__text {
    margin-right: 0;
    margin-bottom: 32px;
  }
}
.FAQS-block__text img {
  width: 83px;
  margin-bottom: 24px;
}
.FAQS-block__text h4 {
  font-size: 24px;
  font-weight: 400;
  line-height: 39px;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.FAQS-block__text p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 300;
  letter-spacing: 0.5px;
}
.FAQS-block__wrap {
  max-width: 900px;
  margin: 0 auto;
  background-color: #193952;
  padding: 24px;
  color: #ffffff;
}
@media only screen and (max-width: 520px) {
  .FAQS-block__wrap {
    max-width: 100%;
    width: 100%;
    flex-direction: column;
  }
}
.FAQS-block__item {
  padding: 16px;
  box-shadow: inset 0px -1px 0px rgba(255, 255, 255, 0.15);
}
.FAQS-block__item:last-child {
  box-shadow: none;
}
.FAQS-block__item .item-box {
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.2px;
  text-transform: capitalize;
  cursor: pointer;
}
.FAQS-block__item .item-box:before {
  content: "+";
  font-family: "FontAwesome";
  font-size: 16px;
  color: #F6A925;
  margin-right: 16px;
}
.FAQS-block__item .item-box.active:before {
  content: "\f068";
}
.FAQS-block__item .item-box-collapse {
  margin-top: 14px;
  margin-left: 24px;
  border-left: 1px solid #ffffff;
  display: none;
  overflow: hidden;
  transition: 0.4s ease-in-out;
}
.FAQS-block__item .item-box-collapse.show {
  display: flex;
}
.FAQS-block__item .item-box-collapse p {
  text-align: left;
  padding-left: 12px;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.2px;
}

.subscribe-block {
  padding: 30px 0;
  background: #193952;
  color: #ffffff;
}
@media only screen and (max-width: 520px) {
  .subscribe-block__inner {
    flex-direction: column;
  }
}
.subscribe-block__inner .subscribe {
  margin-right: 64px;
}
@media only screen and (max-width: 520px) {
  .subscribe-block__inner .subscribe {
    margin-right: 0;
    margin-bottom: 32px;
  }
}
.subscribe-block__inner .subscribe h2 {
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.subscribe-block__inner .subscribe h2 i,
.subscribe-block__inner .subscribe h2 svg {
  color: #F6A925;
  margin-right: 8px;
}
.subscribe-block__inner .subscribe .btn {
  margin-left: 0px;
  max-width: 164px;
}
.subscribe-block__inner .text p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.getin-touch-block {
  width: 100%;
  position: relative;
}
.getin-touch-block__inner {
  background: #ffffff;
  width: 100%;
  height: 580px;
  overflow: hidden;
}
@media only screen and (max-width: 520px) {
  .getin-touch-block__inner {
    flex-direction: column;
    height: auto;
  }
}
.getin-touch-block__inner .getin-form {
  background: #ffffff;
  padding: 32px;
  width: 30%;
}
@media only screen and (max-width: 1281px) {
  .getin-touch-block__inner .getin-form {
    width: 40%;
  }
}
@media only screen and (max-width: 780px) {
  .getin-touch-block__inner .getin-form {
    padding: 16px;
    width: 50%;
  }
}
@media only screen and (max-width: 520px) {
  .getin-touch-block__inner .getin-form {
    width: 100%;
  }
}
.getin-touch-block__inner .getin-form h4 {
  font-size: 24px;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.getin-touch-block__inner .getin-form p {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 24px;
  margin-bottom: 24px;
}
.getin-touch-block__inner .getin-form input,
.getin-touch-block__inner .getin-form textarea {
  background: #F6F6F6;
  padding: 15px 16px;
  border: 0;
  outline: 0;
  margin-bottom: 12px;
}
.getin-touch-block__inner .getin-form input.error,
.getin-touch-block__inner .getin-form textarea.error {
  border: 1px solid #c62828;
}
.getin-touch-block__inner .getin-form .btn {
  margin-left: 0;
  margin-top: 16px;
}
.getin-touch-block__inner .getin-form label.error {
  display: none !important;
}
.getin-touch-block__inner .getin-map {
  width: 70%;
}
@media only screen and (max-width: 1281px) {
  .getin-touch-block__inner .getin-map {
    width: 60%;
  }
}
@media only screen and (max-width: 780px) {
  .getin-touch-block__inner .getin-map {
    width: 50%;
  }
}
@media only screen and (max-width: 520px) {
  .getin-touch-block__inner .getin-map {
    width: 100%;
    height: 320px;
  }
}

.about-block {
  background: #ffffff;
  padding: 52px 0 80px 0;
}
.about-block__todo {
  padding: 80px 0;
}
.about-block__whatdo {
  padding-right: 80px;
}
.about-block__whatdo h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 54px;
  margin-bottom: 24px;
}
.about-block__whatdo p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.about-block__counter {
  padding: 74px 67px;
  background: #F6F6F6;
}
.about-block__counter .icon-row {
  width: 100%;
  margin-bottom: 32px;
}
.about-block__counter .icon-row:last-child {
  margin-bottom: 0;
}
.about-block__counter .ico {
  margin-right: 60px;
}
.about-block__counter .ico:last-child {
  margin-right: 0;
}
.about-block__counter .ico img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-right: 12px;
}
.about-block__counter .ico .number {
  font-size: 32px;
  font-weight: 700;
  line-height: 39px;
  letter-spacing: 1.2px;
  margin-bottom: 6px;
}
.about-block__counter .ico p {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 1.2px;
}
.about-block .vision-mission__text {
  padding-right: 112px;
}
.about-block .vision-mission__text img {
  width: 62px;
  margin-right: 12px;
}
.about-block .vision-mission__text h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 41px;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.about-block .vision-mission__text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.2px;
}
.about-block .vision-mission__panel {
  background: #4CC2E0;
  padding: 112px 44px;
  color: #ffffff;
  text-align: left;
}
.about-block .vision-mission__panel h4 {
  width: 100%;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 16px;
}
.about-block .vision-mission__panel .check-info {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.about-block .vision-mission__panel .check-info:last-child {
  margin-bottom: 0;
}
.about-block .vision-mission__panel .check-info img {
  margin-right: 16px;
  width: 18px;
  height: 18px;
}
.about-block .vision-mission__panel .panel-box {
  background: #ffffff;
  padding: 12px;
  margin-top: 24px;
  color: #2E2E2E;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.5px;
}

.e-library {
  background: #ffffff;
  padding: 80px 0;
}
.e-library h2 {
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.e-library__inner {
  max-width: 1300px;
  margin: 0 auto;
  box-shadow: 0px 0px 1.5px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}
@media only screen and (max-width: 520px) {
  .e-library__inner {
    max-width: 100%;
    width: 100%;
  }
}
.e-library__search-form {
  padding: 16px;
}
.e-library__search-form form {
  display: flex;
  flex-direction: row;
  width: 100%;
}
@media only screen and (max-width: 780px) {
  .e-library__search-form form {
    flex-direction: column;
  }
}
.e-library__search-form .search-lib {
  position: relative;
  margin-right: 16px;
}
@media only screen and (max-width: 780px) {
  .e-library__search-form .search-lib {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.e-library__search-form .search-lib input {
  width: 100%;
  border: 1px solid #DEDEDE;
  padding: 12px 16px 12px 32px;
  outline: 0;
  color: #959595;
  letter-spacing: 0.5px;
  font-size: 14px;
  font-weight: 400;
}
.e-library__search-form .search-lib img {
  position: absolute;
  left: 12px;
  top: 12px;
}
@media only screen and (max-width: 780px) {
  .e-library__search-form .search {
    margin-left: 0;
  }
}
@media only screen and (max-width: 780px) {
  .e-library__search-form .custom-select {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.e-library .download-btn {
  width: 156px;
  border: 1px solid #DEDEDE;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}
.e-library .download-btn i,
.e-library .download-btn svg,
.e-library .download-btn img {
  margin-right: 8px;
}
.e-library__data-header {
  width: 100%;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 1px;
}
.e-library__data-header h6 {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #999999;
  padding: 16px;
}
.e-library__row {
  padding: 12px 16px;
  width: 100%;
  background: #fbfbfb;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 1px;
}
@media only screen and (max-width: 520px) {
  .e-library__row {
    flex-direction: column;
  }
}
.e-library__row:last-child {
  box-shadow: none;
  margin-bottom: 0;
}
.e-library__row .icon-pdf {
  background: #FCE7E7;
  width: 50px;
  height: 50px;
  padding: 8px;
  margin-right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 780px) {
  .e-library__row .icon-pdf {
    width: 44px;
    height: 44px;
    padding: 6px;
    margin-right: 12px;
  }
}
.e-library__row .icon-pdf img {
  width: 100%;
  object-fit: contain;
}
.e-library__row .file-text {
  width: calc(100% - 64px);
  justify-content: center;
}
@media only screen and (max-width: 780px) {
  .e-library__row .file-text {
    width: calc(100% - 56px);
  }
}
.e-library__row .file-text h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.e-library__row .file-text p {
  font-size: 14px;
  color: #727272;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 1.5px;
}
@media only screen and (max-width: 520px) {
  .e-library__row .action-row {
    justify-content: flex-end;
    margin-top: 16px;
  }
}
.e-library__row .action-row .preview-btn,
.e-library__row .action-row .download-btn {
  width: 126px;
  height: 44px;
  border: 1px solid #DEDEDE;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  padding: 12px 14px;
  text-align: center;
  margin-right: 16px;
  transition: all ease-in-out 0.3s;
}
@media only screen and (max-width: 520px) {
  .e-library__row .action-row .preview-btn,
  .e-library__row .action-row .download-btn {
    width: 100%;
  }
}
.e-library__row .action-row .preview-btn:last-child,
.e-library__row .action-row .download-btn:last-child {
  margin-right: 0;
}
.e-library__row .action-row .preview-btn i,
.e-library__row .action-row .preview-btn svg,
.e-library__row .action-row .preview-btn img,
.e-library__row .action-row .download-btn i,
.e-library__row .action-row .download-btn svg,
.e-library__row .action-row .download-btn img {
  margin-right: 8px;
}
.e-library__row .action-row .preview-btn:hover,
.e-library__row .action-row .download-btn:hover {
  border-color: #F6A925;
}
.e-library__pagination {
  margin-top: 64px;
}
.e-library__pagination .pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  text-decoration: none;
  text-align: center;
}
.e-library__pagination .pagination a.active {
  background-color: #4CC2E0;
  color: #ffffff;
}
.e-library__pagination .pagination a:hover:not(.active) {
  background-color: #ddd;
}

.content-center {
  text-align: center;
  margin-top: 64px;
}
.content-center h2 {
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.content-center p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.gallery-block {
  background: #ffffff;
  padding: 80px 0;
}
.gallery-block h2 {
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.gallery-block__filter {
  margin-bottom: 40px;
}
.gallery-block__item-row {
  margin-bottom: 24px;
}
.gallery-block__item-row:last-child {
  margin-bottom: 0;
}
.gallery-block__item-row .item-box {
  flex: 1;
  margin-right: 24px;
  padding: 14px;
  box-shadow: 0px 0px 1.45px rgba(0, 0, 0, 0.32);
  transition: all ease-in-out 0.3s;
}
.gallery-block__item-row .item-box:hover {
  box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.16);
}
.gallery-block__item-row .item-box:last-child {
  margin-right: 0;
}
.gallery-block__item-row .item-box img {
  height: 277px;
  margin-bottom: 24px;
}
.gallery-block__item-row .item-box h6 {
  padding: 0 8px;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.gallery-block__item-row .item-box p {
  padding: 0 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 1.5px;
}

.interactive-map-block {
  background: #ffffff;
  padding: 24px 0;
}
.interactive-map-block h2 {
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.interactive-map-block p {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.5px;
}
.interactive-map-block .switch-button {
  width: 25%;
  overflow: hidden;
  margin-right: 84px;
}
@media only screen and (max-width: 1024px) {
  .interactive-map-block .switch-button {
    width: 30%;
    margin-right: 24px;
  }
}
@media only screen and (max-width: 780px) {
  .interactive-map-block .switch-button {
    width: 50%;
    margin-right: 0;
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 520px) {
  .interactive-map-block .switch-button {
    width: 100%;
  }
}
.interactive-map-block form {
  width: 75%;
}
@media only screen and (max-width: 1024px) {
  .interactive-map-block form {
    width: 70%;
  }
}
@media only screen and (max-width: 780px) {
  .interactive-map-block form {
    width: 100%;
  }
}
.interactive-map-block__filter {
  margin: 60px auto;
}
@media only screen and (max-width: 1024px) {
  .interactive-map-block__filter {
    margin: 44px auto;
  }
}
@media only screen and (max-width: 780px) {
  .interactive-map-block__filter {
    margin: 32px auto;
    flex-direction: column;
    align-items: flex-start;
  }
}
.interactive-map-block__filter .switch-button input[type=radio].toggle + label {
  min-width: 132px;
}
.interactive-map-block__filter .switch-button input[type=radio].toggle + label i,
.interactive-map-block__filter .switch-button input[type=radio].toggle + label svg {
  margin-right: 8px;
}
@media only screen and (max-width: 520px) {
  .interactive-map-block__form {
    flex-direction: column;
  }
}
.interactive-map-block__form .search-form {
  width: 280px;
  position: relative;
  margin-right: 16px;
}
@media only screen and (max-width: 520px) {
  .interactive-map-block__form .search-form {
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.interactive-map-block__form .search-form input {
  width: 100%;
  outline: 0;
  border: 1px solid #DEDEDE;
  padding: 12px 16px 12px 32px;
  color: #959595;
  font-size: 14px;
}
.interactive-map-block__form .search-form i,
.interactive-map-block__form .search-form svg {
  position: absolute;
  top: 12px;
  left: 12px;
}
.interactive-map-block__form .input-form {
  position: relative;
  margin-right: 16px;
  width: 144px;
}
@media only screen and (max-width: 780px) {
  .interactive-map-block__form .input-form {
    width: 120px;
  }
}
@media only screen and (max-width: 520px) {
  .interactive-map-block__form .input-form {
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.interactive-map-block__form .input-form input {
  width: 100%;
  outline: 0;
  border: 1px solid #DEDEDE;
  padding: 12px 16px 12px 32px;
  color: #959595;
  font-size: 14px;
}
.interactive-map-block__form .input-form i,
.interactive-map-block__form .input-form svg {
  position: absolute;
  top: 12px;
  left: 12px;
}
.interactive-map-block__form .btn {
  margin-left: 0;
}
.interactive-map-block__map {
  height: 1024px;
  overflow: hidden;
}
@media only screen and (max-width: 780px) {
  .interactive-map-block__map {
    flex-direction: column;
    height: 100%;
  }
}
.interactive-map-block__date {
  width: 30%;
  height: 100%;
  background: #ffffff;
  padding: 24px;
  border: 1px solid #EFEFEF;
}
@media only screen and (max-width: 780px) {
  .interactive-map-block__date {
    width: 100%;
    order: 2;
  }
}
@media only screen and (max-width: 520px) {
  .interactive-map-block__date {
    padding: 0;
  }
}
.interactive-map-block__date .date-panel {
  background: #F6F6F6;
  padding: 16px;
  text-align: left;
  margin-bottom: 24px;
}
@media only screen and (max-width: 520px) {
  .interactive-map-block__date .date-panel {
    margin-bottom: 0;
  }
}
.interactive-map-block__date .date-panel h6 {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.interactive-map-block__date .date-panel p {
  text-align: left;
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.interactive-map-block__date .date-panel p:last-child {
  margin-bottom: 0;
}
.interactive-map-block__date .info-panel {
  padding: 16px;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.6);
  height: 100% h5;
  height-font-size: 16px;
  height-font-weight: 600;
  height-line-height: 20px;
  height-letter-spacing: 0.5px;
}
.interactive-map-block__date .info-panel .info-item-box,
.interactive-map-block__date .info-panel .legend-item-box {
  margin-top: 24px;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.32);
}
.interactive-map-block__date .info-panel .legend-box {
  margin-top: 4px;
  padding: 0 24px;
}
.interactive-map-block__date .info-panel .legend-box:last-child {
  margin-bottom: 4px;
}
.interactive-map-block__date .info-panel .legend-box .box {
  width: 32px;
  height: 32px;
  background: green;
  margin-right: 8px;
}
.interactive-map-block__date .info-panel .info-item {
  padding: 16px;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.08);
  text-align: left;
}
.interactive-map-block__date .info-panel .info-item:last-child {
  box-shadow: none;
}
.interactive-map-block__date .info-panel .info-item h6 {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #4F4F4F;
  margin-bottom: 12px;
}
.interactive-map-block__date .info-panel .info-item p {
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
}
.interactive-map-block__date .info-panel .info-item p span {
  font-weight: 600;
}
.interactive-map-block__embed {
  width: 70%;
  height: 100%;
  z-index: 3;
}
@media only screen and (max-width: 780px) {
  .interactive-map-block__embed {
    width: 100%;
    height: 420px;
    order: 1;
  }
}
@media only screen and (max-width: 520px) {
  .interactive-map-block__embed {
    height: 464px;
  }
}

.full-screen-block {
  position: relative;
  background: linear-gradient(90deg, #193952, rgba(255, 133, 12, 0.4)), url("./../images/elib.jpg");
  overflow-x: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5rem 0;
  color: #ffffff;
}
.full-screen-block h1,
.full-screen-block h2 {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1.5px;
  max-width: 800px;
  margin: 0;
  text-transform: uppercase;
  line-height: 44px;
  padding-top: 32px;
}
@media only screen and (max-width: 780px) {
  .full-screen-block h1,
  .full-screen-block h2 {
    font-size: 32px;
    line-height: 40px;
    padding-top: 32px;
  }
}
@media only screen and (max-width: 520px) {
  .full-screen-block h1,
  .full-screen-block h2 {
    font-size: 24px;
    line-height: 30px;
  }
}
.full-screen-block p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 16px;
}

.text-center-block,
.inner-wrap {
  padding: 24px 0;
}
.text-center-block h1,
.inner-wrap h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 14px;
}
@media only screen and (max-width: 780px) {
  .text-center-block h1,
  .inner-wrap h1 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 520px) {
  .text-center-block h1,
  .inner-wrap h1 {
    font-size: 28px;
  }
}
.text-center-block h2,
.inner-wrap h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 14px;
}
@media only screen and (max-width: 780px) {
  .text-center-block h2,
  .inner-wrap h2 {
    font-size: 24px;
  }
}
.text-center-block p,
.text-center-block div,
.text-center-block span,
.inner-wrap p,
.inner-wrap div,
.inner-wrap span {
  font-size: 17px;
  line-height: 26px;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #000000;
}
@media only screen and (max-width: 780px) {
  .text-center-block p,
  .text-center-block div,
  .text-center-block span,
  .inner-wrap p,
  .inner-wrap div,
  .inner-wrap span {
    word-break: break-word;
  }
}
.text-center-block p:last-child,
.text-center-block div:last-child,
.text-center-block span:last-child,
.inner-wrap p:last-child,
.inner-wrap div:last-child,
.inner-wrap span:last-child {
  margin-bottom: 0;
}
.text-center-block ul li,
.inner-wrap ul li {
  line-height: 24px;
  margin-bottom: 8px;
}
.text-center-block .download-file a,
.inner-wrap .download-file a {
  display: flex;
  align-items: center;
}
.text-center-block .download-file img,
.inner-wrap .download-file img {
  background: #FCE7E7;
  width: 50px;
  height: 50px;
  padding: 8px;
  margin-right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.text-center-block .download-file i,
.text-center-block .download-file svg,
.inner-wrap .download-file i,
.inner-wrap .download-file svg {
  background: #FCE7E7;
  color: #E5252A;
  width: 32px;
  height: 32px;
  padding: 8px;
  margin-right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-center-block a {
  color: #F6A925;
  margin-right: 8px;
}
.text-center-block a strong {
  color: #F6A925 !important;
}
.text-center-block ul {
  list-style: disc;
  padding-left: 44px;
  margin-bottom: 24px;
}
.text-center-block ul li {
  padding: 4px 0px;
  margin: 0;
}
.text-center-block ul li h3 {
  margin: 0 !important;
}
.text-center-block ol {
  list-style: decimal;
  padding-left: 44px;
  margin-bottom: 24px;
}
.text-center-block ol li {
  padding: 4px 0px;
  margin: 0;
}
.text-center-block ol li h3 {
  margin: 0 !important;
}
.text-center-block .boldspan {
  font-weight: bold !important;
}

.left-img-block {
  padding: 24px 0;
}
@media only screen and (max-width: 780px) {
  .left-img-block__inner {
    flex-direction: column;
    margin-bottom: 16px;
  }
}
.left-img-block .img {
  padding-right: 80px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .left-img-block .img {
    padding-right: 32px;
  }
}
@media only screen and (max-width: 780px) {
  .left-img-block .img {
    padding-right: 0px;
    margin-bottom: 16px;
  }
}
.left-img-block .img .date {
  background: transparent;
  border: 1px solid #F6F6F6;
  position: absolute;
  bottom: 0px;
  left: 16px;
  color: #ffffff;
  width: 124px;
  height: 30px;
  padding: 6px 10px;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.2px;
  line-height: 17px;
  margin-bottom: 16px;
}
.left-img-block .img .date i,
.left-img-block .img .date svg {
  color: #ffffff;
  margin-right: 8px;
}
.left-img-block .img img {
  width: 100%;
  object-fit: contain;
}
.left-img-block .text h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 14px;
  text-align: left;
}
@media only screen and (max-width: 1281px) {
  .left-img-block .text h2 {
    font-size: 24px;
    line-height: 30px;
  }
}
.left-img-block .text p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #000000;
  margin-bottom: 12px;
}
.left-img-block .text p:last-child {
  margin-bottom: 0;
}

.right-img-block {
  padding: 24px 0;
}
.right-img-block .img img {
  width: 100%;
  object-fit: contain;
}
.right-img-block .text {
  padding-right: 80px;
}
.right-img-block .text h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 14px;
}
.right-img-block .text p {
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #000000;
  margin-bottom: 12px;
}
.right-img-block .text p:last-child {
  margin-bottom: 0;
}

.gallery-img-block {
  padding: 24px 0;
}
.gallery-img-block__inner h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 14px;
  text-align: center;
}
.gallery-img-block__inner p {
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
  color: #000000;
  margin-bottom: 12px;
}
.gallery-img-block__row {
  margin-top: 24px;
}
.gallery-img-block__row .img-item {
  margin-right: 24px;
}
.gallery-img-block__row .img-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
}
.gallery-img-block__row .img-item:last-child {
  margin-right: 0;
}

.map-resources-block {
  padding: 24px 0;
}
.map-resources-block__inner h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 24px;
  text-align: center;
}
@media only screen and (max-width: 780px) {
  .map-resources-block__inner h2 {
    font-size: 24px;
  }
}
.map-resources-block__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
}
.map-resources-block__row:first-of-type {
  margin-top: 24px;
}
@media only screen and (max-width: 1024px) {
  .map-resources-block__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 520px) {
  .map-resources-block__row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.map-resources-block__panel h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 12px;
  text-align: left;
}
.map-resources-block__panel p {
  font-size: 17px;
  line-height: 26px;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #000000;
  margin-bottom: 12px;
}
.map-resources-block__map-item {
  background: #ffffff;
  padding: 16px;
  box-shadow: 0px 0px 1.5px rgba(0, 0, 0, 0.32);
  width: 100%;
  margin-bottom: 24px;
}
.map-resources-block__map-item .panel-header {
  width: 100%;
}
.map-resources-block__map-item .panel-header .text {
  text-transform: uppercase;
  text-align: left;
}
.map-resources-block__map-item .panel-header .text h6 {
  color: #999999;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.map-resources-block__map-item .panel-header .text h4 {
  color: #193952;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin: 0;
}
.map-resources-block__map-item .panel-header .text h5 {
  color: #2E2E2E;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
}
.map-resources-block__map-item .panel-header .img {
  width: 110px;
}
.map-resources-block__map-item .panel-header .img img {
  width: 100%;
}
.map-resources-block__map-item .panel-body {
  width: 100%;
  margin-top: 8px;
}
.map-resources-block__map-item .panel-body img {
  width: 100%;
  height: 320px;
  object-fit: fill;
  margin-bottom: 8px;
}
.map-resources-block__map-item .panel-body h5 {
  color: #2E2E2E;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.map-resources-block__map-item .panel-body p {
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #000000;
  margin-bottom: 8px;
}
.map-resources-block__map-item .panel-body .btn {
  margin-left: 0;
  width: 132px;
  margin-top: 8px;
}

.chart-resources-block {
  position: relative;
  overflow: hidden;
  display: flex;
}
.chart-resources-block .chart-menu {
  display: none;
  margin-bottom: 24px;
  font-size: 24px;
}
@media only screen and (max-width: 780px) {
  .chart-resources-block .chart-menu {
    display: block;
  }
}
.chart-resources-block__nav {
  width: 284px;
  background: #4CC2E0;
  color: #ffffff;
  padding: 44px 24px;
  position: sticky;
  position: -webkit-sticky;
  top: 0; /* required */
}
@media only screen and (max-width: 780px) {
  .chart-resources-block__nav {
    width: 64px;
  }
  .chart-resources-block__nav.show {
    width: 284px;
    height: 100%;
    position: absolute;
    z-index: 3;
  }
}
@media only screen and (max-width: 780px) {
  .chart-resources-block__nav ul {
    display: none;
  }
  .chart-resources-block__nav ul.show {
    display: block;
  }
}
.chart-resources-block__nav ul li {
  padding: 8px 0;
}
.chart-resources-block__inner {
  width: 100%;
  padding: 24px 64px;
  display: block;
  float: right;
}
@media only screen and (max-width: 780px) {
  .chart-resources-block__inner {
    padding: 24px 0;
  }
  .chart-resources-block__inner.show {
    width: 100%;
  }
}
.chart-resources-block__inner h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 780px) {
  .chart-resources-block__inner h2 {
    font-size: 24px;
  }
}
.chart-resources-block__inner p {
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #000000;
  margin-bottom: 12px;
}
.chart-resources-block__inner #chartdiv {
  width: 100%;
  height: 500px;
  max-width: 100%;
}
.chart-resources-block__inner #chartdivComp {
  width: 100%;
  height: 500px;
  max-width: 100%;
}
.chart-resources-block__inner .chart-row {
  margin: 44px 0;
}
@media only screen and (max-width: 780px) {
  .chart-resources-block__inner .chart-row {
    flex-direction: column;
  }
}
.chart-resources-block__inner .chart-row .chart-row-inner {
  margin-right: 24px;
  padding: 16px;
}
.chart-resources-block__inner .chart-row .chart-row-inner:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 780px) {
  .chart-resources-block__inner .chart-row .chart-row-inner {
    margin-right: 0;
  }
}

.data-resources-block {
  padding: 24px 0;
}
.data-resources-block__inner h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
@media only screen and (max-width: 780px) {
  .data-resources-block__inner h2 {
    font-size: 24px;
  }
}
.data-resources-block__inner p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #000000;
  margin-bottom: 12px;
}
.data-resources-block__inner p a {
  color: #193952;
}
.data-resources-block__inner p a:hover {
  color: #142E42;
}
.data-resources-block__gis-data-col {
  background: #ffffff;
  padding: 24px;
  box-shadow: 0px 0px 1.5px rgba(0, 0, 0, 0.32);
}
.data-resources-block__gis-item {
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 780px) {
  .data-resources-block__gis-item {
    flex-direction: column;
  }
}
.data-resources-block__gis-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.data-resources-block__gis-item a {
  display: block;
  color: #193952;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.data-resources-block__gis-item a:hover {
  color: #142E42;
}
.data-resources-block__gis-item a i,
.data-resources-block__gis-item a svg {
  margin-right: 8px;
}
.data-resources-block__gis-item h5 {
  color: #2E2E2E;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 780px) {
  .data-resources-block__gis-item h5 {
    margin-bottom: 16px;
  }
}
.data-resources-block__gis-item p {
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #999999;
  margin-bottom: 12px;
  margin-left: 24px;
}

.members-block {
  padding: 24px 0;
}
.members-block h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 24px;
  text-align: center;
}
@media only screen and (max-width: 780px) {
  .members-block h2 {
    font-size: 24px;
  }
}
.members-block__row {
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 24px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .members-block__row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 780px) {
  .members-block__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 520px) {
  .members-block__row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.members-block__row:last-child {
  margin-bottom: 0;
}
.members-block__item {
  width: 100%;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1024px) {
  .members-block__item {
    margin-right: 16px;
    display: block;
    text-align: center;
  }
}
@media only screen and (max-width: 520px) {
  .members-block__item {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.members-block__item:last-child {
  margin-right: 0;
}
.members-block__item h6 {
  margin: 8px 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: #000000;
}
@media only screen and (max-width: 1024px) {
  .members-block__item h6 {
    font-size: 16px;
  }
}
.members-block__item p {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .members-block__item p {
    font-size: 12px;
  }
}
.members-block__item .m-item {
  width: 100%;
  height: 264px;
  overflow: hidden;
  border-bottom: 8px solid #3DA46C;
  transition: all ease-in-out 0.3s;
}
.members-block__item .m-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transform: scale(1.04);
  filter: grayscale(100%);
  transition: all ease-in-out 0.3s;
}
.members-block__item .m-item:hover img {
  filter: grayscale(0%);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

@keyframes jumpInfinite {
  0% {
    margin-top: 0;
  }
  50% {
    margin-top: 20px;
  }
  100% {
    margin-top: 0;
  }
}
.sun-icon {
  position: absolute;
  animation: jumpInfinite 1.5s infinite;
  margin-bottom: -16px;
  margin-left: 13px;
}

.breadcrumbs {
  position: absolute;
  width: 100%;
  top: -32px;
  left: 0;
}
@media only screen and (max-width: 1024px) {
  .breadcrumbs {
    left: 32px;
  }
}
@media only screen and (max-width: 520px) {
  .breadcrumbs {
    top: -60px;
    left: 24px;
    flex-direction: column;
  }
}
.breadcrumbs li {
  font-size: 16px;
  margin-right: 8px;
  color: #959595;
  line-height: 24px;
  font-weight: 400;
  transition: all ease-in-out 0.3s;
  max-width: 464px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 780px) {
  .breadcrumbs li {
    max-width: 324px;
  }
}
@media only screen and (max-width: 520px) {
  .breadcrumbs li {
    margin-right: 0;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 16px;
  }
}
.breadcrumbs li:last-child {
  margin-right: 0;
}
.breadcrumbs li.active, .breadcrumbs li:hover {
  color: #ffffff;
}
.breadcrumbs li span {
  padding-left: 8px;
}

.custom-pagination {
  margin-top: 32px;
}
.custom-pagination .paginationjs-pages ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-pagination .paginationjs-pages ul .disabled {
  opacity: 0.6;
  pointer-events: none;
}
.custom-pagination .paginationjs-pages ul .active {
  background: #F5A200;
}
.custom-pagination .paginationjs-pages ul li {
  width: 32px;
  height: 32px;
  background: #F6A925;
  color: #ffffff;
  margin: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.custom-pagination .paginationjs-pages ul li:hover {
  background: #F5A200;
}

.popup {
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9;
}
.popup .overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.popup .popup__inner {
  max-width: 600px;
  width: 100%;
  background: #ffffff;
  margin: 0 auto;
  padding: 32px;
  position: relative;
}
.popup .popup__inner .close-popup {
  width: 32px;
  height: 32px;
  position: absolute;
  right: 0;
  top: 0;
}
.popup .popup__inner h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 14px;
}
.popup .popup__inner input {
  width: 100%;
  padding: 12px 16px 12px 32px;
  outline: 0;
  border: 1px solid #DEDEDE;
  color: #959595;
  text-transform: capitalize;
  margin-bottom: 16px;
}

.loader {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  min-height: 90px;
  z-index: 9;
  display: none;
  transition: all ease-in-out 600ms;
}
.loader.show {
  display: block;
}
.loader__inner {
  width: 100%;
  height: 100%;
  display: none;
  /*align-items: center;*/
  justify-content: center;
  display: flex;
}
.loader .ring {
  width: 80px;
  height: 80px;
  border: 6px solid transparent;
  border-radius: 50%;
  position: absolute;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.loader .ring:nth-child(1) {
  border-bottom-color: #3DA46C;
  animation-name: rotate1;
}
.loader .ring:nth-child(2) {
  border-right-color: #4CC2E0;
  animation-name: rotate2;
}
.loader .ring:nth-child(3) {
  border-top-color: #193952;
  animation-name: rotate3;
}
.loader .ring:nth-child(4) {
  border-left-color: #F6A925;
  animation-name: rotate4;
}
.loader .loading {
  color: #2E2E2E;
  font-size: 16px;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation-name: fadeInOut;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  opacity: 0;
}
@keyframes rotate1 {
  0% {
    transform: rotateZ(0);
  }
  25% {
    transform: rotateZ(360deg);
  }
  50% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(0);
  }
}
@keyframes rotate2 {
  0% {
    transform: rotateZ(0);
  }
  25% {
    transform: rotateZ(-360deg);
  }
  50% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(0);
  }
}
@keyframes rotate3 {
  0% {
    transform: rotateZ(0);
  }
  25% {
    transform: rotateZ(360deg);
  }
  50% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(0);
  }
}
@keyframes rotate4 {
  0% {
    transform: rotateZ(0);
  }
  25% {
    transform: rotateZ(-360deg);
  }
  50% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(0);
  }
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ringScale {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
}

.loader-main {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #193952;
  z-index: 99;
  display: none;
  align-items: center;
  justify-content: center;
}
.loader-main.show {
  display: flex;
}
.loader-main__inner {
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  display: flex;
}
.loader-main .ring {
  width: 160px;
  height: 160px;
  border: 6px solid transparent;
  border-radius: 50%;
  position: absolute;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.loader-main .ring:nth-child(1) {
  border-bottom-color: #3DA46C;
  animation-name: rotate1;
}
.loader-main .ring:nth-child(2) {
  border-right-color: #4CC2E0;
  animation-name: rotate2;
}
.loader-main .ring:nth-child(3) {
  border-top-color: #ffffff;
  animation-name: rotate3;
}
.loader-main .ring:nth-child(4) {
  border-left-color: #F6A925;
  animation-name: rotate4;
}
.loader-main .loading {
  color: #ffffff;
  font-size: 16px;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation-name: fadeInOut;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  opacity: 0;
}
.loader-main .loading img {
  width: 80px;
}
@keyframes rotate1 {
  0% {
    transform: rotateZ(0);
  }
  25% {
    transform: rotateZ(360deg);
  }
  50% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(0);
  }
}
@keyframes rotate2 {
  0% {
    transform: rotateZ(0);
  }
  25% {
    transform: rotateZ(-360deg);
  }
  50% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(0);
  }
}
@keyframes rotate3 {
  0% {
    transform: rotateZ(0);
  }
  25% {
    transform: rotateZ(360deg);
  }
  50% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(0);
  }
}
@keyframes rotate4 {
  0% {
    transform: rotateZ(0);
  }
  25% {
    transform: rotateZ(-360deg);
  }
  50% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(0);
  }
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ringScale {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
}

.content-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 24px;
  position: relative;
  margin-top: 24px;
}
@media only screen and (max-width: 1024px) {
  .content-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 780px) {
  .content-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 520px) {
  .content-gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}
.content-gallery .col-25 {
  margin-bottom: 24px;
  width: 100%;
  height: 224px;
  position: relative;
  overflow: hidden;
}
.content-gallery .col-25:hover i,
.content-gallery .col-25:hover svg, .content-gallery .col-25:hover::after {
  opacity: 1;
}
.content-gallery .col-25 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-gallery .col-25::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-gallery .col-25 i,
.content-gallery .col-25 svg {
  color: #ffffff;
  font-size: 24px;
  opacity: 0;
  z-index: 3;
}

@media only screen and (max-width: 1281px) {
  #compare-datasets .interactive-map-block__form {
    flex-direction: column;
  }
}
#compare-datasets .interactive-map-block__form .custom-select {
  flex: 1;
}
@media only screen and (max-width: 1281px) {
  #compare-datasets .interactive-map-block__form .custom-select {
    width: 100%;
    margin-bottom: 16px;
    margin-right: 0;
  }
}
@media only screen and (max-width: 1281px) {
  #compare-datasets .interactive-map-block__form .custom-select .multipleSelection {
    width: 100%;
  }
}
@media only screen and (max-width: 1281px) {
  #compare-datasets .interactive-map-block__form .input-form {
    width: 100%;
    margin-bottom: 16px;
    margin-right: 0;
  }
}

.banner-top-block {
  position: relative;
  top: -180px;
  height: 180px;
}
@media only screen and (max-width: 520px) {
  .banner-top-block {
    top: -144px;
    height: 300px;
  }
}
.banner-top-block__inner {
  background: rgba(25, 57, 82, 0.95);
  height: 364px;
  overflow: hidden;
}
@media only screen and (max-width: 520px) {
  .banner-top-block__inner {
    flex-direction: column;
    height: 464px;
  }
}
.banner-top-block__inner img {
  width: 50%;
  object-fit: cover;
  height: 100%;
  object-position: center;
}
@media only screen and (max-width: 520px) {
  .banner-top-block__inner img {
    width: 100%;
    height: 244px;
    object-fit: cover;
    object-position: center;
  }
}
.banner-top-block__text {
  flex: 1;
  padding: 24px;
  color: #ffffff;
  justify-content: space-between;
}
@media only screen and (max-width: 520px) {
  .banner-top-block__text {
    padding: 16px;
  }
}
.banner-top-block__text h1 {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin: 0;
  text-transform: uppercase;
  line-height: 32px;
}
@media only screen and (max-width: 1281px) {
  .banner-top-block__text h1 {
    font-size: 18px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-top-block__text h1 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 520px) {
  .banner-top-block__text h1 {
    font-size: 14px;
    line-height: 22px;
  }
}
.banner-top-block__text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 16px;
}
@media only screen and (max-width: 520px) {
  .banner-top-block__text p {
    font-size: 12px;
    line-height: 20px;
  }
}

.volunteering-block__submition {
  max-width: 144px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.error-page {
  width: 100%;
  height: 100vh;
}
@media only screen and (max-width: 520px) {
  .error-page {
    flex-direction: column;
  }
}
.error-page .circle-icon {
  width: 320px;
  height: 320px;
  background: #193952;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  margin-left: 12rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px;
}
@media only screen and (max-width: 1024px) {
  .error-page .circle-icon {
    margin-left: 4rem;
  }
}
@media only screen and (max-width: 780px) {
  .error-page .circle-icon {
    margin-left: 0rem;
  }
}
@media only screen and (max-width: 520px) {
  .error-page .circle-icon {
    margin-top: 6rem;
    width: 264px;
    height: 264px;
    margin-bottom: 2rem;
  }
}
.error-page .circle-icon img {
  width: 100%;
}
.error-page .error-content {
  margin-left: 44px;
  line-height: 1.6;
  color: #142E42;
}
@media only screen and (max-width: 520px) {
  .error-page .error-content {
    margin-left: 0;
    text-align: center;
  }
}
.error-page .error-content h1 {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: 1.5px;
}
.error-page .error-content h3 {
  font-size: 32px;
}
.error-page .error-content p {
  font-size: 16px;
}
.error-page .error-content .link-to-home {
  font-size: 16px;
  margin-top: 16px;
  font-weight: 500;
  color: #F6A925;
  text-decoration: underline;
  text-underline-position: under;
}

.message {
  position: fixed;
  max-width: 600px;
  margin: 0;
  top: 90px;
  left: 50%;
  z-index: 9;
  padding: 8px 16px;
  transform: translate(-50%, 0);
  color: #ffffff;
  line-height: 32px;
  font-size: 16px;
  display: none;
}
.message.show {
  display: block;
}
.message i,
.message svg {
  position: absolute;
  right: 8px;
  top: 8px;
  cursor: pointer;
}
.message__success {
  background: #3DA46C;
}
.message__error {
  background: #c62828;
}/*# sourceMappingURL=main.css.map */