/* Importing Fonts */
@font-face {
  font-family: "Lato";
  src: url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
}

@font-face {
  font-family: "Futura";
  src: url('../fonts/FuturaCyrillicBold.ttf');
}

@font-face {
  font-family: "EB Garamond";
  src: url("../fonts/EBGaramond-VariableFont_wght.ttf");
}
/* Importing Fonts */

/* Basic Parameters */
:root {
  --color-1: #f6f6f6;
  --color-2: #111111;
  --color-3: #001f62;
  --color-4: #0033a0;
  --color-5: #00150f;
  --color-6: #312000;
  --font-1: "Futura";
  --font-2: "Lato";
  --font-3: "EB Garamond";
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 70px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(17, 17, 17, 0.5);
  border-radius: 70px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(17, 17, 17, 0.7);
}

* {
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

p {
  margin: 0;
}

a {
  color: var(--color-1);
}

a:hover {
  color: var(--color-1);
  text-decoration: underline;
}
/* Basic Parameters */

/* Header */
header {
  background-color: var(--color-1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-content {
  background-color: var(--color-1);
  padding: 15px 100px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  box-shadow: 4px 0px 30px var(--color-2);
}

.header-mobile {
  display: none;
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-color: var(--color-1);
}

.nav-overlay-container * {
  color: var(--color-2);
  font-size: 20px;
  padding-right: 0 !important;
  padding: 10px 10px;
}

.cross {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding-right: 20px !important;
}

.ham {
  display: none;
}

.ham.visible {
  display: block;
}

.nav {
  display: flex;
  flex-direction: row;
}

.nav :not(:last-child) {
  padding-right: 50px;
}

.nav-item {
  font-family: var(--font-2);
  font-weight: 400;
  font-size: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-item {
  padding: 5px 0;
  transition: all 200ms ease-in-out;
  color: var(--color-2) !important;
}

.nav-item:hover {
  color: var(--color-2) !important;
}

.dropdown-menu {
  display: none;
}

.dropdown-menu li {
  padding-right: 10px !important;
  padding: 10px;
}

.dropdown-menu li p, .dropdown-menu li a {
  padding: 0px !important;
}

.dropdown {
  cursor: pointer;
}

.dropdown-elm {
  padding-right: 0px !important;
}

.dropdown-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.next-arr-2 {
  width: 10px;
  height: 10px;
  padding: 0 !important;
}

.dropdown-elm p {
  color: var(--color-2);
}

.dropdown-elm.scrolled p {
  color: var(--color-2);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.next-arr {
  padding: 0 !important;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -40%;
  border-radius: 5px;
  background-color: var(--color-1);
  border: 1px solid rgba(0,0,0,.15);
  color: var(--color-2);
  list-style: none;
  margin: 0;
  min-width: 250px;
}

.sub-dropdown {
  display: none;
  position: absolute;
  left: 100%;
  border-radius: 5px;
  top: 0;
  min-width: 200px;
  list-style: none;
  background-color: var(--color-1);
  border: 1px solid rgba(0,0,0,.15);
  padding-left: 0 !important;
}

.sub-dropdown a:hover {
  color: var(--color-2) !important;
}

.dropdown-menu li:hover .sub-dropdown {
  display: block;
}

.dropdown-menu li a,
.sub-dropdown li a {
  text-decoration: none;
  color: var(--color-2);
  padding: 5px 10px;
}

.dropdown-menu li a:hover,
.sub-dropdown li a:hover {
  background-color: var(--color-1);
}
/* Header */

/* About 1 Section */
.about-section-1 {
  margin-top: 100px;
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.about-1-content {
  width: calc(100vw - 200px);
  height: calc(60vh - 100px);
  margin: 50px 100px;
  padding: 20px 0;
}

.about-1-desc {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 50px;
}

.about-1-title {
  width: 60%;
  font-family: var(--font-3);
  font-size: 50px;
  font-weight: 600;
  color: var(--color-3);
}

.about-1-text {
  font-family: var(--font-2);
  font-size: 30px;
  font-weight: 400;
  color: var(--color-2);
  width: 90%;
}

.about-1-img {
  width: 300px;
  height: 300px;
  position: relative;
}

.about-1-img img {
  position: absolute;
  z-index: 1;
}

.about1 {
  top: 10px;
  left: -350px;
}

.about2 {
  top: -10px;
  left: -150px;
}

.about3 {
  left: 50px;
}

.about-section-2 {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 150px;
}

.about-2-content {
  width: 100%;
  min-height: calc(90vh - 100px);
  background-color: #73798d;
  border-radius: 15px;
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 100px;
}

.about-2-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-2-title p {
  font-family: var(--font-1);
  font-size: 33px;
  font-weight: 600;
  color: var(--color-1);
  width: 90%;
  text-align: center;
}

.about-2-title p span {
  color: var(--color-4);
}

.about-2-desc {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 100px;
  gap: 100px;
}

.about-2-desc p {
  font-family: var(--font-2);
  font-size: 30px;
  font-weight: 400;
  color: var(--color-1);
  text-align: justify;
}

.about-section-3 {
  position: relative;
  min-height: 100vh;
  padding: 20px 0;
}

.shape1 {
  position: absolute;
  top: -20%;
  left: -10%;
  z-index: -1;
}

.shape2 {
  position: absolute;
  top: 0%;
  left: 80%;
  z-index: -1;
}

.shape3 {
  position: absolute;
  top: 80%;
  left: 20%;
  z-index: -1;
}

.shape4 {
  position: absolute;
  top: 75%;
  left: 85%;
  z-index: -1;
}

.about-3-content {
  height: 100%;
  padding: 50px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 150px;
}

.about-3-desc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.about-3-title {
  font-family: var(--font-3);
  font-size: 70px;
  font-weight: 600;
  color: var(--color-3);
  text-align: center;
}

.about-3-text {
  font-family: var(--font-2);
  font-size: 30px;
  font-weight: 400;
  color: var(--color-2);
  width: 90%;
}

.about-3-elms {
  width: 100%;
  padding: 0 50px;
  text-align: center;
}

.elm {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 50px;
}

.elm-container {
  width: 220px;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: solid 7px var(--color-3);
  border-radius: 5px;
  transform: rotate(45deg);
  transition: all 200ms ease-in-out;
}

.elm-container:hover {
  background-color: var(--color-3);
}

.elm-container * {
  transform: rotate(-45deg);
}

.elm-container p {
  opacity: 0;
  z-index: -1;
  font-family: var(--font-1);
  font-size: 26px;
  font-weight: 600;
  color: var(--color-1);
  transition: all 200ms ease-in-out;
}

.elm-container img {
  opacity: 1;
  z-index: 1;
  transition: all 200ms ease-in-out;
}

.elm-container:hover img {
  opacity: 0;
  z-index: -1;
}

.elm-container:hover p {
  opacity: 1;
  z-index: 1;
}

/* About 1 Section */

/* Footer */
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 300px;
  background-image: linear-gradient(
      rgba(17, 17, 17, 0.95),
      rgba(17, 17, 17, 0.95)
    ),
    url("../images/backgrounds/footer-image.png");
}

.separator {
  width: 90%;
  height: 1px;
  background: rgb(246, 246, 246);
  background: linear-gradient(
    90deg,
    rgba(246, 246, 246, 0) 0%,
    rgba(246, 246, 246, 1) 50%,
    rgba(246, 246, 246, 0) 100%
  );
}

.footer-content {
  padding-right: 150px;
  padding-left: 150px;
  width: 100%;
  min-height: 210px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.logo-desc {
  max-width: 450px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: var(--font-2);
  color: var(--color-1);
  font-size: 16.5px;
  font-weight: 500;
  gap: 40px;
}

.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.footer-nav p {
  font-family: var(--font-2);
  color: var(--color-1);
  font-size: 16.5px;
  font-weight: 600;
}

.first-col,
.second-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.link {
  display: flex;
  flex-direction: row;
}

.link p {
  margin: 0;
  font-family: var(--font-1);
  color: var(--color-1);
  font-size: 15.5px;
  font-weight: 650;
}

.link-icon {
  padding: 5px;
  border: solid 2px var(--color-1);
  transition: all 200ms ease-in-out;
}

.link:hover .link-icon {
  transform: rotate(45deg);
}

.link-icon img {
  transition: all 200ms ease-in-out;
}

.link:hover .link-icon img {
  transform: rotate(-45deg);
}

.link-name {
  display: none;
  padding-left: 15px;
}

.footer-end {
  padding: 0 100px;
  min-height: 90px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-2);
  color: var(--color-1);
  font-size: 18px;
  font-weight: 600;
}
/* Footer */

/* Media Queries */
@media screen and (max-width: 1400px) {
  .about-section-1 {
    min-height: 40vh;
  }

  .about-1-img {
    display: none;
  }

  .about-1-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(40vh - 100px);
  }
  .about-1-desc {
    margin: 50px 50px;
    width: calc(100vw - 100px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .about-1-title {
    font-size: 40px;
    text-align: center;
  }

  .about-1-text {
    font-size: 25px;
    text-align: center;
  }

  .about-2-desc img {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .about-1-title {
    width: 90%;
  }
  .about-3-elms {
    min-height: 50vh;
  }

  .about-3-elms .elm {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 992px) {
  .about-section-2 {
    min-height: 40vh;
  }

  .about-2-content {
    min-height: calc(70vh - 100px);
    padding: 30px 0;
  }

  .about-2-title p {
    font-size: 25px;
  }

  .about-2-desc {
    margin: 0 30px;
  }
  .about-2-desc p {
    font-size: 22px;
  }

  .about-3-title p {
    font-size: 40px;
  }
  .about-3-text p {
    font-size: 25px;
  }
  .footer-content {
    padding-right: 50px;
    padding-left: 50px;
  }

  .footer-nav {
    display: none;
  }

  .footer-end {
    padding: 0 50px;
  }
}

@media screen and (max-width: 900px) {
  .header-screen {
    display: none;
  }

  .header-mobile {
    display: flex;
    padding: 20px 50px;
  }
}

@media screen and (max-width: 700px) {
  .about-section-1 {
    margin-top: 120px;
    min-height: 65vh;
  }
  .about-1-content {
    height: calc(65vh - 100px);
  }
  .about-1-desc {
    margin: 50px 0px;
    width: calc(100vw - 50px);
  }
  .footer-end {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
  }
  .about-section-2 {
    padding: 50px 50px;
  }
}

@media screen and (max-width: 600px) {
  .logo-desc p {
    display: none;
  }

  .social-links {
    flex-direction: row;
    gap: 30px;
  }
}
/* Media Queries */
