@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: Inter;
  text-decoration: none;
}

.nav-in {
  display: flex;
  width: 100%;
  max-width: 85%;
  margin: 0 auto;
}
.nav-in img {
  width: 100px;
  height: 100px;
}
.nav-in img:nth-child(2) {
  width: 130px;
  height: 100px;
}
.nav-in nav {
  flex: 1;
}
.nav-in nav .overlay {
  flex: 1;
  text-align: right;
  margin-right: 0;
  margin-top: 40px;
  cursor: pointer;
}
.nav-in nav .overlay p {
  font-size: 20px;
}

@media (max-width: 600px) {
  .nav-in {
    max-width: 90%;
  }
  .nav-in img {
    width: 80px;
    height: 80px;
  }
  .nav-in img:nth-child(2) {
    width: 100px;
    height: 80px;
  }
  .nav-in nav .overlay {
    flex: 1;
    text-align: right;
    margin-right: 5%;
    margin-top: 30px;
  }
}
@media (max-width: 500px) {
  .nav-in {
    max-width: 100%;
  }
  .nav-in img {
    width: 70px;
    height: 70px;
  }
  .nav-in img:nth-child(2) {
    width: 80px;
    height: 70px;
  }
  .nav-in nav .overlay {
    flex: 1;
    text-align: right;
    margin-right: 5%;
    margin-top: 27px;
  }
  .nav-in nav .overlay p {
    font-size: 14px;
  }
}
@media (max-width: 380px) {
  .nav-in {
    max-width: 100%;
  }
  .nav-in img {
    width: 50px;
    height: 50px;
  }
  .nav-in img:nth-child(2) {
    width: 60px;
    height: 50px;
  }
  .nav-in nav .overlay {
    flex: 1;
    text-align: right;
    margin-right: 5%;
    margin-top: 18px;
  }
  .nav-in nav .overlay p {
    font-size: 14px;
  }
}
/*//////////////////////////////////////
//////////// header slider starts//////////
////////////////////////////////////// */
.swiper-container2 {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-backslide img {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.mySwiper .header__back {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  opacity: 0.5;
  z-index: 5;
}

.mySwiper .header__title {
  position: absolute;
  text-align: center;
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
  font-size: 25px;
  font-weight: 800;
  top: 5%;
  color: white;
  z-index: 9;
}

.mySwiper .header__title h1 {
  font-size: 35px;
}

.mySwiper .header__title-bottom {
  position: absolute;
  text-align: center;
  width: 100%;
  max-width: 85%;
  margin: 0 auto;
  font-size: 25px;
  font-weight: 400;
  top: 78%;
  color: white;
  z-index: 9;
}

.mySwiper .header__title-bottom h1 {
  font-size: 35px;
}

@media (max-width: 1000px) {
  .mySwiper .header__title {
    max-width: 90%;
  }

  .mySwiper .header__title h1 {
    font-size: 28px;
  }

  .mySwiper .header__title-bottom h1 {
    font-size: 28px;
  }
}
@media (max-width: 800px) {
  .mySwiper .header__title {
    max-width: 90%;
  }

  .mySwiper .header__title h1 {
    font-size: 28px;
  }

  .mySwiper .header__title-bottom h1 {
    font-size: 28px;
  }
}
@media (max-width: 650px) {
  .mySwiper .header__title h1 {
    font-size: 20px;
  }

  .mySwiper .header__title-bottom h1 {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  .mySwiper .header__title h1 {
    font-size: 18px;
  }

  .mySwiper .header__title-bottom h1 {
    font-size: 18px;
  }
}
@media (max-width: 380px) {
  .mySwiper .header__title h1 {
    font-size: 14px;
  }

  .mySwiper .header__title-bottom h1 {
    font-size: 14px;
  }
}
/*  header slider end */

/*  video card start */
.video > iframe {
  max-width: 90%;
  margin: 50px auto;
  height: 600px;
  display: block;
  width: 100%;
}
@media (max-width: 800px) {
  .video > iframe {
    height: 470px;
  }
}
@media (max-width: 600px) {
  .video > iframe {
    height: 400px;
  }
}
@media (max-width: 500px) {
  .video > iframe {
    height: 380px;
  }
}
@media (max-width: 400px) {
  .video > iframe {
    height: 360px;
  }
}
@media (max-width: 380px) {
  .video > iframe {
    height: 350px;
  }
}

/*  video card end */

.about-us {
  display: flex;
}
.about-us .image {
  background-image: url(../img/2K2A5268-min.JPG);
  width: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 20%;
}
.about-us .info {
  width: 50%;
  background: #2f4282;
}
.about-us .info h1 {
  text-align: center;
  font-size: 44px;
  font-family: "Roboto";
  color: #f5ffe5;
  margin: 15px;
}
.content {
  width: 100%;
  margin-bottom: 22px;
}
.content .content-info {
  display: flex;
  width: 100%;
  margin-top: 32px;
}
.content-info .spn {
  font-size: 42px;
  font-weight: 600;
  font-family: "Roboto";
  background: #ffdc79;
  border-radius: 50%;
  padding: 20px 34px;
  border: none;
  color: #003399;
  margin: 0 34px;
}
.content-info .spn-four {
  padding-top: 25px;
}
.content-info h3 {
  width: 100%;
  font-weight: 400;
  font-size: 28px;
  font-family: "Roboto";
  color: #f5ffe5;
  padding-top: 8px;
}
@media (max-width: 1200px) {
  .info h1 {
    font-size: 32px;
  }
  .content-info .spn {
    padding: 15px 25px;
    font-size: 34px;
  }
  .content-info h3 {
    font-size: 18px;
  }
  .content .content-info {
    margin-top: 22px;
  }
}
@media (max-width: 816px) {
  .info {
    padding: 20px 0;
  }
  .info h1 {
    margin-top: 0;
  }
  .about-us {
    display: block;
  }
  .about-us .image {
    width: 100%;
    height: 550px;
  }
  .about-us .info {
    width: 100%;
  }
  .content-info h3 {
    font-size: 24px;
  }
}
@media (max-width: 574px) {
  .content-info h3 {
    font-size: 18px;
  }
}
@media (max-width: 574px) {
  .info h1 {
    font-size: 24px;
  }
  .content-info .spn {
    padding: 15px 25px;
    font-size: 28px;
  }
  .content-info h3 {
    font-size: 14px;
  }
  .about-us .image {
    background-position: 40%;
  }
}
/* About us ends here  */

/* Slider starts here  */

.mySlides1 {
  display: none;
}
img {
  vertical-align: middle;
}
/* Slideshow container */
.slideshow-container {
  width: 100%;
  position: relative;
  margin: 0;
}
/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: rgb(42, 131, 233);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  font-size: 80px;
}
/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
/* On hover, add a grey background color */
.prev:hover,
.next:hover {
  background-color: #f1f1f1;
  color: black;
}
@media (max-width: 991px) {
  .prev,
  .next {
    font-size: 60px;
  }
}
@media (max-width: 574px) {
  .prev,
  .next {
    font-size: 40px;
  }
}

footer {
  background: #292b2b;
}
footer .container .contact h1 {
  font-size: 35px;
  color: #ffae00;
  text-align: center;
  padding-top: 50px;
}
footer .container .contact p {
  text-align: center;
  cursor: pointer;
  color: #ffffff;
  font-size: 50px;
}
footer .container .contact p .fa-phone-square-alt {
  margin-top: 50px;
  font-size: 50px;
}
footer .social-network {
  display: flex;
  max-width: 90%;
  width: 100%;
  margin: 100px auto;
  margin-bottom: 0;
  justify-content: space-between;
}
footer .social-network .reference h3 {
  color: #ffae00;
  font-size: 25px;
}
footer .social-network .reference ul {
  text-align: center;
  margin: 50px auto;
  margin-bottom: 0;
}
footer .social-network .reference ul li {
  display: inline-block;
  font-size: 20px;
  margin-right: 50px;
  cursor: pointer;
}
footer .social-network .reference ul li a {
  color: white;
  text-decoration: none;
}
footer .social-network .reference ul li a .icon {
  text-align: center;
  display: flex;
  justify-content: center;
  cursor: pointer;
}
footer .social-network .reference ul li:last-child {
  margin-right: 0;
}
footer .social-network .adress h3 {
  color: #ffae00;
  font-size: 25px;
}
footer .social-network .adress iframe {
  margin-top: 50px;
}
.footer-bottom .link{
  text-align: center;
  color: #fff;
  font-weight: 500;
}
.footer-bottom{
  background-color: #777;
  padding: 12px 0;
}
.footer-bottom .link span{
  color: #ffae00;
}

@media (max-width: 850px) {
  footer .container .contact h1 {
    font-size: 30px;
  }
  footer .container .contact p {
    font-size: 45px;
    width: 100%;
    max-width: 90%;
  }
  footer .container .contact p .fa-phone-square-alt {
    margin-top: 50px;
    font-size: 45px;
  }
  footer .social-network {
    display: block;
  }
  footer .social-network .reference h3 {
    color: #ffae00;
    font-size: 25px;
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
  footer .social-network .reference ul {
    text-align: center;
    margin: 50px auto;
    margin-bottom: 0;
  }
  footer .social-network .reference ul li {
    font-size: 20px;
    margin-right: 40px;
  }
  footer .social-network .reference ul li .icon {
    text-align: center;
    display: flex;
    justify-content: center;
    cursor: pointer;
  }
  footer .social-network .reference ul li:last-child {
    margin-right: 0;
  }
  footer .social-network .adress {
    margin-top: 50px;
  }
  footer .social-network .adress h3 {
    color: #ffae00;
    font-size: 25px;
    text-align: center;
  }
  footer .social-network .adress iframe {
    width: 100%;
    max-width: 80%;
    height: 200px;
    margin: 50px auto;
    display: block;
    margin-bottom: 30px;
  }
}
@media (max-width: 600px) {
  footer .container .contact h1 {
    font-size: 30px;
  }
  footer .container .contact p {
    font-size: 35px;
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
  }
  footer .container .contact p .fa-phone-square-alt {
    margin-top: 50px;
    font-size: 35px;
  }
  footer .social-network {
    display: block;
  }
  footer .social-network .reference h3 {
    color: #ffae00;
    font-size: 25px;
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
  footer .social-network .reference ul {
    text-align: center;
    margin: 50px auto;
    margin-bottom: 0;
  }
  footer .social-network .reference ul li {
    font-size: 20px;
    margin-right: 40px;
  }
  footer .social-network .reference ul li .icon {
    text-align: center;
    display: flex;
    justify-content: center;
    cursor: pointer;
  }
  footer .social-network .reference ul li:last-child {
    margin-right: 0;
  }
  footer .social-network .adress {
    margin-top: 50px;
  }
  footer .social-network .adress h3 {
    color: #ffae00;
    font-size: 25px;
    text-align: center;
  }
  footer .social-network .adress iframe {
    width: 100%;
    max-width: 80%;
    height: 200px;
    margin: 50px auto;
    display: block;
    margin-bottom: 30px;
  }
}
@media (max-width: 520px) {
  footer .container .contact h1 {
    font-size: 30px;
  }
  footer .container .contact p {
    font-size: 30px;
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
  }
  footer .container .contact p .fa-phone-square-alt {
    margin-top: 50px;
    font-size: 30px;
  }
  footer .social-network {
    display: block;
  }
  footer .social-network .reference h3 {
    color: #ffae00;
    font-size: 25px;
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
  footer .social-network .reference ul {
    text-align: center;
    margin: 50px auto;
    margin-bottom: 0;
  }
  footer .social-network .reference ul li {
    font-size: 20px;
    margin-right: 40px;
  }
  footer .social-network .reference ul li .icon {
    text-align: center;
    display: flex;
    justify-content: center;
    cursor: pointer;
  }
  footer .social-network .reference ul li:last-child {
    margin-right: 0;
  }
  footer .social-network .adress {
    margin-top: 50px;
  }
  footer .social-network .adress h3 {
    color: #ffae00;
    font-size: 25px;
    text-align: center;
  }
  footer .social-network .adress iframe {
    width: 100%;
    max-width: 80%;
    height: 200px;
    margin: 50px auto;
    display: block;
    margin-bottom: 30px;
  }
}
@media (max-width: 380px) {
  footer .container .contact h1 {
    font-size: 22px;
  }
  footer .container .contact p {
    font-size: 25px;
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
  }
  footer .container .contact p .fa-phone-square-alt {
    margin-top: 50px;
    font-size: 28px;
  }
  footer .social-network {
    display: block;
  }
  footer .social-network .reference h3 {
    color: #ffae00;
    font-size: 22px;
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
  footer .social-network .reference ul {
    text-align: center;
    margin: 50px auto;
    margin-bottom: 0;
  }
  footer .social-network .reference ul li {
    font-size: 20px;
    margin-right: 40px;
  }
  footer .social-network .reference ul li .icon {
    text-align: center;
    display: flex;
    justify-content: center;
    cursor: pointer;
  }
  footer .social-network .reference ul li:last-child {
    margin-right: 0;
  }
  footer .social-network .adress {
    margin-top: 50px;
  }
  footer .social-network .adress h3 {
    color: #ffae00;
    font-size: 22px;
    text-align: center;
  }
  footer .social-network .adress iframe {
    width: 100%;
    max-width: 80%;
    height: 200px;
    margin: 50px auto;
    display: block;
    margin-bottom: 30px;
  }
}
/*# sourceMappingURL=footer.css.map */

/*# sourceMappingURL=index.css.map */
