* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  font-family: 'Gotham SSm A', 'Gotham SSm B';
  font-style: normal;
  font-weight: 400;
}
a,
button {
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}
h1 {
  font-family: 'Gotham SSm A', 'Gotham SSm B';
  font-style: normal;
  font-weight: 700;
  font-size: 56px;
  text-transform: uppercase;
  line-height: 44px;
}

h2 {
  font-size: 48px;
  line-height: 1;
}
h3 {
  font-size: 40px;
  line-height: 1.2;
}
h4 {
  font-size: 32px;
  line-height: 1.6;
}
h5 {
  font-size: 24px;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  h2 {
    font-size: 40px;
  }
  h3 {
    font-size: 32px;
  }
  h4 {
    font-size: 24px;
  }
  h5 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 576px) {
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 18px;
  }
  h5 {
    font-size: 16px;
  }
}
/* HEADER */
.header {
  background: transparent;
  width: 100%;
  top: 46px;
  position: absolute;
  z-index: 10;
}
.header .container {
  display: flex;
  justify-content: space-between;
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
  align-items: center;
}
.header__links a {
  text-transform: uppercase;
  font-size: 14px;
  color: white;
  text-decoration: none;
}
.header__links a p {
  display: inline-block;
}
.header__links .active {
  color: #74a8ff;
}
.header__links a:nth-of-type(2) {
  margin: 0 40px;
}

.hamburger {
  /* display: flex; */
  flex-direction: column;
  justify-content: space-between;
  height: 14px;
  display: none;
}
.mobile-menu {
  display: none;
  background: black;
  padding-top: 180px;
  height: 100%;
  position: absolute;
  width: 100vw;
  z-index: 10;
  left: -1000px;
  transition: all 0.8s ease-in-out;
}
.mobile-menu-triggered {
  left: 0;
  /* display: block; */
}
.mobile-menu ul {
  margin: 0 auto;
  text-align: center;
  list-style-type: none;
}

.mobile-menu a {
  color: white;
  text-transform: uppercase;
  line-height: 24px;
  text-decoration: none;
  font-size: 14px;
}

.hamburger__line {
  width: 20px;
  border: 1px solid white;
  transition: all 0.8s ease-in-out;
}
.hamburger__line-1-active {
  transform: rotate(45deg) translateY(8px);
}
.hamburger__line-2-active {
  transform: rotate(-45deg) translateY(-8px);
}
/* HERO */

.hero {
  background: url('/images/header1.png');
  background-size: cover;
  padding-top: 122px;
  padding-bottom: 140px;
  width: 100%;
  color: white;
}

.hero__heading {
  font-size: 48px;
  line-height: 1;
  text-align: center;
  font-weight: 400;
  margin: 0 auto;
  max-width: 950px;
  margin-top: 122px;
}

.hero__paragraph {
  text-align: center;
  margin: 0 auto;
  max-width: 770px;
  font-size: 18px;
  line-height: 30px;
}
/* FOOTER */

.footer {
  padding: 20px 0;
  background: black;
  z-index: 5;
  position: relative;
}

.footer ul {
  list-style-type: none;
}
.footer__left,
.footer__right,
.footer__icons {
  margin-bottom: 0;
}
.footer__top {
  line-height: 26px;
  padding-top: 40px;
  padding-bottom: 55px;
  border-top: 1px solid #22314a;
}
.footer__top-grid {
  max-width: 1063px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 28px;
}
.footer__top h6 {
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
  color: #888888;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__top ul li a {
  color: #e7e9ea;
  text-decoration: none;
  font-weight: 300;
}
.footer__top ul li a:hover {
  color: #74a8ff;
}
.footer__bottom {
  border-top: 1px solid #22314a;
  padding-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.footer__top h6 img {
  width: 8px;
  height: 4px;
  display: none;
}
.footer__left,
.footer__right,
.footer__icons {
  display: flex;
  padding-left: 0;
  align-items: center;
  justify-content: space-between;
}

.footer__icons {
  max-width: 210px;
  margin-left: 39px;
  margin-right: 78px;
}
.footer__icons li {
  margin-right: 10px;
}
.footer__icons img {
  max-width: 24px;
}

.footer__left {
  color: white;
  font-size: 12px;
  line-height: 26px;
  letter-spacing: -0.5px;
}

.footer__right {
  max-width: 225px;
  margin-left: auto;
}

.footer__right a {
  font-size: 12px;
  color: #74a8ff;
  line-height: 26px;
}
.footer__right .footer-text {
  margin-right: 15px;
}
.footer a p {
  margin-bottom: 0;
}
.footer__bottom p {
  color: #e7e9ea;
}

@media only screen and (max-width: 1200px) {
  .container {
    width: calc(100% - 30px);
  }
  .footer .container {
    justify-content: space-between;
  }
}
@media only screen and (max-width: 867px) {
  .footer__bottom {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
  }
  .footer__right {
    grid-row: 2;
    margin: 0 auto;
    margin-top: 4px;
    margin-bottom: 18px;
  }
  .footer .container {
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .header-link img {
    max-width: 160px;
  }
  .header__links {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
}
@media only screen and (max-width: 576px) {
  .hero__heading {
    font-size: 36px;
    line-height: 1.2;
  }
  .footer__icons {
    max-width: 100%;
  }
  .footer__top h6 img {
    display: block;
  }
  .footer__top-grid {
    max-width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }
  .footer__top ul {
    display: none;
  }
  .footer__top h6 {
    border-bottom: 1px solid #22314a;
    padding: 10px 0;
  }
  .footer__bottom,
  .footer__top {
    border: none;
  }
  .footer__top {
    padding: 20px 0;
  }
  .footer__bottom {
    padding: 0;
  }
  .footer__icons {
    margin: auto;
  }
  .footer__right .footer-text {
    margin-right: 0;
  }
  .footer__right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 15px;
  }
}

button {
  text-transform: uppercase;
  display: inline-block;
  padding: 20px 50px;
  font-weight: bold;
  line-height: 20px;
  font-size: 14px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 11;
}
.d-block {
  display: block !important;
}
.border-none {
  border: none !important;
}
.form-el input,
.form-el textarea {
  background: #090c11;
  padding: 15.5px 15px;
  margin-bottom: 20px;
  border: 1px solid #29313e;
  border-radius: 3px;
  color: white;
}
.form-el textarea {
  resize: none;
  min-height: 150px;
}
.form-el label {
  margin-bottom: 10px;
  line-height: 26px;
}

.login__form {
  position: absolute;
  background: #18171f;
  left: 50%;
  transform: translateX(-50%);
  top: 120px;
  padding: 80px 100px;
  border-radius: 10px;
  max-width: 570px;
  min-width: 570px;
  z-index: 12;
  color: white;
}
.form-el {
  display: flex;
  flex-direction: column;
}

.login__form h3 {
  font-weight: 400;
  margin-bottom: 10px;
}
.login__form p {
  margin-bottom: 35px;
}

.login__form button {
  margin-top: 40px;
  align-self: flex-start;
}
.login__form button:hover {
  background: black;
  color: white;
  border-color: black;
}

@media only screen and (max-width: 576px) {
  .login__form {
    min-width: 90%;
    padding: 20px;
  }
}

.login__form,
.overlay {
  display: none;
}

.d-block {
  display: block;
}

.bg-image-full {
  position: relative;
  overflow-x: hidden;
}

.hero-2 {
  position: relative;
  background: url('/images/our-thesis/hero.png') !important;
  padding-bottom: 114px !important;
}
.hero-2 h2 {
  margin-bottom: 20px;
}
.hero-2 .container {
  z-index: 3;
  position: relative;
}

.text-left {
  text-align: left;
}
.colors {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    84.67deg,
    #ffb39e 11.96%,
    #fe6cb1 33.66%,
    #fe5bb5 54.93%,
    #74a8ff 86.45%
  ) !important;
  background-blend-mode: multiply;
  mix-blend-mode: multiply;
  z-index: 1;
}
.fade-1 {
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, #000000 14.3%, rgba(0, 0, 0, 0) 100%);
  width: 100%;
  height: 442px;
  left: 0px;
  top: 0px;
  z-index: 2;
}
.fade-2 {
  position: absolute;
  left: 0;
  bottom: 0px;
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  transform: matrix(1, 0, 0, -1, 0, 0);
  height: 300px;
  width: 100%;
  z-index: 2;
}
