@font-face {
  font-family: "market";
  src: url("../../assets/fonts/market/MarketBold.ttf") format("opentype");
  font-weight: 400;
}
@font-face {
  font-family: "natux";
  src: url("../../assets/fonts/natux/YWFT-Natux-Black.otf") format("opentype");
  font-weight: 900;
}
@font-face {
  font-family: "natux";
  src: url("../../assets/fonts/natux/YWFT-Natux-Bold.otf") format("opentype");
  font-weight: 800;
}
@font-face {
  font-family: "natux";
  src: url("../../assets/fonts/natux/YWFT-Natux-Medium.otf") format("opentype");
  font-weight: 700;
}
@font-face {
  font-family: "natux";
  src: url("../../assets/fonts/natux/YWFT-Natux-Regular.otf") format("opentype");
  font-weight: 600;
}
@font-face {
  font-family: "natux";
  src: url("../../assets/fonts/natux/YWFT-Natux-Light.otf") format("opentype");
  font-weight: 500;
}
@font-face {
  font-family: "natux";
  src: url("../../assets/fonts/natux/YWFT-Natux-SuperLight.otf") format("opentype");
  font-weight: 400;
}
@font-face {
  font-family: "natux";
  src: url("../../assets/fonts/natux/YWFT-Natux-Thin.otf") format("opentype");
  font-weight: 300;
}
@font-face {
  font-family: "natux";
  src: url("../../assets/fonts/natux/YWFT-Natux-Thin.otf") format("opentype");
  font-weight: 300;
}
@font-face {
  font-family: "sofia";
  src: url("../../assets/fonts/sofia/SofiaSansCondensed-Black.ttf") format("opentype");
  font-weight: 900;
}
@font-face {
  font-family: "sofia";
  src: url("../../assets/fonts/sofia/SofiaSansCondensed-ExtraBold.ttf") format("opentype");
  font-weight: 800;
}
@font-face {
  font-family: "sofia";
  src: url("../../assets/fonts/sofia/SofiaSansCondensed-Bold.ttf") format("opentype");
  font-weight: 700;
}
@font-face {
  font-family: "sofia";
  src: url("../../assets/fonts/sofia/SofiaSansCondensed-SemiBold.ttf") format("opentype");
  font-weight: 600;
}
@font-face {
  font-family: "sofia";
  src: url("../../assets/fonts/sofia/SofiaSansCondensed-Medium.ttf") format("opentype");
  font-weight: 500;
}
@font-face {
  font-family: "sofia";
  src: url("../../assets/fonts/sofia/SofiaSansCondensed-Regular.ttf") format("opentype");
  font-weight: 400;
}
@font-face {
  font-family: "sofia";
  src: url("../../assets/fonts/sofia/SofiaSansCondensed-Light.ttf") format("opentype");
  font-weight: 300;
}
:root {
  --main-font: "sofia";
  --second-font: "natux";
  --third-font: "market" ;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

ol,
ul {
  padding-left: 20px;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: black;
}
a:hover {
  text-decoration: none;
}

body {
  font-family: var(--main-font);
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: var(--main-font);
}
body p {
  font-family: var(--second-font);
}
body a {
  text-decoration: none;
}
body .default__page {
  padding: 250px 0px 100px 0px;
}
body .default__page .title {
  margin-bottom: 30px;
}

.footer__main {
  background: var(--footer-bg-color);
  padding: 40px 100px;
}
@media (max-width: 1280px) {
  .footer__main {
    padding: 40px;
  }
}
.footer__wrapper {
  display: flex;
  padding: 50px 0px;
}
@media (max-width: 800px) {
  .footer__wrapper {
    display: block;
    text-align: center;
  }
}
.footer__logo {
  flex: 1;
}
.footer__logo img {
  width: 200px;
}
@media (max-width: 980px) {
  .footer__logo img {
    width: 190px;
  }
}
.footer__menu {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1280px) {
  .footer__menu {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 800px) {
  .footer__menu {
    margin-top: 35px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer__menu ul {
  list-style: none;
  padding-left: 0px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__menu li {
  margin-bottom: 20px;
}
.footer__menu a {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
  color: white;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--second-font);
}
.footer__menu a:hover {
  color: var(--primary-color);
}
.footer__menu .footer__address {
  font-family: var(--second-font);
  font-size: 13px;
  width: 100%;
}
.footer__menu .footer__address h2 {
  text-transform: uppercase;
  font-weight: 400;
  color: white;
  margin-bottom: 30px;
  letter-spacing: 1.5px;
  font-size: 13px;
  line-height: 28px;
  font-family: var(--second-font);
}
.footer__menu .footer__address p {
  color: white;
  margin-bottom: 30px;
  line-height: 23px;
  font-size: 13px;
}
.footer__menu .footer__address a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 13px;
  text-transform: none !important;
}
.footer__menu .footer__address a:hover {
  color: var(--primary-color);
}
.footer__menu .footer__address a p {
  transition: all 0.3s ease;
}
.footer__menu .footer__address a p:hover {
  color: var(--primary-color);
}
.footer__bottom {
  color: var(--primary-color);
  display: flex;
  align-items: center;
  font-family: var(--second-font);
  letter-spacing: 1.5px;
  font-size: 13px;
}
@media (max-width: 800px) {
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
}
.footer__bottom ul {
  list-style: none;
  display: flex;
  padding: 0px;
  margin-left: 3px;
  gap: 5px;
}
@media (max-width: 580px) {
  .footer__bottom ul {
    text-align: center;
    display: block;
  }
}
.footer__bottom li {
  padding: 0px 10px;
  position: relative;
}
.footer__bottom li:after {
  content: "-";
  color: var(--primary-color);
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translatey(-50%);
}
.footer__bottom li:last-of-type:after {
  display: none;
}
.footer__bottom li:first-of-type {
  padding-left: 0px;
}
.footer__bottom a {
  color: var(--primary-color);
  transition: all 0.3s ease;
}
.footer__bottom a:hover {
  color: white;
}

.header__bg {
  background-color: var(--footer-bg-color);
}
.header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 100px;
  position: absolute;
  top: 0%;
  width: 100%;
  z-index: 9999;
  left: 0%;
  box-sizing: border-box;
}
@media (max-width: 1100px) {
  .header__main {
    padding: 40px;
  }
}
@media (max-width: 950px) {
  .header__main {
    display: block;
    text-align: center;
  }
}
@media (max-width: 580px) {
  .header__main {
    display: flex;
    align-items: center;
  }
}
.header__main .header__menu li.current_page_item a {
  color: var(--primary-color);
}
.header__main .header__menu li a {
  color: white;
  text-decoration: none;
  letter-spacing: 2px;
  font-family: var(--second-font);
}
.header__main .header__menu li a:hover {
  color: var(--primary-color);
  transition: 0.3s all;
}
.header__main .burger__menu {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
}
.header__main .burger__menu span {
  background: white;
}
@media (max-width: 500px) {
  .header__menu {
    display: none;
  }
}
.header__menu ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding-left: 0px;
}
@media (max-width: 950px) {
  .header__menu ul {
    justify-content: center;
    margin-top: 20px;
  }
}
.header__menu ul li {
  margin: 0px 20px;
}
.header__menu ul li.current_page_item a {
  color: var(--primary-color);
}
.header__menu ul a {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
}
.header__menu ul a:hover {
  transition: 0.3s all;
}
.header__logo img {
  width: 250px;
}
@media (max-width: 500px) {
  .header__logo img {
    width: 150px;
  }
}
.header__logo img.logo__black {
  display: none;
}
.header__logo img.logo__steacky {
  width: 50px;
}

.burger__menu {
  display: none;
  width: 28px;
  height: 18px;
  position: relative;
  margin-left: 20px;
}
.burger__menu.active span:nth-of-type(2) {
  opacity: 0;
}
.burger__menu.active span:first-of-type {
  transition: all 0.3s ease-in-out;
  top: 50%;
  transform: rotate(45deg);
}
.burger__menu.active span:last-of-type {
  transition: all 0.3s ease-in-out;
  top: 50%;
  transform: rotate(-45deg);
}
.burger__menu span {
  width: 100%;
  height: 2px;
  background: black;
  position: absolute;
}
.burger__menu span:nth-of-type(2) {
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.burger__menu span:first-of-type {
  top: 0px;
  left: 0px;
}
.burger__menu span:last-of-type {
  bottom: 0px;
  left: 0px;
}
@media (max-width: 580px) {
  .burger__menu {
    display: block;
  }
}

.menu__mobile {
  background: var(--secondary-color);
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0px;
  left: -100%;
  z-index: 9999;
  transition: all 0.3s ease;
}
.menu__mobile.active {
  left: 0;
}
@media (max-width: 580px) {
  .menu__mobile {
    top: 100px;
  }
}
.menu__mobile .burger__menu {
  position: absolute;
  right: 20px;
  top: 20px;
}
.menu__mobile .burger__menu span {
  background: black;
}
.menu__mobile .menu-primary-menu-container {
  position: absolute;
}
.menu__mobile .menu-primary-menu-container ul {
  padding: 20px;
}
.menu__mobile .menu-primary-menu-container ul li {
  font-size: 30px;
  font-family: var(--second-font);
  list-style: none;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 50px;
}
.menu__mobile .menu-primary-menu-container ul li a {
  color: white;
}
.menu__mobile .menu-primary-menu-container ul li .sub-menu li {
  font-size: 20px;
}

.sticky {
  position: sticky;
  top: 0;
  background-color: var(--footer-bg-color);
  transition: all 0.3s ease-in;
}

.container-sm {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .container-sm {
    max-width: 750px;
  }
}
@media (min-width: 992px) {
  .container-sm {
    max-width: 970px;
  }
}
@media (min-width: 1200px) {
  .container-sm {
    max-width: 1170px;
  }
}
.container-lg {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .container-lg {
    max-width: 850px;
  }
}
@media (min-width: 992px) {
  .container-lg {
    max-width: 1070px;
  }
}
@media (min-width: 1200px) {
  .container-lg {
    max-width: 1270px;
  }
}
.btn {
  display: flex;
  gap: 12px;
  text-transform: uppercase;
  text-decoration: none;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--main-font);
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0px;
}
@media (max-width: 950px) {
  .btn {
    font-size: 15px;
  }
}
.btn__secondary {
  color: var(--secondary-color);
  transition: all 0.3s ease;
}
.btn__secondary:hover {
  color: var(--primary-color);
}
.btn__primary {
  color: var(--primary-color);
  transition: all 0.3s ease;
}
.btn__primary:hover {
  color: var(--secondary-color);
}
.btn__bg {
  padding: 15px 40px;
  border-radius: 35px;
}
.btn__bg__primary {
  background-color: var(--primary-block-bg-color);
  color: var(--paragraph-color);
  transition: all 0.3s ease;
}
.btn__bg__primary:hover {
  background-color: var(--primary-color);
  color: var(--paragraph-color);
}
.btn__bg__secondary {
  background-color: var(--secondary-color);
  color: white;
  transition: all 0.3s ease;
}
.btn__bg__secondary:hover {
  background-color: var(--primary-color);
  color: var(--paragraph-color);
}

.btn__group {
  display: flex;
  justify-content: space-between;
}

.title {
  font-size: 55px;
  line-height: 55px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--main-font);
}
@media (max-width: 950px) {
  .title {
    font-size: 45px;
    line-height: 45px;
  }
}
@media (max-width: 480px) {
  .title {
    font-size: 40px;
    line-height: 40px;
  }
}
.title a {
  text-decoration: none;
}
.title__primary {
  color: var(--primary-color);
}
.title__primary a {
  color: var(--primary-color);
}
.title__secondary {
  color: var(--secondary-color);
}
.title__medium {
  font-size: 35px;
  line-height: 35px;
}
@media (max-width: 950px) {
  .title__medium {
    font-size: 30px;
    line-height: 30px;
  }
}
@media (max-width: 480px) {
  .title__medium {
    font-size: 27px;
    line-height: 27px;
  }
}
.title__small {
  font-size: 25px;
  line-height: 25px;
}

.subtitle {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 1px;
}

input:focus-visible {
  outline: none;
}

.hero {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.hero .hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  background-color: rgba(0, 8, 45, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.hero__full {
  height: 80vh;
}
.hero__medium {
  height: 70vh;
}
.hero__content {
  position: absolute;
  left: 100px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  width: 40%;
}
@media (max-width: 1440px) {
  .hero__content {
    width: 45%;
  }
}
@media (max-width: 1100px) {
  .hero__content {
    left: 40px;
  }
}
@media (max-width: 900px) {
  .hero__content {
    width: 80%;
  }
}
.hero__content h1 {
  font-weight: 800;
  font-size: 65px;
  color: white;
  margin-bottom: 30px;
  text-transform: uppercase;
  line-height: 65px;
}
@media (max-width: 500px) {
  .hero__content h1 {
    font-size: 50px;
  }
}
@media (max-width: 850px) {
  .hero__content h1 {
    font-size: 40px;
  }
}

.about__block {
  text-align: center;
  margin: 150px 0px;
}
@media (max-width: 580px) {
  .about__block {
    margin: 70px 0px;
  }
}
.about__block h2 {
  font-size: 35px;
  line-height: 55px;
  color: var(--primary-color);
  font-weight: 700;
  font-family: var(--third-font);
  margin-bottom: 15px;
}
.about__block .wysiwyg p {
  font-size: 23px;
}

.wysiwyg {
  font-size: 18px;
  color: var(--paragraph-color);
  line-height: 29px;
  font-weight: 400;
  font-family: var(--second-font);
}
@media (max-width: 950px) {
  .wysiwyg {
    font-size: 15px;
    line-height: 25px;
  }
}
.wysiwyg p {
  font-size: 18px;
  color: var(--paragraph-color);
  line-height: 29px;
  font-weight: 400;
}
@media (max-width: 950px) {
  .wysiwyg p {
    font-size: 15px;
    line-height: 25px;
  }
}
@media (max-width: 480px) {
  .wysiwyg p {
    font-size: 13px;
    line-height: 23px;
  }
}
.wysiwyg img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 20px 0px;
}
.wysiwyg__lg p {
  font-size: 24px;
  line-height: 38px;
}
@media (max-width: 950px) {
  .wysiwyg__lg p {
    font-size: 22px;
    line-height: 35px;
  }
}

.grid__news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 40px 0;
}
@media (max-width: 1024px) {
  .grid__news {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .grid__news {
    grid-template-columns: repeat(1, 1fr);
  }
}
.grid__news .grid__item {
  width: 100%;
}
@media (max-width: 580px) {
  .grid__news .grid__item {
    width: 100%;
  }
}
.grid__news .grid__item .thumbnail__wrapper {
  border-radius: 10px;
  overflow: hidden;
  height: 300px;
}
.grid__news .grid__item .item__thumbnail {
  height: 300px;
  transition: 0.3s all;
}
.grid__news .grid__item .item__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.grid__news .grid__item .item__thumbnail:hover {
  transform: scale(1.1);
  transition: 0.3s all;
}
.grid__news .grid__item .item__meta {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  margin-top: 20px;
}
.grid__news .grid__item .item__date {
  margin: 15px 0px;
  font-family: var(--second-font);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}
.grid__news .grid__item .btn {
  margin-top: 30px;
}

.grid__wrapper {
  background-color: var(--secondary-block-bg-color);
  padding: 95px 0px;
}
.grid__wrapper .title__section {
  margin: 0px;
}
.grid__wrapper .title__section h2 {
  font-family: var(--third-font);
  font-size: 55px;
  line-height: 45px;
}
.grid__wrapper .btn__group {
  padding-top: 40px;
  justify-content: center;
}

.banner__wrapper {
  position: relative;
  margin-bottom: 120px;
}
@media (max-width: 580px) {
  .banner__wrapper {
    margin-bottom: 70px;
  }
}
.banner__wrapper .banner__img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 600px;
}
@media (max-width: 1100px) {
  .banner__wrapper .banner__img {
    height: 450px;
    background-position: 83%;
  }
}
.banner__wrapper .conture__right {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 1100px) {
  .banner__wrapper .conture__right {
    height: 450px;
  }
}
.banner__wrapper .conture__left {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1100px) {
  .banner__wrapper .conture__left {
    height: 450px;
  }
}
.banner__wrapper .banner__content {
  position: absolute;
  top: 50%;
  left: 200px;
  transform: translateY(-50%);
  width: 32%;
}
@media (max-width: 1100px) {
  .banner__wrapper .banner__content {
    position: relative;
    transform: translateY(0%);
    left: 0;
    width: 90%;
    margin: 0px auto;
    padding-top: 40px;
  }
}
.banner__wrapper .banner__content p {
  margin: 20px 0px 45px 0px;
}
@media (max-width: 480px) {
  .banner__wrapper .banner__content p {
    margin: 25px 0px 35px 0px;
  }
}

.align__block {
  display: flex;
  margin: 120px 0px;
  gap: 40px;
}
@media (max-width: 950px) {
  .align__block {
    flex-direction: column;
  }
}
@media (max-width: 580px) {
  .align__block {
    margin: 70px 0px;
  }
}
@media (max-width: 480px) {
  .align__block {
    gap: 25px;
  }
}
.align__block .item__thumbnail {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}
.align__block .item__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 950px) {
  .align__block .item__thumbnail {
    width: 100%;
  }
}
.align__block .align__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.align__block .align__content p {
  margin: 20px 0px 45px 0px;
}
@media (max-width: 480px) {
  .align__block .align__content p {
    margin: 25px 0px 35px 0px;
  }
}

.publication__wrapper {
  display: flex;
  justify-content: space-between;
  margin: 120px 0px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .publication__wrapper {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 580px) {
  .publication__wrapper {
    margin: 70px 0px;
  }
}
.publication__wrapper .publication__content {
  width: 50%;
  background-color: var(--primary-block-bg-color);
  position: relative;
}
@media (max-width: 1200px) {
  .publication__wrapper .publication__content {
    width: 100%;
    height: 100%;
    min-height: 500px;
  }
}
.publication__wrapper .publication__content .content__wrapper {
  padding: 45px;
}
@media (max-width: 500px) {
  .publication__wrapper .publication__content .content__wrapper {
    padding: 30px;
  }
}
.publication__wrapper .publication__content .content__wrapper .publication__date {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--secondary-color);
  font-weight: 500;
  line-height: 18px;
  font-family: var(--second-font);
  padding-bottom: 15px;
}
.publication__wrapper .publication__content .content__wrapper .publication__authors {
  font-size: 13px;
  line-height: 23px;
  font-weight: 400;
  color: var(--paragraph-color);
  padding: 20px 0px;
}
@media (max-width: 480px) {
  .publication__wrapper .publication__content .content__wrapper .publication__authors {
    font-size: 12px;
    line-height: 20px;
  }
}
.publication__wrapper .publication__content .content__wrapper .btn__group {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin-top: 60px;
}
@media (max-width: 500px) {
  .publication__wrapper .publication__content .content__wrapper .btn__group {
    flex-direction: column;
    gap: 20px;
  }
}
.publication__wrapper .publication__thumbnail {
  width: 50%;
  max-height: 700px;
}
@media (max-width: 1200px) {
  .publication__wrapper .publication__thumbnail {
    width: 100%;
  }
}
.publication__wrapper .publication__thumbnail img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.text__align__image {
  display: flex;
  margin: 90px 0px;
  gap: 60px;
  align-items: center;
}
@media (max-width: 580px) {
  .text__align__image {
    margin: 60px 0px;
  }
}
@media (max-width: 950px) {
  .text__align__image {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .text__align__image {
    gap: 25px;
  }
}
.text__align__image.reversed {
  flex-direction: row-reverse;
}
@media (max-width: 950px) {
  .text__align__image.reversed {
    flex-direction: column-reverse;
  }
}
.text__align__image .image__section {
  flex: 1;
}
.text__align__image .image__section img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.text__align__image .content__section {
  flex: 1;
}
.text__align__image .content__section .title {
  margin: 20px 0px;
}
.text__align__image .content__section .learn-more-btn {
  margin-top: 40px;
}

.learn-more-content {
  margin-bottom: 90px;
}

.sponsors__block {
  background-color: var(--primary-block-bg-color);
  padding: 120px 0px;
}
@media (max-width: 580px) {
  .sponsors__block {
    padding: 70px 0px;
  }
}
.sponsors__block .sponsors__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 580px) {
  .sponsors__block .sponsors__wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }
}
.sponsors__block .sponsors__wrapper .sponsors__subtitle {
  font-family: var(--third-font);
  font-size: 35px;
  line-height: 55px;
  margin-bottom: 10px;
}
.sponsors__block .sponsors__wrapper .sponsor__item {
  background-color: white;
  text-align: center;
  height: 400px;
  width: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 950px) {
  .sponsors__block .sponsors__wrapper .sponsor__item {
    height: 350px;
  }
}
.sponsors__block .sponsors__wrapper .sponsor__item .sponsor__thumbnail {
  width: 100%;
  margin-top: 20px;
}
.sponsors__block .sponsors__wrapper .sponsor__item .sponsor__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sponsors__block .sponsors__wrapper .sponsor__item .wysiwyg {
  margin: 20px 30px;
}
@media (max-width: 950px) {
  .sponsors__block .sponsors__wrapper .sponsor__item .wysiwyg {
    margin: 20px;
  }
}
.sponsors__block .sponsors__wrapper .sponsor__item .sponsor__link {
  position: absolute;
  bottom: 30px;
  width: fit-content;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary-color);
  font-size: 18px;
  font-family: var(--main-font);
  font-weight: 600;
}

.team__wrapper {
  margin: 120px 0px;
}
@media (max-width: 580px) {
  .team__wrapper {
    margin: 70px 0px;
  }
}
.team__wrapper .team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 992px) {
  .team__wrapper .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 660px) {
  .team__wrapper .team__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.team__wrapper .team__grid .team__card {
  width: 100%;
}
.team__wrapper .team__grid .team__card .thumbnail {
  aspect-ratio: 3.5/3;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.team__wrapper .team__grid .team__card .thumbnail .no-image {
  width: 100%;
  height: 100%;
  background-color: var(--primary-block-bg-color);
}
.team__wrapper .team__grid .team__card .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.team__wrapper .team__grid .team__card .thumbnail:hover img {
  transform: scale(1.1);
}
.team__wrapper .team__grid .team__card h4 {
  font-size: 40px;
  line-height: 40px;
  font-weight: 900;
  margin-bottom: 25px;
  font-family: var(--second-font);
  text-transform: none;
}
.team__wrapper .team__grid .team__card p {
  text-transform: uppercase;
  color: var(--paragraph-color);
  font-size: 13px;
  line-height: 28px;
  letter-spacing: 0px;
  font-family: var(--second-font);
  font-weight: 500;
}
.team__wrapper .team__grid .team__modal {
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 999999;
  overflow-y: auto;
  background-color: rgba(0, 8, 45, 0.7019607843);
}
.team__wrapper .team__grid .team__modal .modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 580px) {
  .team__wrapper .team__grid .team__modal .modal__content {
    width: 90%;
  }
}
.team__wrapper .team__grid .team__modal .modal__content .modal__wrapper {
  background: white;
  padding: 40px;
  border-radius: 10px;
  position: relative;
  max-height: 70vh;
  overflow: auto;
  min-width: 350px;
}
.team__wrapper .team__grid .team__modal .modal__content .modal__wrapper .modal__close {
  position: absolute;
  right: 15px;
  top: 10px;
}
.team__wrapper .team__grid .team__modal .modal__content .modal__wrapper::-webkit-scrollbar {
  display: none;
}
.team__wrapper .team__grid .team__modal .modal__content .modal__wrapper h1,
.team__wrapper .team__grid .team__modal .modal__content .modal__wrapper h2,
.team__wrapper .team__grid .team__modal .modal__content .modal__wrapper h3,
.team__wrapper .team__grid .team__modal .modal__content .modal__wrapper h4,
.team__wrapper .team__grid .team__modal .modal__content .modal__wrapper h5 {
  margin-bottom: 30px;
  font-family: var(--second-font);
  color: var(--primary-color);
  text-transform: none;
  margin-top: 10px;
}

.collaborations {
  margin: 120px 0px;
  column-count: 2;
  column-gap: 90px;
}
@media (max-width: 720px) {
  .collaborations {
    column-count: 1;
  }
}
@media (max-width: 580px) {
  .collaborations {
    margin: 70px 0px;
  }
}
.collaborations .collaboration__item {
  margin-bottom: 60px;
  break-inside: avoid;
}
.collaborations .collaboration__item .title {
  margin-bottom: 30px;
}

.alumni {
  margin: 120px 0px;
  padding: 60px 0px;
  background-color: var(--secondary-block-bg-color);
}
@media (max-width: 580px) {
  .alumni {
    margin: 70px 0px;
  }
}
.alumni .sub {
  text-align: center;
  font-family: var(--third-font);
  font-size: 35px;
  line-height: 55px;
  color: var(--primary-color);
}
.alumni .title {
  text-align: center;
  margin: 0px auto;
  width: 60%;
}
@media (max-width: 580px) {
  .alumni .title {
    width: 100%;
  }
}
.alumni .alumni__grid {
  margin-top: 70px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1100px) {
  .alumni .alumni__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .alumni .alumni__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.alumni .alumni__grid .alumni__card {
  font-family: var(--second-font);
  margin: 5px 0px;
  font-size: 18px;
}
.alumni .alumni__grid .alumni__card .name {
  font-weight: 900;
}

.grid__publications {
  margin: 40px 0px;
}
@media (max-width: 690px) {
  .grid__publications {
    margin: 0px;
  }
}
.grid__publications .publication__item {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 40px;
  padding-bottom: 40px;
  position: relative;
  padding-right: 30px;
}
@media (max-width: 690px) {
  .grid__publications .publication__item {
    flex-direction: column;
    padding-right: 0px;
  }
}
.grid__publications .publication__item:last-of-type:after {
  display: none;
}
.grid__publications .publication__item .thumbnail__wrapper {
  height: 180px;
  width: 180px;
  overflow: hidden;
  border-radius: 10px;
}
.grid__publications .publication__item .item__thumbnail {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.grid__publications .publication__item .item__thumbnail:hover {
  transform: scale(1.1);
  transition: 0.3s all;
}
.grid__publications .publication__item .item__content {
  width: 75%;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 40px;
}
@media (max-width: 690px) {
  .grid__publications .publication__item .item__content {
    width: 100%;
    margin-top: 40px;
  }
}
.grid__publications .publication__item .item__content a {
  text-decoration: none;
}
.grid__publications .publication__item .item__content h3 {
  margin: 10px 0px;
}
.grid__publications .publication__item .item__content .item__date {
  text-transform: uppercase;
  font-size: 13px;
  line-height: 28px;
  font-weight: 500;
  font-family: var(--second-font);
}
.grid__publications .publication__item .item__content .item__authors {
  font-size: 13px;
  font-weight: 400px;
  color: var(--paragraph-color);
  margin: 30px 0px;
  line-height: 23px;
}
.grid__publications .publication__item .item__content p {
  margin: 30px 0px 40px 0px;
}

.publications__sidebar {
  margin-top: 40px;
}
.publications__sidebar .sidebar__item {
  margin-bottom: 40px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 10px;
}
.publications__sidebar .sidebar__item .searchform {
  background: white;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
}
.publications__sidebar .sidebar__item .searchform input[type=text] {
  border: none;
}
.publications__sidebar .sidebar__item .searchform input[type=text]::placeholder {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--second-font);
  line-height: 28px;
  color: var(--paragraph-color);
}
.publications__sidebar .sidebar__item h2 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  font-family: var(--second-font);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.publications__sidebar .sidebar__item .tags__wrapper {
  background: white;
  padding: 24px;
  border-radius: 10px;
}
.publications__sidebar .sidebar__item .tags__wrapper ul {
  list-style: none;
  padding-left: 0px;
}
.publications__sidebar .sidebar__item .tags__wrapper li {
  padding-bottom: 20px;
  position: relative;
}
.publications__sidebar .sidebar__item .tags__wrapper li:after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0%;
  height: 1px;
  width: 100px;
  background: #D9D9D9;
}
.publications__sidebar .sidebar__item .tags__wrapper a {
  text-transform: uppercase;
  display: block;
  font-weight: 500;
  text-decoration: none;
  font-size: 13px;
  line-height: 28px;
  font-family: var(--second-font);
}

.row {
  display: flex;
  gap: 40px;
  margin: 120px 0px;
}
@media (max-width: 980px) {
  .row {
    flex-direction: column;
    gap: 25px;
  }
}
@media (max-width: 580px) {
  .row {
    margin: 70px 0px;
  }
}
.row .left__side {
  flex: 75%;
}
@media (max-width: 980px) {
  .row .left__side {
    flex: 100%;
  }
}
.row .right__side {
  flex: 25%;
}

.title__section {
  margin: 120px 0px;
}
@media (max-width: 580px) {
  .title__section {
    margin: 70px 0px;
  }
}
.title__section p {
  font-size: 45px;
  font-family: var(--main-font);
  color: var(--paragraph-color);
  text-transform: uppercase;
}
@media (max-width: 950px) {
  .title__section p {
    font-size: 35px;
    line-height: 35px;
  }
}
@media (max-width: 480px) {
  .title__section p {
    font-size: 30px;
    line-height: 30px;
  }
}

.news__content__wrapper {
  margin: 120px 0px;
}

.filter__wrapper {
  margin: 120px 0px;
  text-align: center;
}
.filter__wrapper a {
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 38px;
  font-size: 20px;
  font-weight: 400;
  font-family: var(--second-font);
  margin: 0px 20px;
  transition: all 0.3s ease;
}
.filter__wrapper a:hover {
  color: var(--primary-color);
}

.news__sidebar {
  width: 25%;
}
@media (max-width: 980px) {
  .news__sidebar {
    width: 100%;
  }
}
.news__sidebar h2 {
  font-weight: 900;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 30px;
  font-family: var(--second-font);
  text-transform: uppercase;
  color: var(--primary-color);
}
.news__sidebar .sidebar__item {
  margin-bottom: 40px;
}
.news__sidebar .sidebar__item:last-of-type {
  margin-top: 80px;
}
.news__sidebar .latest__post .post__item {
  margin-bottom: 50px;
  position: relative;
}
.news__sidebar .latest__post .post__item h3 {
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 5px;
}
.news__sidebar .latest__post .post__item .item__date {
  text-transform: uppercase;
  font-size: 13px;
  line-height: 28px;
  font-weight: 500;
  font-family: var(--second-font);
}
.news__sidebar .latest__post .post__item:after {
  content: "";
  position: absolute;
  left: 0%;
  width: 100px;
  height: 1px;
  background: #D9D9D9;
  bottom: -25px;
}
.news__sidebar .categories__wrapper ul {
  list-style: none;
  padding-left: 0px;
}
.news__sidebar .categories__wrapper li {
  padding-bottom: 20px;
  position: relative;
  font-size: 13px;
  line-height: 28px;
  font-weight: 500;
  font-family: var(--second-font);
  text-transform: uppercase;
}
.news__sidebar .categories__wrapper li a {
  display: block;
  font-weight: 600;
}
.news__sidebar .categories__wrapper li:after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0%;
  height: 1px;
  width: 100px;
  background: #D9D9D9;
}

.singel__left {
  width: 65%;
}
@media (max-width: 980px) {
  .singel__left {
    width: 100%;
  }
}
.singel__left .wysiwyg {
  margin-bottom: 60px;
}
.singel__left .wysiwyg h2,
.singel__left .wysiwyg h3,
.singel__left .wysiwyg h4 {
  color: var(--primary-color);
  margin: 20px 0px;
}
.singel__left .single__nav {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 40px;
}
@media (max-width: 980px) {
  .singel__left .single__nav {
    justify-content: space-between;
    width: 100%;
    gap: 10px;
  }
}
@media (max-width: 980px) {
  .singel__left .single__nav .next__btn,
  .singel__left .single__nav .prev__btn {
    width: 50%;
  }
  .singel__left .single__nav .next__btn a svg,
  .singel__left .single__nav .prev__btn a svg {
    width: 21px;
  }
}

.row__news {
  display: flex;
  justify-content: space-between;
  margin: 120px 0px;
}

.contact__page {
  display: flex;
  justify-content: space-between;
  margin: 120px 0px;
}
@media (max-width: 580px) {
  .contact__page {
    display: block;
  }
}
.contact__page .left__part {
  width: 35%;
  padding: 0px 50px 0px 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 580px) {
  .contact__page .left__part {
    width: 100%;
  }
}
.contact__page .left__part .left__bottom {
  font-family: var(--second-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
}
.contact__page .left__part .left__bottom .addresse {
  display: block;
  width: 45%;
  margin: 40px 0px;
}
.contact__page .left__part .wysiwyg p {
  font-size: 35px;
  line-height: 45px;
  text-transform: uppercase;
  font-family: var(--main-font);
}
.contact__page .right__part {
  width: 40%;
  padding: 40px;
  border: 1px solid #b8b8b8;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 580px) {
  .contact__page .right__part {
    width: auto;
    padding: 20px;
    margin-top: 40px;
  }
}
.contact__page .right__part .contact__form form .row {
  margin: 0px 0px 30px 0px;
  gap: 30px;
}
.contact__page .right__part .contact__form input[type=text],
.contact__page .right__part .contact__form input[type=email],
.contact__page .right__part .contact__form input[type=tel] {
  border: none;
  background: var(--secondary-block-bg-color);
  height: 55px;
  padding: 20px 15px;
  width: 100%;
  transition: 0.3s all;
  box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;
}
.contact__page .right__part .contact__form input[type=text]:focus,
.contact__page .right__part .contact__form input[type=email]:focus,
.contact__page .right__part .contact__form input[type=tel]:focus {
  border: 2px solid var(--secondary-color);
}
.contact__page .right__part .contact__form input[type=text]::placeholder,
.contact__page .right__part .contact__form input[type=email]::placeholder,
.contact__page .right__part .contact__form input[type=tel]::placeholder {
  color: var(--secondary-color);
  font-family: var(--second-font);
  font-size: 13px;
}
.contact__page .right__part .contact__form textarea {
  border: none;
  background: #f8f8f8;
  padding: 15px 15px;
  width: 100%;
  height: 130px;
  transition: 0.3s all;
  margin: 30px 0px;
  box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;
}
.contact__page .right__part .contact__form textarea::placeholder {
  color: var(--secondary-color);
  font-size: 13px;
  font-family: var(--second-font);
}
.contact__page .right__part .contact__form input[type=submit] {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--main-font);
  cursor: pointer;
  border: none;
  padding: 18px 90px;
  border-radius: 10px;
  background-color: var(--primary-color);
  color: white;
  transition: all 0.3s ease;
  margin-top: 40px;
}
.contact__page .right__part .contact__form input[type=submit]:hover {
  color: var(--secondary-color);
}