@import url("https://fonts.googleapis.com/css2? family-Poppins: wght@300; 400; 500; 600; 700; 800; 9008 display-swap");
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;1,100&family=Edu+SA+Beginner&family=Playfair+Display&family=Tilt+Prism&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;1,100&family=Edu+SA+Beginner&family=Playfair+Display&family=Tilt+Prism&family=Ubuntu:ital,wght@1,300&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;1,100&family=Edu+SA+Beginner&family=Playfair+Display&family=Tilt+Prism&family=Ubuntu:ital,wght@1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');


/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: hsl(220, 24%, 12%);
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--white-color);
}

ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #207152;
  ;
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}

.nav__logo,
.nav__burger,
.nav__close {
  color: var(--white-color);
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__link i {
  color: #18f98f;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-weight: var(--font-semi-bold);
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}

.nav__logo img {
  width: 47vh;
  height: 40vh;
  margin-left: -20vh;
  margin-top: -8px;

}


.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger,
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }

  /* .nav__logo img {

    width: 38vh;
    height: 36vh;
    margin-left: -10vh;
    margin-top: -8px;
  } */

  .nav__menu::-webkit-scrollbar {
    width: 0;
  }

  .nav__list {
    background-color: #207152;
    ;
    padding-top: 1rem;
  }
}

.nav__link {
  color: var(--white-color);
  background-color: #207152;
  ;
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 2.5rem;
  display: flex;

  align-items: center;
  transition: background-color .3s;
}
.nav__link:hover {
  /* background-color: #5e5555; */
  color: #ed9d93;
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link,
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--white-color);
  background-color: #207152;
  ;
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color .3s;
}

.dropdown__link i,
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover,
.dropdown__sublink:hover {
  /* background-color: #5e5555; */
  color: #ed9d93;
}

.dropdown__menu,
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover>.dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: var(--black-color-lighten);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }

}

/* For large devices */
@media screen and (min-width: 1118px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }

  .nav__toggle {
    display: none;
  }

  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 2rem;
    margin-right: -30px;
  }

  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
  }



  .nav__list:hover {
    background-color: transparent;

  }

  .dropdown__item,
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu,
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
  }



  .dropdown__link,
  .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: .5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top .3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover>.dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }
}

@media screen and (max-width: 1118px) {
  .nav__logo img {

    width: 38vh;
    height: 36vh;
    margin-left: -10vh;
    margin-top: -8px;
  }
}

@media screen and (max-width: 1280px) {
  .nav__logo img {
    width: 38vh;
    height: 36vh;
    margin-left: -10vh;
    margin-top: -8px;
  }
}

@media (max-width:1024px) {
  .nav__logo img {
    width: 18vh;
    height: 16vh;
    margin-left: 2vh;
    margin-top: -8px;
  }
}

/* @media screen and (max-width: 430px) {
  .nav__logo img {
    width: 20vh;
    height: 20vh;
  
  }
} */

/* navbarend */



.content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: -1;
  width: 100%;
  padding: 0 30px;
  color: #1b1b1b;
}
.content div{
  font-size: 40px;
  font-weight: 700;
}
  
/* image gallery css */

  *:before,
  *:after{
    box-sizing: border-box;
  }
  html,
  body{
    min-height: 100%;
  }

  .scope {
    position: relative;
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
    animation: slid 30s linear infinite;
    margin-left: 44%;
    margin-top: 15%;
}
  
  .scope span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center;
    transform-style: preserve-3d;
    transform: rotateY(calc(var(--i) * 45deg)) translateZ(350px);
  }
  .scope span img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    transition: 2s;
  }
  .scope span:hover img {
    transform: translateY(-50px) scale(1.7);
  }
  @keyframes slid {
    0% {
      transform: perspective(1000px) rotateY(0deg);
    }
    100% {
      transform: perspective(1000px) rotateY(360deg);
    }
  }
  
  @media(min-width: 992px)
  {
    .scope {
   
      margin-left: 40%;
      margin-top: 10%;
  }
    
  }
  @media(min-width: 414px)
  {
    .scope {
   
      margin-right: 40px;
      margin-top: 20%;
  }
  }
  
  @media(min-width: 360px)
  {
    .scope {
   
      margin-right: 60px;
      margin-top: 10%;
  }
  }
  @media screen and (max-width: 1600px)
  {
    .scope {
   
    margin-right: 20px;
      margin-top: 20%;
  }
  }
/* image gallery end */


/* About us information css */

.wrapper{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20vh;
}
.background-container{
  width: 100%;
  min-height: 100vh;
  display: flex; 
}
.bg-1{
  flex: 1;
  background-color: rgb(180, 243, 175);
}
.bg-2{
  flex: 1;
  background-color: rgb(163, 236, 240);
}
.about-container{
  width: 85%;
  min-height: 80vh;
  position: absolute;
  background-color: white;
  box-shadow: 24px 24px 30px #6d8dad;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  border-radius: 5px;
}
.image-container{
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-container img {
  width: 500px;
  height: 500px;
  margin: 20px;
  border-radius: 10px;
}
.text-container{
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  font-size: 22px;
}
.text-container h1{
  font-size: 70px;
  padding: 20px 0px;
}
.text-container a{
  text-decoration: none;
  padding: 12px;
  margin: 50px 0px;
  background-color: rebeccapurple;
  border: 2px solid transparent;
  color: white;
  border-radius: 5px;
  transition: .3s all ease;
}
.text-container a:hover{
  background-color: transparent;
  color: black;
  border: 2px solid rebeccapurple;
}
@media screen and (max-width: 1600px){
  .about-container{
      width: 90%;
  }
  .image-container img{
      width: 400px;
      height: 400px;
  }
  .text-container h1{
      font-size: 50px;
  }
}
@media screen and (max-width: 1100px){
  .about-container{
      flex-direction: column;
  }
  .image-container img{
      width: 300px;
      height: 300px;
  }
  .text-container {
      align-items: center;
      margin-top: -336px;
  }
  .background-container {
    width: 100%;
    min-height: 145vh;
    
}
}
  

@media(min-width: 768px)and  
(max-width: 1101)
{
  .background-container {
    width: 100%;
    min-height: 80vh;
    
}
}

@media(max-width: 1000px)
{
  .background-container {
    width: 100%;
    min-height: 120vh;
    
}

@media(max-width: 1024px){

  .text-container {
    align-items: center;
    margin-top: -100px;
}
}


.wrapper{
 
  margin-top: 10vh;
}
.about-container{
  flex-direction: column;
}
.image-container img{
  width: 300px;
  height: 300px;
}
.text-container {
  align-items: center;
  margin-top: -203px;
}
} 


/* about us end  */




  
  /* our facilities */

  .services
  {
      display: block;
      position: relative;
      padding: 0;
      margin-top: 5vh;
  }
  .container1
  {
      max-width: 1200px;
      padding-left: 15px;
      padding-right: 15px;
      margin-left: auto;
      margin-right: auto;
  }
  .services-title
  {
      display: flex;
      flex-wrap: wrap;
      margin-right: -15px;
      margin-left: -15px;
  }
  
  
  .services-box
  {
      display: flex;
      flex-wrap: wrap;
      margin-right: -15px;
      margin-left: -15px;
      margin-top: -15px;
      margin-bottom: 64px;
  }
  
  .title
  {
      margin-left: 15px;
      position: relative;
      width: 100%;
      padding-right: 15px;
      padding-left: 15px;
      margin-bottom:40px;
      text-align: center;
      top: 26px;
  
  }
  .services-title h2 span
  {
      color: #3c44a9;
  }
  .services-title h2
  {
      margin-top: -10px;
      margin-bottom: 6px;
      text-transform: uppercase;
      font-size: 36px;
      line-height: 48px;
      font-weight: 700;
      color: #333;
      font-family: 'PT Serif', serif;
  }
  
  .box
  {
      position: relative;
      width: 100%;
      padding-right: 15px;
      padding-left: 15px;
      max-width: 33.333333%;
  }
  .ser-box
  {
      margin-top: 75px;
      padding-bottom: 30px;
      padding: 0 60px;
      min-height: 240px;
      text-align: center;
      border-radius: 10px;
      background-color: #fff;
      transition: all .4s ease-in-out;
      box-shadow: 0 0 25px 0 rgba(20,27,202,.17);
  }
  
  .ser-box .icon
  {
      margin-bottom: 0;
      transform: translateY(-50%);
      text-align: center;
  }

  .ser-box .icon img
  {
    width: 15vh;
    height: 15vh;
  }

  .ser-box h4
  {
      font-weight: 700;
      font-size: 20px;
      line-height: 1;
      color: #3c44a9;
      margin-top: -10px;
      font-family: 'PT Serif', serif;
  }
  .ser-box p
  {
      color: #61648e;
      line-height: 24px;
      margin-top: 20px;

  }
  .ser-box:hover
  {
      box-shadow: 0 0 25px 0 rgba(20,27,201,.05);
      cursor: pointer;
      background-image: 
      linear-gradient(-45deg, #fb0054 0%, #f55b2a 100%);
  }
  
  .ser-box:hover h4,
  .ser-box:hover p
  {
      color: #fff;
  }
  
  
  
  .services-box .box:nth-child(1) .ser-box:hover
  {
      background-image: 
      linear-gradient(-45deg, #34b5bf 0%, #210c59 100%);
  }
  
  
  
  .services-box .box:nth-child(3) .ser-box:hover
  {
      background-image: 
      linear-gradient(-45deg, #3615e7 0%, #44a2f6 100%);
  }
  
  .services-box .box:nth-child(4) .ser-box:hover
  {
      background-image: 
      linear-gradient(-45deg, #fc6a0e 0%, #fdb642 100%);
  }
  
  
  .services-box .box:nth-child(5) .ser-box:hover
  {
      background-image: 
      linear-gradient(-45deg, #8d40fb 0%, #5a57fb 100%);
  }
  
  
  
  .services-box .box:nth-child(6) .ser-box:hover
  {
      background-image: 
      linear-gradient(-45deg, #27b88d 0%, #22dd73 100%);
  }
  
  
  
  /********-Responsive-************/
  
  @media(min-width: 768px)
  {
      .box
      {
          flex: 0 0 50% !important;
          max-width: 50% !important;
      }
      /* .ser-box .icon img
      {
        width: 10vh;
        height: 10vh;
      } */
  }
  
  
  
  
  
  @media(min-width: 600px)
  {
      .box
      {
          flex: 0 0 50% !important;
          max-width: 50% !important;
      }
      /* .ser-box .icon img
      {
        width: 10vh;
        height: 10vh;
      } */
  }
  
  @media(min-width: 280px){
    .ser-box .icon img {
      width: 5vh;
      height: 5vh;
    } 
  }
  
  @media(min-width: 992px)
  {
      .box
      {
          flex: 0 0 33.333333% !important;
          max-width: 33.333333% !important;
      }
  }
  
  
  
  @media(min-width: 414px)
  {
      .box
      {
          flex: 0 0 100%;
          max-width: 100%;
      }
      /* .ser-box .icon img
      {
        width: 5vh;
        height: 5vh;
      } */
  }
    
  @media(max-width: 320px)
  {
       .ser-box .icon img
      {
        width: 5vh;
        height: 5vh;
      }
  }
  
  @media(min-width: 360px)
  {
      .box
      {
          flex: 0 0 100%;
          max-width: 100%;
      }
      .ser-box .icon img{
        width: 5vh;
        height: 5vh;
      } 
  }
  
  
  
  @media(max-width: 320px)
  {
      .box
      {
          flex: 0 0 100%;
          max-width: 100%;
      }
      .ser-box .icon img
      {
        width: 8vh;
        height: 8vh;
      }
  }
  
  
  /* facilities end  */
  




 
/* FOOTER */
.footer {
	width: 100%;
	background: #184e28;
	display: block;
  position: relative;
 }

 .inner-footer {
	 width: 95%;
	 margin: auto;
	 padding: 30px 10px;
	 display: flex;
	 flex-wrap: wrap;
	 box-sizing: border-box;
	 justify-content: center;
 }

.footer-items {
	width: 25%;
	padding: 10px 20px;
	box-sizing: border-box;
	color: #fff;
}

.footer-items p {
	font-size: 16px;
	text-align: justify;
	line-height: 25px;
	color: #fff;
}

.footer-items h1 {
	color: #fff;
  font-family: 'PT Serif', serif;
}
.footer-items h3
{
  font-size: 20px;
  font-weight: 600;
  color: rgb(245, 244, 248);
  margin: 1em 0px;
}
.footer-items img
{
  width: 18vh;
  height: 18vh;
}
.border1 {
	height: 3px;
	width: 40px;
	background: #ff9800;
	color: #ff9800;
	background-color: #ff9800;
	border: 0px;
}
 
.footer-items ul {
	list-style: none;
	color: #fff;
	font-size: 15px;
	letter-spacing: 0.5px;	
 }

 .footer-items ul a {
	text-decoration: none;
	outline: none;
	color: #fff;
	transition: 0.3s;
}

.footer-items ul a:hover {
	color: #ff9800;
}

.footer-items ul li {
	margin: 10px 0;
	height: 25px;
}
ul li .asp {
  height: 30px;
}
.footer-items li i {
	margin-right: 20px;
} 

.social-media {
	width: 100%;
	color: #fff;
	text-align: center;
	font-size: 20px;
}

.social-media a {
	text-decoration: none;
}

.social-media i {
	height: 25px;
	width: 25px;
	margin: 20px 10px;
	padding: 4px;
	color: #fff;
	transition: 0.5s;
}

.social-media i:hover {
	transform: scale(1.5);
}

.footer-bottom {
	padding: 10px;
	background: #00121b;
	color: #fff;
	font-size: 12px;
	text-align: center;
}

/* for tablet mode view */

@media screen and (max-width: 1275px) {
	.footer-items {
		width: 50%;
	}
 
}

/* for mobile screen view */

@media screen and (max-width: 660px) {
	.footer-items {
		width: 100%;
	}
  .footer-items img
{
  width: 15vh;
  height: 15vh;
  margin-right: 20px;
}
}
@media(min-width: 300px) and (max-width: 414px)
{
  .footer-items img
  {
    width: 10vh;
    height: 10vh;
    margin-right: 20px;
  }
}

/* footer end */


