/* CSS LIGHT MODE*/
:root {
  --primary-color: #302ae6;
  --secondary-color: #536390;
  --font-color: #424242;
  --bg-color: #fff;
  --heading-color: #292922;
  --displaydark: none;
  --displaylight: block;
}
/* CSS DARK MODE */
[data-theme="dark"] {
  --primary-color: #9a97f3;
  --secondary-color: #818cab;
  --font-color: #e1e1ff;
  --bg-color: #00234c;
  --heading-color: #818cab;
  --displaydark: block;
  --displaylight: none;
}
/* font */
.textcarousel h1,
.About-us h2 {
  font-family: "poppins", sans-serif;
}
.textcarousel h4,
.textcarousel p,
.About-us p {
  font-family: "Roboto", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
}

html {
  background-color: #00234c;
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-weight: 300;
  height: 100%;
  width: 100%;
}

section {
  overflow: hidden;
}

img {
  border: none !important;
  outline: none;
}
/* Custom Navbar */
.bg-custom {
  background-color: rgba(0, 35, 76, 1) !important;
}
a.bg-custom:focus,
a.bg-custom:hover,
button.bg-custom:focus,
button.bg-custom:hover {
  background-color: #1d2124 !important;
}
/* PreLoader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: rgba(0, 35, 76, 1);
}

#logo {
  position: absolute;
  width: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: fill 1s ease forwards 3s;
}

#logo path:nth-child(1) {
  stroke-dasharray: 788px;
  stroke-dashoffset: 788px;
  animation: line-anim 2s ease forwards;
}
#logo path:nth-child(2) {
  stroke-dasharray: 367px;
  stroke-dashoffset: 367px;
  animation: line-anim 2s ease forwards 0.3s;
}
#logo path:nth-child(3) {
  stroke-dasharray: 708px;
  stroke-dashoffset: 708px;
  animation: line-anim 2s ease forwards 0.6s;
}
#logo path:nth-child(4) {
  stroke-dasharray: 788px;
  stroke-dashoffset: 788px;
  animation: line-anim 2s ease forwards 0.9s;
}
#logo path:nth-child(5) {
  stroke-dasharray: 739px;
  stroke-dashoffset: 739px;
  animation: line-anim 2s ease forwards 1.2s;
}
#logo path:nth-child(6) {
  stroke-dasharray: 523px;
  stroke-dashoffset: 523px;
  animation: line-anim 2s ease forwards 1.5s;
}

.bar-load {
  width: 100%;
  height: 2px;
  position: absolute;
  top: 63%;
  margin-left: 50vw;
  transform: translate(-50%, -50%);
  background-color: #fff;
  animation: draw-line 5s forwards;
}

@keyframes draw-line {
  0% {
    width: 0vw;
  }
  50% {
    width: 50vw;
    border-left: 1px solid white;
  }
  100% {
    width: 100vw;
    border-right: 1px solid white;
  }
}

@keyframes line-anim {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes fill {
  from {
    fill: transparent;
  }
  to {
    fill: white;
  }
}

.text-uppercase,
p,
a,
.copyright {
  color: var(--font-color);
}

.scroll-down {
  height: 50px;
  width: 30px;
  border: 2px solid white;
  position: absolute;
  left: 50%;
  bottom: 20px;
  border-radius: 50px;
  cursor: pointer;
}

.scroll-down::before,
.scroll-down::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  border: 2px solid white;
  height: 10px;
  width: 10px;
  transform: translate(-50%, -100%) rotate(45deg);
  border-top: transparent;
  border-left: transparent;
  animation: scroll-down 1.5s ease-in-out infinite;
}

.scroll-down::after {
  top: 30%;
  animation-delay: 0.3s;
}

@keyframes scroll-down {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 90%;
  }
}

.Main {
  width: 100%;
  background-color: #00234c;
  overflow: hidden;
}

.vrweb {
  background-color: #00234c;
  /* background-image: url("Assets/images//Top-vr.svg"); */
  overflow: hidden;
  width: 100%;
  background-size: cover;
  padding-bottom: 5%;
}

.vrweb-zoom img {
  width: 100%;
}

.vrweb-zoom {
  display: block;
  margin-top: 5%;
  width: 100%;
  height: px;
  object-fit: cover;
  opacity: 0;
  transition: 1s ease-in;
  transform: scale(1);
}

.vrweb-zoom.zoom {
  opacity: 1;
  transform: scale(1.3);
}

/* Navbars */
.logonavbar {
  width: 75px;
}

.navbar-nav li {
  padding: 0.5rem;
}

form .login__button {
  color: #fff;
}

form .login__button:hover {
  color: coral;
}

.home-tag::before {
  content: "";
  position: absolute;
  display: flex;
  background-color: white;
  width: 23px;
  height: 3px;
  top: 70px;
}

/* Carousel */

.carousel1 {
  background-image: url("./Assets/images/CarouselBackground.svg");
  /* background-position: center; */
  background-repeat: no-repeat;
  background-size: cover;
  /* background-color: #00234c; */
}
.insidecarousel {
  height: auto;
  width: 100%;
  padding-top: 10%;
  display: flex;
  margin-bottom: 10%;
}
.textcarousel {
  width: 55%;
  color: white;
  margin-left: 15%;
  text-align: justify;
}

.joincarousel {
  background-color: white;
  padding: 2%;
  border-radius: 5px;
  color: #00234c;
}
.joincarousel:hover {
  opacity: 0.8;
  text-decoration: none;
}
.imagecarousel {
  width: 45%;
  margin-top: auto;
  margin-bottom: auto;
}
.imagecarousel img {
  width: 75%;
}
.imagetopcarousel {
  display: none;
}
@media (max-width: 827px) {
  .insidecarousel {
    display: block;
    margin-bottom: 20%;
  }
  .textcarousel {
    width: 100%;
    text-align: center;
    margin-left: 0;
  }
  .textcarousel p {
    margin-left: 10%;
    margin-right: 10%;
  }
  .textcarousel h1,
  .textcarousel h4,
  .textcarousel p {
    font-size: 100%;
  }
  .imagecarousel {
    display: none;
  }
  .imagetopcarousel {
    display: block;
    text-align: center;
  }
  .imagetopcarousel img {
    width: 55%;
  }
}
.left {
  width: 50%;
}
.right {
  width: 50%;
}
.itemdata {
  width: 80%;
}
/* image2vr */
.image2vr {
  overflow: hidden;
  display: unset;
}
.image2vr img {
  width: 100%;
  background: #00234c;
  border: none !important;
  image-rendering: auto;
}

/* Footer */
.footer {
  background-color: #00234c;
  height: 100%;
  width: 100%;
}

.footer__center .list-unstyled li a {
  color: white;
  font-size: 1.25rem;
}

.footer__copyright span {
  font-size: 1.2rem;
  color: #fff;
}

.footer__copyright a {
  font-size: 1.2rem;
  color: #fff;
  white-space: 0.5rem;
}

.footer__copyright a:hover {
  text-decoration: none;
  color: #302ae6;
  transition: all 1s ease-in;
}

.logo-footer {
  display: block;
  margin-left: 0;
  max-width: 100%;
  height: auto;
}

.t-none {
  text-decoration: none;
}
/* ABOUT US */
.About-us {
  height: auto;
  background-color: #00234c;
  background-image: url("aboutusbackground.svg");
  background-size: cover;
  color: rgb(206, 194, 194);
}

.image-about-us {
  width: 100%;
  position: absolute;
  object-fit: cover;
  display: block;
}

.image-about-us img {
  width: 100%;
}

.btn {
  border-radius: 0;
  border: 2.5px solid #fff;
  padding: 0.3rem 1.5rem;
}

p {
  color: rgb(219, 219, 219);
}
/* OUR LOCATION */
.our-location {
  width: 100%;
  height: fit-content;
  padding: 4rem 0px;
}

.our-location .content {
  margin-top: 2rem;
  font-style: bold;
}
.our-location .container h1 {
  text-align: left;
  font-size: 3.5rem;
}

.our-location .content h2 {
  font-size: 2.5rem;
  text-align: left;
  margin-bottom: 0.5rem;
}

.our-location .line {
  display: flex;
  height: 4px;
  width: 500px;
  background-color: black;
  border-radius: 150px;
}

/* Pattern */
.pattern {
  width: 100%;
  height: 100%;
}

.pattern img {
  width: 100%;
  height: 100%;
  top: -185px;
  position: relative;
}

/* COntact US */
.contact-us > div > h1 {
  font-size: 3.5rem;
}

.contact-us .info {
  width: 100%;
  background: #fff;
}

.contact-us .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}

.contact-us .php-email-form {
  width: 100%;
  height: 100%;
  background: #fff;
}

.contact-us .php-email-form input,
.contact-us .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
  background: rgb(231, 231, 231);
}

.contact-us .php-email-form textarea {
  resize: none;
}

.contact-us .php-email-form input:focus,
.contact-us .php-email-form textarea:focus {
  border-color: #f04d30;
}
.contact-us .php-email-form input {
  height: 50px;
}
.contact-us .php-email-form textarea {
  padding: 10px 12px;
}
.contact-us .php-email-form button[type="submit"] {
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
  background-color: #043670;
}
.contact-us .php-email-form button[type="submit"]:hover {
  background: #285fd5;
}

.line-contact {
  display: flex;
  height: 3px;
  width: 100px;
  margin-left: 15px;
  background-color: black;
  border-radius: 150px;
  top: -10px;
}

.get-in-touch-info {
  width: 100%;
}

.get-in-touch-info .info-title {
  font-size: 1.1rem;
}

.get-in-touch-address p {
  font-size: 1rem;
  color: black;
}

.get-in-touch-address i {
  color: #043670;
  font-size: 2rem;
  border-radius: 4px;
}
.contactperson {
  text-align: center;
  align-items: center;
}
.allcontact {
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.get-in-touch-addressbottom {
  padding: 50px;
}
.get-in-touch-addressbottom p a {
  font-size: 1.5rem;
  color: black;
  text-decoration: none;
}
.get-in-touch-addressbottom p a:hover {
  color: rgb(99, 99, 99);
}

.get-in-touch-addressbottom i {
  color: #043670;
  font-size: 3rem;
  border-radius: 4px;
  margin-left: auto;
  margin-right: auto;
}
/* Partners CSS */
.our-partners > div > h1 {
  font-size: 3.5rem;
  text-align: left;
}

.our-partners .line-sponsor {
  display: flex;
  padding-left: 8.5rem;
  border-top: 4px solid black;
  margin-bottom: 3%;
}
/* @media (max-width: 767px){
	.smallsponsor{
		width: 20%;
	}
	.mediumsponsor{
		width: 100%;
	}
} */
.outerlayer {
  background-color: rgba(244, 244, 242, 1);
}
.sponsoritem {
  width: 80%;
  align-content: center;
  margin-left: auto;
  margin-right: auto;
}
.sponsoritem h2 {
  text-align: center;
}
.largesponsorlist {
  display: flex;
}
.largesponsor {
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.img-fluid {
  margin-left: auto;
  margin-right: auto;
}
.mediumsponsorlist {
  display: flex;
}
.mediumsponsor {
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.smallsponsorlist {
  display: flex;
}
.smallsponsor {
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.mediapartner {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10%;
}
.mediapartner h2 {
  text-align: center;
}
.mediapartitem4 {
  display: flex;
  margin-top: 3%;
}
.itemmediapart {
  width: 100%;
}
.itemmediapart {
  margin-top: auto;
  margin-bottom: auto;
  text-align: center;
}
@media (max-width: 767px) {
  .our-partners > div > h1 {
    font-size: 2rem;
  }
  .allsponsormedia {
    display: block;
  }
  .sponsoritem {
    width: 80%;
  }
  .mediapartner {
    width: 80%;
  }
  .mediapartitem4 {
    display: block;
  }
  .itemmediapart {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 992px) {
  .mediapartitem4 {
    display: block;
  }
  .itemmediapart {
    margin-top: 5%;
    width: 40%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 500px) {
  .itemmediapart {
    margin-top: 5%;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}
/* Our Locations */

.gmap-wrapper {
  filter: grayscale(1);
}

.gmap-wrapper:hover {
  filter: none;
  transition: all 0.5s ease-in;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 99999;
}

.back-to-top i {
  font-size: 2rem;
  padding: 3px;
  width: 100px;
  height: 100px;
  border-radius: 0.25rem;
  background-color: #5da8ff;
  color: #00234c;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background-color: rgba(0, 128, 128, 0.514);
  color: white;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #00234c;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Control */
@media screen and (min-width: 1200px) {
  .pattern img {
    width: 100%;
    height: 100%;
    top: -220px;
    position: relative;
  }
}

@media screen and (min-width: 1000px) {
  .our-location iframe {
    width: 400px;
    height: 400px;
  }
  .our-location .line {
    display: flex;
    height: 4px;
    width: 400px;
    background-color: black;
    border-radius: 150px;
  }
}

@media screen and (max-width: 992px) {
  .home-tag::before {
    content: "";
    position: absolute;
    display: none;
    background-color: white;
    width: 23px;
    height: 3px;
    top: 62px;
  }

  .our-location .container h1 {
    font-size: 3.2rem;
  }

  .our-location .content h2 {
    font-size: 2.2rem;
  }
  .our-location iframe {
    width: 300px;
    height: 350px;
  }

  .our-location .line {
    display: flex;
    height: 4px;
    width: 300px;
    background-color: black;
    border-radius: 150px;
  }

  .scroll-down {
    display: none;
  }
  .pattern img {
    width: 100%;
    height: 100%;
    top: -120px;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .our-location .container h1 {
    font-size: 2.8rem;
  }
  /* .our-location .content {
     margin-left: 10%; 
  } */
  .our-location .content div:nth-child(2) {
    margin-top: 3rem;
  }
  .our-location iframe {
    width: 400px;
    height: 450px;
  }

  .our-location .line {
    display: flex;
    height: 4px;
    width: 400px;
    background-color: black;
    border-radius: 150px;
  }

  .get-wrapper {
    margin-top: 2rem;
  }

  .gmap-wrapper {
    filter: none;
  }

  .scroll-down {
    display: none;
  }

  .pattern img {
    width: 100%;
    height: 100%;
    top: -120px;
    position: relative;
  }
}
@media screen and (max-width: 576px) {
  .our-location iframe {
    width: 300px;
    height: 300px;
  }

  .our-location .line {
    display: flex;
    height: 4px;
    width: 300px;
    background-color: black;
    border-radius: 150px;
  }

  .pattern img {
    width: 100%;
    height: 100%;
    top: -90px;
    position: relative;
  }
}
@media (max-width: 767px) {
  .logo-footer {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 767px) {
  .mb-md-0,
  .my-md-0 {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 480px) {
  .home-tag::before {
    display: none;
  }
  .allcontact {
    display: block;
  }
  .media-img img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }

  .our-location .content {
    margin-left: 0%;
  }
  .our-location .container h1 {
    font-size: 2.5rem;
  }

  .our-location .content h2 {
    font-size: 1.5rem;
  }

  .our-location .line {
    display: flex;
    height: 4px;
    width: 300px;
    background-color: black;
    border-radius: 150px;
  }

  .scroll-down {
    display: none;
  }

  .pattern img {
    width: 100%;
    height: 100%;
    top: -80px;
    position: relative;
  }
}
.beforeitem::before {
  display: none;
}
/* FAQ */
.faqtitle {
  color: rgba(0, 5, 36, 1);
  font-size: 300%;
  font-weight: bold;
}
.question {
  background-color: rgba(0, 5, 36, 0.04);
  border-left: 5px solid black;
  padding: 2%;
  font-size: 150%;
  margin-top: auto;
  margin-bottom: auto;
  color: rgba(0, 35, 76, 1);
}
.answer {
  border-left: 5px solid rgba(117, 117, 115, 1);
  padding: 2%;
  font-size: 150%;
  margin-top: auto;
  margin-bottom: auto;
  color: rgba(117, 117, 115, 1);
}
.question p {
  margin-top: auto;
  margin-bottom: auto;
  color: rgba(0, 35, 76, 1);
}
.answer p {
  margin-top: auto;
  margin-bottom: auto;
  color: rgba(0, 0, 0, 0.54);
}
.QA {
  font-size: 200%;
  margin-right: 5%;
}

/* FAQ COLAPSE */
.collapsible-link::before {
  content: "";
  width: 14px;
  height: 2px;
  background: #333;
  position: absolute;
  top: calc(50% - 1px);
  right: 1rem;
  display: block;
  transition: all 0.3s;
}

/* Vertical line */
.collapsible-link::after {
  content: "";
  width: 2px;
  height: 14px;
  background: #333;
  position: absolute;
  top: calc(50% - 7px);
  right: calc(1rem + 6px);
  display: block;
  transition: all 0.3s;
}

.collapsible-link[aria-expanded="true"]::after {
  transform: rotate(90deg) translateX(-1px);
}

.collapsible-link[aria-expanded="true"]::before {
  transform: rotate(180deg);
}
@media (max-width: 827px) {
  .faqtitle {
    font-size: 200%;
  }
  .answer p {
    font-size: 90%;
  }
  .question p {
    font-size: 90%;
  }
}
.AfterMovie {
  background-color: #00234c;
}
