/* ---------------- Basic css ------------------ */

html {
  font-size: 62.5%;
}

:root {
  scroll-behavior: unset;
  --Archivo: "Archivo", sans-serif;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}
main {
  overflow: hidden;
}
ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  transition: 200ms;
  color: inherit;
  display: block;
}
a:hover {
  color: #7e7e7e;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: none;
}
/* body */
body {
  font-size: 1.4rem;
  font-style: normal;
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  line-height: 1.25;
  min-height: 100vh;
  letter-spacing: -0.16px;
  color: #fff;
  background: #000000;
}

.container {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

/* Title */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Archivo", sans-serif;
}
/* Default Css */
.bdr_white {
  background: #ffffff;
  color: #000000;
}
.title_md {
  color: #000000;
  font-size: 3.9rem;
  font-weight: 900;
  padding-bottom: 4rem;
}
.text_md {
  color: #000000;
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 3.45rem;
}
.color_gray {
  color: #737373;
}
a.color_gray:hover {
  color: #ffffff;
}
.link {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 500;
  line-height: normal;
  border-bottom: 1px solid #ffffff;
  display: inline-block;
}

.link:hover {
  border-color: #737373;
}
.button {
  background: #fff;
  display: inline-flex;
  height: 6rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0rem 0rem 0rem 0.1rem rgba(0, 0, 0, 0.1);
  border-radius: 10rem;
  padding: 0 9rem 0 5rem;
}
.button:hover {
  box-shadow: 0.3rem 0.5rem 1.5rem 0.1rem rgba(0, 0, 0, 0.1);
  color: #000;
}
.btninner {
  position: relative;
  align-items: center;
  justify-content: center;
  display: flex;
  text-transform: uppercase;
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
  transform: translateY(1px);
}
.btnimg {
  width: 2.5rem;
  position: absolute;
  right: -4rem;
  transition: 0.3s;
  transform: translateY(-1px);
}
.button:hover .btnimg {
  right: -5rem;
}

/* -------------- Hamburger -------------- */
.hamburger {
  display: none;
}
#hamburger-6.is-active {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  position: relative;
  top: -0.5rem;
}

#hamburger-6.is-active .line:nth-child(2) {
  width: 0px;
}

#hamburger-6.is-active .line:nth-child(1),
#hamburger-6.is-active .line:nth-child(3) {
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

#hamburger-6.is-active .line:nth-child(1) {
  -webkit-transform: translateY(13px);
  -ms-transform: translateY(13px);
  -o-transform: translateY(13px);
  transform: translateY(13px);
}

#hamburger-6.is-active .line:nth-child(3) {
  -webkit-transform: translateY(-1px) rotate(90deg);
  -ms-transform: translateY(-1px) rotate(90deg);
  -o-transform: translateY(-1px) rotate(90deg);
  transform: translateY(-1px) rotate(90deg);
}
.hamburger .line {
  width: 28px;
  height: 2px;
  background-color: #ecf0f1;
  display: block;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hamburger:hover {
  cursor: pointer;
}
/* -------------- preloader --------------- */

#preloader {
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader3 {
  width: 5rem;
  height: 5rem;
  display: inline-block;
  padding: 0;
  text-align: left;
}

.loader3 span {
  position: absolute;
  display: inline-block;
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  background: #000000;
  animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  0% {
    transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* ---------------- Header ------------------ */
.site_header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1024;
  width: 100%;
  height: 8rem;
  display: flex;
  align-items: center;
  background: #000000;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.primary_menu {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.logo img {
  width: 32rem;
}
.primary_menu a {
  font-weight: 600;
  font-size: 1.5rem;
}

/* ---------------- Hero Section ------------------ */
.hero_img img {
  width: 100%;
  /*height: 50rem;*/
  height: 50vh;
  object-fit: cover;
}

/* ---------------- About Section ------------------ */
.about_section .row {
  align-items: center;
}
.about_text h4 {
  color: #ffffff;
  font-size: 2.9rem;
  font-weight: 700;
  padding-bottom: 4rem;
  line-height: 4.5rem;
  white-space: nowrap;
}
.about_text {
  background: #000000;
  padding: 4.5rem 4rem;
  position: relative;
  top: -8rem;
  width: fit-content;
  margin-left: auto;
}
.about_section .button {
  float: right;
  margin-right: 3rem;
}

/* ---------------- Sponsor Section ------------------ */
.sponsor_section {
  padding: 12rem 0;
}
.sp_col {
  justify-content: space-between;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.sp_col a img {
  width: 85%;
}
.sp_col img {
  transition: 0.2s;
}
.sp_col img:hover {
  transform: scale(1.05);
}
.sp_col a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sponsor_logos {
  display: grid;
  gap: 4rem;
}
.sp_col1 a:nth-child(1) img {
  width: 13rem;
}
.sp_col1 a:nth-child(2) img {
  width: 11rem;
}
.sp_col1 a:nth-child(2) {
  justify-content: flex-start;
  margin-left: 6rem;
}
.sp_col1 a:nth-child(3) {
  justify-content: flex-start;
  left: -1rem;
}
.sp_col1 a:nth-child(4) img {
  width: 20rem;
}
.sp_col2 a:nth-child(1) img {
  width: 14rem;
}
.sp_col2 a:nth-child(2) img {
  width: 20rem;
}
.sp_col2 a:nth-child(3) img {
  width: 20rem;
}
.sp_col2 a:nth-child(4) img {
  width: 24rem;
}
.sp_col3 a:nth-child(1) img {
  width: 15rem;
  margin-left: 1rem;
}
.sp_col3 a:nth-child(2) img {
  width: 17rem;
}
.sp_col3 a:nth-child(3) img {
  margin-left: 1.5rem;
  width: 24rem;
}
.sp_col3 a:nth-child(3) {
  justify-content: flex-start;
}
.sp_col1 a:nth-child(3) img {
  width: 25rem;
}
.sp_col3 a:nth-child(4) img {
  width: 21rem;
  margin-left: 1rem;
}
.sp_col4 a:nth-child(1) img {
  width: 18rem;
  margin-left: 2rem;
}

.sp_col4 a:nth-child(2) img {
  width: 17rem;
}

.sp_col4 a:nth-child(2) {
  justify-content: flex-end;
  margin-right: 2rem;
}

.sp_col4 a:nth-child(3) img {
  width: 19rem;
}

.sp_col4 a:nth-child(4) img {
  width: 11rem;
}

.sp_col5 a:nth-child(1) img {
  width: 16rem;
}

.sp_col5 a:nth-child(4) img {
  width: 16rem;
}

.sp_col5 a:nth-child(3) img {
  width: 21rem;
}

.sp_col6 a:nth-child(1) img {
  width: 20rem;
  margin-left: 2rem;
}

.sp_col5 a:nth-child(2) img {
  width: 22rem;
}

.sp_col6 a:nth-child(2) img {
  width: 22rem;
  margin-left: 5rem;
}

.sp_col6 a:nth-child(3) img {
  width: 19rem;
}

.sp_col6 a:nth-child(4) img {
  width: 19rem;
}

.sp_col6 a:nth-child(4) {
  justify-content: flex-start;
  margin-left: 3rem;
}

.sp_col7 a:nth-child(1) img {
  width: 26rem;
  margin-left: 4rem;
}

.sp_col7 a:nth-child(2) img {
  width: 15rem;
}

.sp_col7 a:nth-child(2) {
  justify-content: flex-end;
  margin-right: 2rem;
}

.sp_col7 a:nth-child(3) img {
  width: 20rem;
}

.sp_col7 a:nth-child(3) {
  justify-content: flex-end;
}

.sp_col7 a:nth-child(4) img {
  width: 17rem;
}

.sp_col7 a:nth-child(4) {
  justify-content: flex-end;
  margin-right: 4rem;
}

/* ---------- TimeLine Image ---------- */
.timeline_section .text_content {
  padding-top: 11rem;
}
.timeline_img img {
  width: calc(100% + 5rem);
}
.title_lg {
  font-size: 5.5rem;
  font-weight: 700;
  padding-bottom: 2rem;
}
.middle_row .timeline_img img {
  position: relative;
  left: -5rem;
}
.middle_row {
  padding: 5rem 0;
}

/* --------- Service Section --------- */
.service_section {
  padding-bottom: 5rem;
  background: url(../img/service_bg.png) no-repeat scroll bottom right / contain;
}

.title_sm {
  font-size: 3.224rem;
  font-weight: 700;
  padding-bottom: 1rem;
}
.text_sm {
  font-size: 1.8rem;
  font-weight: 400;
}
.service_section .row {
  gap: 4rem 0;
}

/* --------- About Two --------- */
.about_section2 {
  padding-bottom: 10rem;
  padding-top: 6rem;
}
.about_section2 .row {
  align-items: flex-start;
}
.about2_img img {
  width: 35rem;
}
.about2_img {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 8rem;
}
.about_section2 .title_md {
  padding-bottom: 3rem;
}

/* --------- InnerHero --------- */
.InnerHero {
  position: relative;
  height: 29.5rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.InnerHero img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}
.inner_title {
  position: relative;
  font-size: 3.2rem;
  font-weight: 700;
}

/* --------- Inner Sponsor --------- */
.Isponsor_box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.ISponsor .innerimg {
  width: 100%;
  height: 32rem;
}
.ISponsor {
  display: flex;
  position: relative;
  overflow: hidden;
}
.ISponsor .innerimg {
  transition: 0.3s;
}
.ISponsor:hover .innerimg {
  opacity: 0.9;
}
.innerlogo {
  position: absolute;
  width: 20rem;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}
.img_w_30 {
  width: 30rem;
}
.col_mid {
  padding: 0 0.2rem;
}
.sp_pl_2 {
  padding-left: 0.2rem;
}
.sp_boxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.2rem;
}
.isp_title {
  font-size: 3.9rem;
  font-weight: 800;
  color: #000;
}

.sp_boxes1 a:nth-child(1) .innerlogo {
  width: 31rem;
}

.sp_boxes1 a:nth-child(2) .innerlogo {
  width: 25rem;
}

.sp_boxes1 a:nth-child(3) .innerlogo {
  width: 30rem;
}

.sp_boxes1 a:nth-child(4) .innerlogo {
  width: 32rem;
}

.sp_boxes2 a:nth-child(1) .innerlogo {
  width: 28rem;
}

.sp_boxes2 a:nth-child(2) .innerlogo {
  width: 22rem;
}

.sp_boxes2 a:nth-child(3) .innerlogo {
  width: 18rem;
}

.sp_boxes2 a:nth-child(4) .innerlogo {
  width: 28rem;
}

.sp_boxes2 a:nth-child(5) .innerlogo {
  width: 28rem;
}

.sp_boxes3 a:nth-child(1) .innerlogo {
  width: 15rem;
}

.sp_boxes3 a:nth-child(2) .innerlogo {
  width: 32rem;
}

.sp_boxes3 a:nth-child(3) .innerlogo {
  width: 28rem;
}

.sp_boxes3 a:nth-child(4) .innerlogo {
  width: 28rem;
}

.sp_boxes3 a:nth-child(5) .innerlogo {
  width: 31rem;
}

.sp_boxes3 a:nth-child(6) .innerlogo {
  width: 31rem;
}

.sp_boxes4 a:nth-child(1) .innerlogo {
  width: 31rem;
}

.sp_boxes5 a:nth-child(1) .innerlogo {
  width: 29rem;
}

.sp_boxes5 a:nth-child(2) .innerlogo {
  width: 32rem;
}

.sp_boxes5 a:nth-child(3) .innerlogo {
  width: 25rem;
}

.sp_boxes5 a:nth-child(4) .innerlogo {
  width: 29rem;
}
.sp_boxes6 a:nth-child(1) .innerlogo {
  width: 31rem;
}

.sp_boxes6 a:nth-child(2) .innerlogo {
  width: 31rem;
}

.sp_boxes6 a:nth-child(3) .innerlogo {
  width: 28rem;
}

.sp_boxes6 a:nth-child(4) .innerlogo {
  width: 26rem;
}

.sp_boxes6 a:nth-child(5) .innerlogo {
  width: 29rem;
}

.sp_boxes6 a:nth-child(6) .innerlogo {
  width: 31rem;
}

.sp_boxes7 a:nth-child(1) .innerlogo {
  width: 30rem;
}

.sp_boxes7 a:nth-child(2) .innerlogo {
  width: 28rem;
}

.sp_boxes8 a:nth-child(1) .innerlogo {
  width: 20rem;
}

.sp_boxes8 a:nth-child(2) .innerlogo {
  width: 31rem;
}

.sp_boxes8 a:nth-child(3) .innerlogo {
  width: 29rem;
}

/* ------ Footer Section -------- */
.footer_section {
  padding: 5rem 0;
}
.footer_logo img {
  width: 28rem;
}
.f_menu {
  position: relative;
  margin: 0 auto;
  justify-content: space-between;
  gap: 6rem;
  width: 50%;
  padding: 4rem 0;
  padding-bottom: 5rem;
}
.footer_menus {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.footer_logo {
  display: flex;
  justify-content: center;
}

.copywrite p {
  font-size: 1.3rem;
  font-weight: 400;
}

.copywrite {
  display: flex;
  justify-content: center;
}
.f_menu a {
  font-weight: 400;
  padding-left: 0;
  white-space: nowrap;
}
.f_menuall {
  justify-content: space-between;
  width: 100%;
  padding: 0 5rem;
}
.f_menuinner {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.goodie {
  font-size: 18px;
  display: inline-block;
  background: #292929;
  color: #ededed;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  transition: 0.3s;
  width: 20%;
}

.video-background-holder {
  position: relative;
  background-color: black;
  padding: 120px 0;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.video-background-holder video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.video-background-content {
  position: relative;
  z-index: 2;
}

.video-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.5;
  z-index: 1;
}
