@import url('https://fonts.googleapis.com/css2?family=Nunito&family=Rubik&display=swap');

*{
	/*max-width: 100%;
    margin: 0;
    padding: 0;*/
    font-family: 'Nunito', sans-serif;
	 
}


body{
    width: 100%;
    font-family: 'Rubik', sans-serif;
    scroll-behavior: smooth;	
	
	 margin: 0px;
    padding: 0px;
	overflow-x: hidden;
}

 

a{
    text-decoration: none;
}

/* This is My NAvbar */
nav{
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
    height: 60px;
    width: 100%;
    padding: 10px;
    position: fixed;
    margin-top: 0rem;
    margin-bottom: 15rem;
}

nav .logo{
    width: fit-content;
    display: inline-flex;
    box-shadow: rgba(2, 36, 58, 0.806) 0px 3px 8px;
    background: white;
    padding: 5px;
    border-radius: 3px;

}

nav ul{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 85%;
    height: 100%;    
    list-style: none;
    line-height: 38px;
    float: right;
    position: relative;
    
}
 

nav ul li{
    margin-right: 2rem;
}

nav ul li a{
    color: #2c4964;   
}

nav ul li a:hover{
    color: #fa4900;
}

nav .active{
    color: #fa4900;
    background: white;
}

nav i{
    border-radius: 50%;
    border: 1px dashed darkslategray;
    padding: 10px;
    margin-right: 0.3rem;
    padding-left: 10px;
}

#my_profile{
  margin-left: 7rem;
}

#lang{
  border-radius: 5px;
  padding: 10px 15px;
  cursor: pointer;
  width: fit-content;
  outline: none;
  color: darkslategray;
}

#nav_login{
	display: none;
}


.toggle{
  height: fit-content;
  display: none;
  margin: auto;
  margin-right: 20px;
  float: right;
  border-radius: 4px;
  background: #f5f5f5;
border: 0;
}

.toggle i{
  color: darkslateblue;
  font-size: 16px;
  cursor: pointer;
  border: 0px;
}

/* This is An End to My Navbar */


/* THis is My Loader */

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.loader-container span{
  text-align: center;
  margin-bottom: 2rem;
  color: darkslategray;
  font-weight: 600;
}

.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* This is AN ENd To My Loader */

/* This is My Top To Hover Button */

#myBtn {
    display: none;
    position: fixed;
    bottom: 60px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #2c4964;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
  }
  
  #myBtn:hover {
    background-color: #555;
  }
/* This is An End to My Top To Hover Button */

	.hero_slider_iframe{
	    margin-top: 3rem;
	}
/* TThis is My Blinking Text */
        @keyframes blink {
            0% {
                opacity: 1;
            }

            50% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
        }

        .blinking-text {
            margin-top: 0.6rem;
            padding: 10px;
            border-radius: 5px;
            text-align: center;
            margin-left: 70%;
            font-size: 17px;
            font-weight: bold;
            color: darkslategrey;
            
            animation: blink 5s infinite;
        }

/* This is An End to My Blinking text */



/* This is My Slider */
.slider-container {
    position: relative;
    width: 100%;
    max-height: 90vh;
    /* max-width: 600px; */
    margin: auto;
    margin-bottom: 3rem;
	overflow: hidden;
  }

  .slider {
    display: flex;
	max-width: 100%;
    transition: transform 0.5s ease-in-out;
  }

  .slide {
    min-width: 100%;
    box-sizing: border-box;
    /*  */
    max-height: 100vh;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }


  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    cursor: pointer;
    background: none;
    border-radius: 50%;
    background: #0077f0;
    color: white;
    padding: 7px 15px;
    border: 1px solid #0077f0;
    outline: none;
  }

  .prev {
    left: 20px;
  }

  .next {
    right: 10px;
  }
 
  .slide-l{
    width: 40%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    margin: 0 1%;
  }


  .slide-l h2{
    color: #2c4964;
    font-size: 32px;
  }

  .slide-l p{
    margin-top: 1rem;
    color: #f1f7fd;
  }

  .slide-r{
    width: 40%;
    align-items: center;
  }

  .slide img{
   width: 500px;
   background: white;
   height: 350px;
   border-top-left-radius: 70px;
            border-top-right-radius: 35px;
            border-bottom-left-radius: 35px;
            box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }

  .slide-l a{
     background: indianred;
     color: white;
     padding: 10px 20px;
     width: fit-content;
     margin-top: 1rem;
     margin-top: 2rem;
     box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  }

  #slide1{
    background: rgb(39,140,214);
    background: linear-gradient(90deg, rgba(39,140,214,1) 40%, rgba(0,190,240,1) 100%);
    height: 90vh;
  }

  
  #slide2{
    background: rgb(39,214,197);
    background: linear-gradient(90deg, rgba(39,214,197,1) 40%, rgba(0,190,240,1) 100%);
    height: 90vh;
  }

  #slide2 img{
    height: 400px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  }

  #slide2 .slide-r h2{
    font-size: 33px;
    margin-bottom: 0.5rem;
    color: #2c4964;
  }

  #slide2 .slide-r p{
    margin-bottom: 1rem;
    color: #f6f4f8;
  }

  #slide2 .slide-r a{
    background: mediumseagreen;
    color: white;
    padding: 10px 20px;
    width: fit-content;
    margin-top: 2rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  }

  #slide3{
    background: rgb(39,214,197);
    background: linear-gradient(90deg, rgba(39,214,197,1) 0%, rgba(140,0,240,1) 100%);
  }

  #slide3 a{
    background: orangered;
  }

 

  /* This is An End to My Slider */

/* CSS */
.button-2 {
  background-color: rgba(51, 51, 51, 0.05);
  border-radius: 8px;
  border-width: 0;
  color: #333333;
  cursor: pointer;
  display: inline-block;
  font-family: "Haas Grot Text R Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  list-style: none;
  margin: 0;
  padding: 10px 12px;
  text-align: center;
  transition: all 200ms;
  vertical-align: baseline;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
/* This is An End to My Slider Related Elements */

/*  Our Achiever's  Page bg #f6f6fe */
.achieve{
    width: 100%;
    max-height: 100vh;
    padding: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
    align-items: center;
    background: rgb(39,214,197);
    background: linear-gradient(90deg, rgba(39,214,197,1) 40%, rgba(0,190,240,1));
    /* background-image: radial-gradient(circle at 1px 1px, lightgrey 2px, transparent 0); */
    /* background-size: 30px 20px; */
    padding-top: 25px;
    padding-bottom: 25px;

}

.achieve-l{
  width: 25%;
  height: fit-content;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.achieve-l a{
  background: mediumorchid;
  color: white;
  padding: 10px 20px;
  width: fit-content;
  margin: auto;
  margin-top: 3rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.achieve-l h2{
  font-size: 32px;
  font-weight: 700;
  width: 100%;
  color: #333333;
}

 

.achieve-r{
  width: 60%;
  display: flex;
  /* flex-direction: row;
  flex-wrap: nowrap;*/
  justify-content: space-around; 
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  align-items: center;
  padding-bottom: 20px;
   transition: transform 0.5s ease-in-out;
   background: #f6f4f8;
   padding: 20px;
   border-radius: 5px;
}
#cCarousel {
  position: relative;
  max-width: 900px;
  margin: auto;
}

#cCarousel .arrow {
  position: absolute;
  top: 50%;
  display: flex;
  width: 35px;
  height: 35px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 1;
  font-size: 14px;
  color: white;
  background: #1c3acff5;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

#cCarousel #prev {
  left: 0px;
}

#cCarousel #next {
  right: 0px;
}

#carousel-vp {
  width: 770px;
  height: 400px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin: auto;
}



#cCarousel #cCarousel-inner {
  display: flex;
  position: absolute;
  transition: 0.3s ease-in-out;
  gap: 10px;
  left: 0px;
}

.cCarousel-item {
  width: 270px;
  max-height: 600px;
  border: 2px solid white;
  border-radius: 15px;
  background: white;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: rgba(0, 138, 230, 0.2) 0px 2px 8px 0px;
  text-align: center;
  cursor: pointer;
  color: darkslategrey;
  padding: 10px;
  padding-bottom: 20px;
}

.cCarousel-item:hover {
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.cCarousel-item img {
  width: 55%;
  object-fit: cover;
  min-height: 140px;
  color: white;
  border-radius: 50%;
  margin: 1% auto;
  margin-top: 1rem;
}

.cCarousel-item .infos {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  color: #2c2c2c;
}

.cCarousel-item p {
  color: darkslategray;
  font-size: 14px;
  margin: 0;
}

.cCarousel-item .infos a {
  background: #007ff0;
  padding: 10px 20px;
  border-radius: 5px;
  color: white;
  margin-top: 0.4rem;
  border: 1px solid #007ff0;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}

/* This is An End Browse Profile Button */

/* This is An End to My  Our Achiever's  Page */


/* This is My Para */
.para{
   max-width: 95%;
   height: 100vh;
   margin: auto;
   padding-top: 25px;
   padding-bottom: 25px;
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;   
   justify-content: center;
   align-items: center;
   /* background: rgb(46,145,204);
   background: linear-gradient(90deg, rgba(46,145,204,1) 0%, rgba(56,121,223,1) 51%); */
   background: #f4f6f7;
   border-radius: 5px;
}

.para-left{
    width: 40%;
    height: auto;
    margin-right: 1.3rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: hidden;
 }


.para-left img{
    width: 100%;
    height: 300px;
    border-radius: 7px;
    animation-name: slide;
    animation-duration: 15s;
    animation-iteration-count: infinite;
}



.para-right{
    width: 40%;
    height: fit-content;
    /* background: white;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 5px; */
    padding: 10px;

}

.para .line{
    margin: 0;
    margin-top: 1rem;
}

.para-right h2{
    color: #2c4964;
    font-size: 38px;
   
}

.para-right p{
    color: #262626;
    font-size: 16px;
    font-weight: 400;
    font-variant: normal;
    font-stretch: expanded;
    margin-top: 2.5rem;
}

.para-right .para-right-inner{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
    margin: 3% auto;
}

.para-right-inner span{
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.para-right-inner i{
    border-radius: 50%;
    padding: 10px;
    background: mediumseagreen;
    color: white;
    border: 2px solid mediumseagreen;
}


#para2{
  margin: 5% auto;
  background: #f3fbff;
}

#para2 h2{
  color: #2c4964;
}

#para2 ul{
  padding: 10px 20px;
  color: darkslategray;
  list-style: none;
  display: inline-block;
}

#para2 ul li{
  margin: 1% 0;
}

#para2 ul li::before{
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  margin-right: 0.5rem;
  background-color: mediumturquoise;
  border-radius: 50%;
  padding: 3px;
  font-size: 14px;

}

#para2 .para-left{
  width: 40%;
  height: auto;
  margin-right: 1.3rem;
  display: flex;
  flex-direction: column;
  
}

/* #para2 .straight{
  height: 100vh;
  width: 0.3px;
  background: lightgrey;
} */

#para2 img{
  width: 100%;
  min-height: 250px;
  border-top-left-radius: 70px;
            border-top-right-radius: 35px;
            border-bottom-left-radius: 35px;
            box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
 
#para2 a{
  background: #2c4964;
  color: white;
  padding: 10px;
  margin: 2% 0;
  border-radius: 5px;
  
}

/* This is An End to My Para */


/* This  Are My Error Messages */
.error-container {
  text-align: center;
  max-width: 400px;
  margin: 100px auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.error-container h1 {
  color: #ff0000;
}

.error-container p {
  color: #333;
}

.error-container a {
  display: block;
  margin-top: 20px;
  text-decoration: none;
  color: #fff;
  background-color: #007bff;
  padding: 10px;
  border-radius: 5px;
}

.error-container a:hover {
  background-color: #0056b3;
}
/* This is An End */

/* This is For MY Counter of Visistors */
.visitors{
    width: 80%;
    margin: 5% auto;
    color: darkslategrey;
    border-radius: 8px;
    border: 1px dashed grey;
    font-size: 20px;
    text-align: left;
    padding: 10px 20px;
}
/* This is An End */

/* This is My Footer */
footer{
    height: fit-content;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
    margin-bottom: 0rem;
    margin-top: 10rem;
    border-top: 1px dashed lightgrey;
}
/* #444444 --> Black Type Shade*/
footer h4{
    color: #262626;
    font-size: 18px;
    margin-bottom: 1rem;
    padding-bottom: 10px;
    width: fit-content;
    /* border-bottom: 2px solid salmon; */
}
 

.footer-links .footer-logo-icons{
    display: flex;
    flex-direction: column;
}

.footer-links img{
    width: 145px;
    height: 165px;
    margin-bottom: 1rem;
}

.f1{
    width: 25%;
   margin-right: 1rem;
}


.footer-links .footer-logo-icons a{
    text-decoration: none;
    color: #262626;
    margin-bottom: 1rem;
 }

 .footer-links .footer-logo-icons a:before{
    content: none;
 }

 .footer-links i{
    margin-right: 0.5rem;
    padding: 10px;
    color: #1c84e3;
    border: 1px solid #1c84e3;
    border-radius: 50%;
 }

 .footer-logo p{
    margin-top: 0rem;
    color: #262626;
 }

.footer-links{
    width: 22%;
    padding: 10px;
  
}

.footer-links ul{
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.footer-links a{
    color: #777777;
    font-size: 16px;
    text-decoration: none;
    margin-bottom: 1rem;
}

footer a:hover{
    color: orangered;
}

.footer-links a::before{
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    color: #1c84e3;
    font-size: 16px;
    margin-right: 0.5rem;
}

/* This is An End To My Footer */

/* This is my Copyright */
.copyRight{
    background: #f1f7fd;
    padding: 1.5rem;
    margin-bottom: 0rem;
}
/* This is my End to My CopyRight */

@keyframes slide{
  0%{
    margin-left: -100%;
  }

  100%{
    margin-left: 100%;
  }
 
 
}

/* MY MEDIA QUERIES */

@media screen and (max-width: 1024px){

 
  .fa-bars{
    display: block;
}

.toggle{
	top: 26px;
 right: 1rem;
 position: absolute;
 display: block;
}

	nav{
		padding: 0px all;
		max-width: 100%;
	}
nav ul{
	 
    display: none;
    height: 100vh;
    position: absolute;
    width: 90%;
    /* margin-left: -120%; */
    float: left;
    justify-self: center;
    background-color: rgb(254, 255, 254);
    flex-direction: column;
    padding: 0px 0px 0px 0px;
	padding-top: 70px;
 }
	
nav ul li{
	max-width: 100%;
    margin: 1% 2%;
    border-bottom: none;
    padding: 5px 0;
    text-align: left;
    border-bottom: 1px dashed lightgray;
	line-height: 60px;
}

	nav ul #nav_login{
		display: block;
		margin-left: -10rem;
		position: absolute;
	}	
	
	nav .logo{
		width: 120px;
		height: 110px;
	}

#my_profile{
  margin-left: 0rem;
}

  .slide{
    flex-direction: column;
    height: 100vh;
    width: 100%;
    padding: 10% 0;
    background-color: none;
    justify-content: space-around;
    padding: 0px 20px;
  }

  .slide .slide-l{
    width: 100%;
    margin: 2% 0;
  }

  .slide .slide-r{
    width: 100%;
  }

  #slide1 img{
    min-width: 300px;
    height: 200px;
  }

  #slide2 img{
    min-width: 300px;
    height: 200px;
  }

  #slide3 img{
    min-width: 300px;
    height: 200px;
  }
	
	#slide3{
		padding-bottom: 30px;
	}

  .slide img{
    width: 300px;
    height: 200px;
  }



  .slider-btn{
    background: white;
    color: #2c4964;
    font-size: 10px;
    padding: 5px 7px;
  }


}

@media screen and (max-width: 800px) {
  .para{
	width: 100%;
    display: flex;
	font-size: 14px;
    flex-direction: column;
    padding: 10px;
    height: fit-content;
  }

  .para img{
    margin-bottom: 2rem;
    max-width: 95%;
    max-height: 250px;
  }

  .para-left{
    width: 100%;
    padding: 0px;
  }

  .para-right{
    width: 100%;
	padding: 0px;
  }

  .para h2{
    font-size: 26px;
  }

  .para p{
    font-size: 14px;
  }


  /* This is My Footer */
  footer{
    flex-direction: column;
  }

  .footer-links{
    width: 100%;
    padding: 5px 0px;
  }
	
	footer .footer-links addrress{
		margin-left: -1.3rem;
	}
  /* This is An End To My Footer */



}

@media (max-width: 770px) {
	
	#nav_login{
		display: block;
		margin-top: -6.5rem;
		margin-left: 13rem;
	}
	
	#nav_login i{
		border: 0px;
		margin-right: -0.5rem;
		background: white;
		color: darkslateblue;
	}
	
	
	.hero_slider_iframe{
	    margin-top: 3rem;
	}
	
 .blinking-text{
     margin: auto;
     width: 95%;
     margin-top: 20rem;
     background-color: #f6f4f8;
 }
 
  .slide h2{
    font-size: 24px;
  }

  .slide p{
    font-size: 12px;
  }

  /* Achiever's Card Scroll */
  #carousel-vp {
    width: 510px;
  }
  @media (max-width: 510px) {
    /* Achiever's Card Scroll */
  
    #carousel-vp {
      width: 250px;
    }
  }
  
  /* OUR ACHIEVERS/ MATRI SLIDEr */
  .achieve{
   display: flex;
    flex-direction: column;
    height: fit-content;
    width: 100%;
    padding: 0px;
	  padding-bottom: 10px;
	    padding-top: 10px;
  }

  .achieve .achieve-l{
     width: 100%;
    margin: 2% 0;
    height: fit-content;
  }

  .achieve h2{
    font-size: 20px;
  }

  .achieve .achieve-r{
    width: 90%;
    padding: 0px;
    padding-left: 5px;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 5px;
    margin: auto;
  }

  .cCarousel-item img {
    width: 140px;
    max-height: 160px;
  }

  #carousel-vp {
    max-width: 100%;
  }

  .cCarousel-item{
    width: 170%;
    height: fit-content;
    padding-bottom: 180px;
    padding-top: 150px;
   }
   
   .cCarousel-item img{

       margin-top: 2rem;
   }

  #para2 .para-left{
    width: 100%;
  }

  #para2 .para-left h2{
    font-size: 22px;
  }

  #para2 .para-left ul{
    padding: 2px;
  }

  #para2 img{
    margin: auto;
	  padding: 0px all;
  }
	
	#para2 .para-right{
		margin-left: -2rem;
	}
 
}


/* THis is An End */