:root {
  scroll-behavior: smooth;
  --color-white: rgba(255, 255, 255, 0.973);
  --secondary-text-color: #262645f3;
  --white-dim: rgba(255, 255, 255, 0.642);
}
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
body {
  margin: 0;
}
.header-section {
  background: url("./assets/photo-1459666644539-a9755287d6b0.png");
  height: 109vh;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 150px;
  position: relative;
  background-size: cover;
  margin-top: -8%;
}
.header-section svg {
  left: 25%;
  top: 25%;
  position: absolute;
}
.header-section::before {
  content: "";
  background: url("./assets/Layer\ 627.png");
  opacity: 0.4;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
}

.navbar {
  min-height: 4rem;
  background: rgba(255, 255, 255, 0);
  display: flex;
  z-index: 3;
  padding: 0 15rem 0 15rem !important;
  position: sticky !important;
  top: 0;
  transition: linear 150ms;
}

.nav-active {
  background: var(--color-white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.logo-text {
  margin-top: 0.5%;
  font-weight: 600;
  visibility: hidden;
  transition: linear 150ms;
}

.logo {
  background-size: contain;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-top: 1%;
  background-color: var(--color-white);
}
.logo img {
  height: 50px;
  position: relative;
  left: -4%;
  top: -5%;
  transform: scale(1.5);
}

.links {
  margin-left: auto;
  list-style-type: none;
  width: 25%;
  display: flex;
  justify-content: space-between;
}
.links li a {
  color: var(--color-white);
  text-transform: uppercase;
  font-weight: 700;
  font-style: italic;
  font-size: 12px;
  font-family: "SegoeUI";
  letter-spacing: 0.1em;
}

/* css for the carousel */
img {
  max-width: 100%;
}
.slider_wrap {
  position: relative;
}
.thumbnail_slider_area {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}

.t-text {
  top: 10%;
  z-index: 2;
  padding: 0 14rem 0 14rem;
}
.t-text h1 span {
  font-size: 20px;
  color: rgba(19, 19, 41, 0.851);
}
.t-text h1 {
  font-size: 80px;
  font-weight: 700;
  color: rgba(33, 33, 89, 0.692);
}
.t-text p {
  font-size: 15px;
  margin-left: 35px;
}
.first-text {
  position: absolute !important;
}
.second-text {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 25px;
}

.links-bar {
  display: flex;
  width: 100%;
  background: var(--secondary-text-color);
  padding: 0 14rem;
  flex-wrap: wrap;
}
.links-bar a {
  font-size: 25px;
  color: var(--white-dim) !important;
  text-transform: uppercase;
  padding-left: 3%;
  cursor: pointer;
  transition: all ease-in-out 200ms;
}
.links-bar a:hover {
  color: var(--secondary-text-color) !important;
  background-color: var(--white-dim);
  text-decoration: underline;
}
.second-page-main {
  background: url("./assets/main22.jpg");
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 80vh;
  padding-left: 26%;
  display: flex;
  align-items: center;
}
.schedule {
  display: flex;
  flex-direction: column;
  width: 34%;
  padding: 20px;
  background: var(--color-white);
}
.schedule h4 {
  font-size: 20px;
  text-transform: uppercase;
  color: var(--secondary-text-color);
}
.schedule-date {
  font-size: 13px;
  line-height: 1.7;
}

/* footer css */
footer {
  display: flex !important ;
  justify-content: space-between;
  min-height: 4rem;
  padding: 8px 15rem 0 15rem;
  background-color: var(--secondary-text-color);
  width: 100%;
  flex-wrap: wrap;
}
.footer-c1 {
  display: flex;
}
.ft-logo-text {
  color: var(--white-dim);
  font-size: 17px;
  margin-left: 7px;
  text-transform: uppercase;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.footer-c2 {
  font-size: 14px;
  text-transform: uppercase;
  padding-top: 14px;
  color: var(--white-dim);
}

@media screen and (max-width: 800px) {
  .header-section {
    height: 90vh;
  }
  .header-section::before {
    background: url("") !important;
  }
  .header-section svg {
    height: 100px;
    width: 250px;
  }
  section {
    position: relative;
  }
  .navbar,
  footer {
    padding: 0 2rem 0 2rem !important;
  }
  .links {
    margin-right: auto;
    width: 34%;
    justify-content: space-between;
  }
  .t-text {
    padding: 0 3rem;
  }
  .links-bar {
    padding: 0 3rem;
  }
  .second-text {
    padding-top: 5rem;
  }
}

@media screen and (max-width: 630px) {
  .links {
    width: 50%;
  }
  .header-section {
    margin-top: -5.3rem;
    height: 78vh;
  }
  .slider_wrap {
    height: 68.2vh;
  }
  .t-text h1 {
    font-size: 50px;
  }
  .t-text h1 span {
    font-size: 18px;
  }
  .t-text p {
    font-size: 13px;
  }
  .second-text {
    flex-direction: column;
    padding-top: 4.5rem;
    padding-bottom: 20px;
  }
  .links-bar a {
    font-size: 19px;
  }
  .schedule {
    width: 67%;
  }
  footer {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .banner_slider img {
    height: 512px;
  }
}
@media screen and (max-width: 430px) {
  .links {
    margin: 0;
    width: 53%;
  }
  .header-section svg {
    left: 17%;
  }
}
