* {
  box-sizing: border-box;
  font-family: "Cinzel", serif;
}

body {
  background-color: #a2a8d3;
  overflow: visible;
  margin: 0 0;
}
main {
  margin: auto 10%;
}
.first-color {
  background: #e7eaf6;
}

.second-color {
  background: #a2a8d3;
}

.third-color {
  background: #38598b;
}

.fourth-color {
  background: #113f67;
}
.text-color {
  color: #f5eb14;
}

.logo {
  width: 100px;
  float: left;
}
header {
  position: sticky;
  top: 0;
  left: auto;
  right: auto;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  background-color: none;
  z-index: 99;

  background-size: cover;
}
.navbar {
  background-color: #113f67;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  border-radius: 1em;
  text-align: center;
  display: flex; /* Changed from table to flex */
  padding: 10px 20px; /* Added padding to create space within the navbar */
  width: 80%;
  margin: auto;
}

.nav-links a {
  text-decoration: none;
  color: #f5eb14;
  padding: 0 20px;
  display: inline-block;
  line-height: 100px;
  font-size: large;
}

.logodiv {
  align-items: center;
  display: contents;
}
.lion {
  display: block;
  width: 100%;
  position: relative;
  top: -10px;
}
.container {
  width: 80%;
  margin: auto;
  background-color: #e7eaf6;
}
.navtitle {
  color: #f5eb14;
  font-size: x-large;
  font-weight: bold;
  text-decoration: none;
}

.contactBox {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#message {
  min-width: 425px;
  min-height: 390px;
}
.getinvolved {
  background-color: #113f67;
  color: #f5eb14;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
  display: block;
}
.getinvolved:hover {
  background-color: #38598b;
  cursor: pointer;
}

h1 {
  text-align: center;
}

h2 {
  text-align: center;
}

.home {
  display: none !important;
}
footer {
  background-color: #113f67;
  color: #f5eb14;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  justify-content: space-between;
}
.submit {
  background-color: #113f67;
  color: #f5eb14;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  margin: 10px auto;
  display: block;
}
.submit:hover {
  background-color: #38598b;
  cursor: pointer;
  box-shadow: #a2a8d3 0 0 10px 0;
}
footer a {
  color: #f5eb14;
  text-decoration: none;
  font-weight: bold;
  padding: 2px 10px;
}
footer a:hover {
  text-shadow: #a2a8d3 10px 10px 10px;
  cursor: pointer;
}
#name,
#email,
#message {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #38598b;
  margin-bottom: 10px;
  resize: none;
}

.image-contianer {
  position: relative;
  text-align: center;
}
.image-contianer .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #113f67;
  font-size: 3em;
  font-weight: bold;
  text-shadow: #a2a8d3 0px 0px 10px;
}
/* Logo */
.image-contianer .top-logo {
  max-width: 300px;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: -1;
  stroke: black;
  stroke-width: 1;
  animation: normal 2.2s logo-down linear;
}
.CAS-group {
  width: 100%;
}
.CAS-group img {
  position: absolute;
  max-width: 20%;
  top: 55%;
  left: 40%;
  z-index: -3;
}
/* group of photos */

.kyrgyzman {
  transform: translate(-140%, -10%);
}
.kazakhgirl {
  transform: translate(-70%, 0%);
  z-index: -2 !important;
}

.uzbekman {
  transform: translate(0%, 0%);
  z-index: -1 !important;
}
.tajikgirl {
  transform: translate(70%, 0%);
  z-index: -2 !important;
}

.turkmenmen {
  transform: translate(140%, 0%);
}
.video {
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

/* logo antimation */
@keyframes logo-down {
  0% {
    top: 16%;
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    top: 25%;
    filter: blur(0);
    opacity: 1;
  }
}

/* blur antimation effect */
.blur-in {
  animation: blur-in 2.2s linear both;
}
@keyframes blur-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}

.tracking-in-contract {
  animation: tracking-in-contract 1.4s linear both;
}
@keyframes tracking-in-contract {
  0% {
    letter-spacing: 0.3em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    letter-spacing: normal;
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .home {
    display: block !important;
  }
  .logo {
    display: none !important;
  }
  .navtitle {
    display: none !important;
  }
}
