@import url('https://fonts.googleapis.com/css2?family=Vidaloka&display=swap');


:root{
  --primary-color:  #c98d83;
  --secondary : #783b31;
  --bg: #f2f1ec;
  --black: #000;
  --white: #fff;
  --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1);
}

*{
  font-family: 'Vidaloka', sans-serif;
  margin:0; 
  padding:0;
  box-sizing: border-box;
  outline: none;
  border:none;
  text-decoration: none;
  list-style: none;
  transition: .2s linear;
}

html{
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 9rem;
  scroll-behavior: smooth;
  
}

html::-webkit-scrollbar{
  width: .8rem;
}

html::-webkit-scrollbar-track{
  background: transparent;
}

html::-webkit-scrollbar-thumb{
  background: var(--primary-color);
  border-radius: 5rem;
}

section{
  padding: 2rem 7%;
}

.heading{
  text-align: center;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding: 1.5rem 0;
  font-size: 4rem;
}

.heading span{
  color: var(--secondary);
  text-transform: uppercase;
}

.btn{
  margin-top: 1rem;
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.7rem;
  color: var(--white);
  border-radius: .5rem;
  box-shadow: var(--box-shadow);
  background: var(--primary-color);
  cursor: pointer;
}

.btn:hover{
  background: var(--secondary);
}

/* header */

.navbar{
  position: sticky;
  display: flex;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--bg);
  box-shadow: var(--box-shadow);
  transition: all .50s ease;
  align-items: center;
  padding: 2rem 10%;
  justify-content: space-between;
}

.logo img{
 height:80px;
 width: 100%;

}

.logo img:hover{
  transform: scale(1.3);
}

.navbar .links{
  position: relative;
  color: var(--secondary);
  transition: all .6s ease;
  display: flex;
}

 .navbar .links a{
  margin: 0 3rem;
  font-size: 2rem;
}

 .navbar .links a:hover{
  transform: scale(1.8);
  color: var(--primary-color);
  
}


.navbar .mainMenu {
  display: none;
  list-style: none;
}

.navbar .mainMenu li a {
  display: inline-block;
  padding: 15px;
  text-decoration: none;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  font-size: 18px;
  transition: 0.2s ease;
}
.navbar .mainMenu li a:hover {
  background: var(--primary-color);
}
.navbar .openMenu {
  font-size: 3rem;
  margin: 20px;
  display: none;
  cursor: pointer;
}

.navbar .mainMenu .icons i{
  margin-top: 30px;
  font-size: 5rem;
}
.fa-facebook:hover {
  color: rgb(0, 110, 255);
}
.fa-instagram:hover {
  color: rgb(255, 0, 191);
}
.navbar .mainMenu .closeMenu i{
  font-size: 3rem;
}
.navbar .logo {
  margin: 20px;
  cursor: pointer;
  text-transform: uppercase;
}


@media screen and (max-width: 768px){
 
  .navbar{
    padding: 1rem 2%;
  }
.language img a{
  font-size: .5rem;
}
.navbar .links{
  display: none;
}

.navbar .mainMenu {
  display: flex;
  height: 100vh;
  width: 50rem;
  position: fixed;
  top: 0px;
  right: 0px;
  left: 0px;
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgb(0, 0, 0);
  transition: top 1s ease 0s;
  overflow: hidden;
}
.navbar .mainMenu .closeMenu {
  display: block;
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
}
.navbar .openMenu {
  display: block;
}
.navbar .mainMenu li a:hover {
  background: none;
  color:var(--primary-color);
}
.icons i {
  display: inline-block;
  padding: 12px;
  color: #fff;
}


}


/* home */

.home{
  padding: 0;
  height: 100vh;
  width: 100%;
  background: url(/images2/amc\ 1.jpg) no-repeat;
  background-size: cover !important;
  background-position: center !important;
  }

.home .wrapper {
  position: relative;
  height: 100vh;
  width: 100%;
  border-bottom: 5px solid var(--primary-color);
}

 .wrapper .center{
	position: absolute;
	left: 50%;
	top: 55%;
	transform: translate(-50%, -50%);
	font-family: sans-serif;
	user-select: none;
  align-items: center;
  justify-content: center;
}
.home .wrapper h3{
	color: #fff;
	font-size: 110px;
  margin-top: -150px;
	width: 950px;
	font-weight: bold;
	text-align: center;
  
  animation: fadeIn 0.4s cubic-bezier(.54, 1.3,.63,1.34) .2s backwards;
}
.home .wrapper h2{
	color: #fff;
	font-size: 110px;
	font-weight: bold;
	margin-top: 320px;
	width: 950px;
	text-align: center;
  animation: fadeIn 0.4s cubic-bezier(.54, 1.3,.63,1.34) .2s backwards;
  padding-bottom: 40px;
}
.home .wrapper p{
  color: var(--secondary);
  font-size: 18px;
  text-align: center;

}
.home .wrapper .buttons{
	margin: 35px 380px;
}
.home .buttons button{
	height: 50px;
	width: 200px;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	background: var(--secondary);
	outline: none;
	cursor: pointer;
	border: 3px solid #fff;
	border-radius: 25px;
	transition: .3s;
  
}

.buttons button:hover{
	background: #fff;
  color: var(--secondary);
  border: 3px solid var(--primary-color);
}


@keyframes fadeIn{
  0%{
    transform: translateY(-4rem) scale(1.1);
    opacity: 0;
  }
}

@media screen and (max-width: 768px){
  
 .home .wrapper {
    flex-direction: column;
    width: auto;
    align-items: center;
    justify-content: center;
  }

 
  
  .home .wrapper .center h3{
    margin-top: -20px;
    font-size: 75px;
    text-align: center;
    
    left: 50%;
    
  }
 
  .home .wrapper .center h2{
    margin-top: 180px;
    font-size: 75px;
    text-align: center;
    
    left: 50%;
    
  }
  .center .buttons {
    top: 50%;
    left: 50%;
    align-items: center;
    justify-content: center;
  }
  
 
  
  
}



/* end */


/* about */

.about{
  padding: 0;
   
}
.wrapper{
  width: 100%;
  min-height:500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wrapper .content{
  width: 50%;
  margin: 0 25px;
  transition: 0.4s ease;
}

.wrapper .content:hover{
  transform: translateY(-20px);
}

.wrapper .content h3{
  font-size: 30px;
  color: var(--secondary);
  margin-top: 20px;
  margin-bottom: 30px;
  
}

.wrapper .content span{
  color: var(--primary-color);
}

.wrapper .content p{
  font-size: 19px;
  line-height: 1.5;
  margin-top: 10px;
 
}

.wrapper .image{
  width: 50%;
  height: auto;
  transition: 0.4s ease;
  align-self: center;
  justify-self: center;
}
.wrapper .image:hover{
  transform: translateY(-20px);
}

.wrapper .image img{
  width: 100%;
  height: 50%;
  
}

@media screen and (max-width: 768px){

  .wrapper {
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  .wrapper .content{
    width: 80%;
    
  }
  
  .wrapper .content h3{
    
    font-size: 25px;
    text-align: center;
    top: 50%;
    left: 50%;
    
  }
 
  .content, .image{
    height: 100%;
    width: 100%;
    margin: 10px 30px;
  }

  .content .btn {
    top: 50%;
    left: 50%;
    align-items: center;
    justify-content: center;
  }
  
}
/* about end*/

/* welcome message */

.welcome-message{
  background: url(/images2/background\ 1.jpg) no-repeat;
  background-size: cover !important;
  background-position: center !important;
}

.welcome-message .wrapper{
  width: 100%;
  min-height: 700px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 100px;
}

.welcome-message .wrapper::before{
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 100%; width: 100%;
  
  z-index: -1;
}


.welcome-message .wrapper .image{
  width:50%;
  height:auto;
  transition: 0.4s ease;
  align-self: center;
  justify-self: center;
  animation: fadeIn 0.4s cubic-bezier(.54, 1.3,.63,1.34) .2s backwards;

}
.welcome-message .wrapper .image:hover{
  transform: translateY(-20px);
}

.welcome-message .wrapper .image img {
  width: 70%;
  height:50%;
  border-left: 5px solid var(--secondary);
  border-bottom: 5px solid var(--secondary);
  border-radius: 25px;
  animation: fadeIn 0.4s cubic-bezier(.54, 1.3,.63,1.34) .2s backwards;
}

.welcome-message .wrapper .content-message{
  width: 50%;
  margin: 0 25px;
  transition: 0.4s ease;
  color: black;
  
}

.welcome-message .wrapper .content-message:hover{
  transform: translateY(-20px);
}

.welcome-message .wrapper .content-message h3{
  font-size: 40px;
  color: black;
  margin-top: 20px;
  margin-bottom: 10px;
  animation: fadeIn 0.6s cubic-bezier(.54, 1.3,.63,1.34) .2s backwards;
}
.welcome-message .wrapper .content-message h2{
  font-size: 30px;
  color: black;
  margin-top: 10px;
  margin-bottom: 30px;
  animation: fadeIn 0.8s cubic-bezier(.54, 1.3,.63,1.34) .2s backwards;
}

.welcome-message .wrapper .content-message h2 span{
  color: var(--primary-color);
  
}

.welcome-message .wrapper .content-message p{
  font-size: 20px;
  line-height: 1.5;
  margin-top: 10px;
  animation: fadeIn 1s cubic-bezier(.54, 1.3,.63,1.34) .2s forwards;
}

@media screen and (max-width: 768px){
  .welcome-message .wrapper {
    padding: 10%;
    
  }

  .welcome-message .wrapper .image img{
    width: 100%;
    height: 100%;
    align-self: center;
    justify-self: center;
  }
  .welcome-message .wrapper .content-message {
    
    flex-direction: column;
    width: 100%;
    padding-top: 15%;
    align-items: center;
    justify-content: center;
    
  }
  
 
  
}

/* welcome message end */

/* courses */

.courses{
  background: var(--bg);
  align-items: center;
  justify-content: center;
  display: block;
 
}

.courses .paragraph .content p{
  
  line-height: 1.5;
  margin: auto;
  font-size: 20px;
  padding: 15px;
  color: var(--black);
  text-align: center;
}

.courses .paragraph .content p span {
  color: var(--primary-color);
}

.courses .paragraph .content p #select-education{
  color: var(--secondary);
}

.courses .paragraph .content {
  height: 100%;
  width: 75%;
  margin: auto;
  border: 5px solid var(--secondary);
  border-radius: 80px 20px;
 
}

.courses .paragraph {
  margin-bottom: 30px;
  border-bottom: 5px solid var(--primary-color) ;
  padding-bottom: 40px;
}

@media screen and (max-width: 768px){
  .courses .paragraph .content p{
    font-size: 18px;
      }
}

.courses .box-container{
  
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 15px;
  position: relative;
  padding-bottom: 40px;
  border-bottom: 5px solid var(--primary-color);
  padding-bottom: 30px;

}

.courses .box-container .box .btn{
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}


.courses .box-container .box {
 
  width: calc(25% - 15px);
  padding: 30px 30px;
  position: relative;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  background: var(--white);
  border-radius: 25px;
  overflow: hidden;
  text-align: center;
  
}

.courses .box-container .box .level-section{
  
  display: flex;
  justify-content: center;
  
  
}

.courses .box-container .box .level-area{
  height: 120px;
  width: 120px;
  border-radius: 50%;
  padding: 2px;
}

.courses .box-container .box .level-inner-area{
  height: 100%;
  width: 100%;
  border-radius: 50%;
  border: 3px solid #fff;
  line-height: 117px;
  text-align: center;
  color: #fff;
  position: relative;
}

.level-inner-area .text{
  font-size: 45px;
  font-weight: 500;
  
}

.box .level-name{
  width: 100%;
  height: 2px;
  margin: 35px 0;
  position: relative;
}

.box .level-name::before{
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 25px;
  font-weight: 500;
  background: #fff;
  padding: 0 15px;
  transform: translate(-50%, -50%);
}

.courses .box-container .box .features li{
  margin-bottom: 60px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  text-align: center;
  color: var(--primary-color);
}

.courses .box-container .box .features li .features-text{
  color: var(--secondary);
}

.features li span{
  font-size: 17px;
  font-weight: 400;
}

.features li .icon-check{
  font-size: 15px;
  color: var(--secondary);
}

.courses .box-container .box .btn{
  width: 80%;
  display: flex;
  margin-top: 35px;
  justify-content: center;
  border-radius: 25px;
  
}

.courses .box-container .box .btn button{
  width: 80%;
  height: 50px;
  color: var(--secondary);
  font-size: 20px;
  font-weight: 500;
  border: none;
  outline: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  
}



.courses .box-container .box .btn button:hover{
  border-radius: 5px;
}

.beginner .features li::selection{
  background: #ffd861;
}

.beginner ::selection,
.beginner .level-area,
.beginner .level-inner-area{
  background: #ffd861;
}

.beginner .btn button{
  border: 2px solid #ffd861;
  background: #fff;
  color: #ffd861;
}

.beginner .btn button:hover{
  background: #ffd861;
  color: #fff;
}


.beginner .features li::selection{
  background: #a26bfa;
}

.elementary ::selection,
.elementary .level-area,
.elementary .level-inner-area{
  background: #a26bfa;
}
.elementary .btn button{
  background: #fff;
}

.courses .box-container .elementary .btn button:hover{
  background: #833af8;
  color: #fff;
}


.intermediate ::selection,
.intermediate .level-area,
.intermediate .level-inner-area{
  background: #43ef8b;
}

.intermediate .btn button{
  border: 2px solid #43ef8b;
  color: #43ef8b;
  background: #fff;
}

.intermediate .btn button:hover{
  background: #43ef8b;
  color: #fff;
}

.upper-intermediate ::selection,
.upper-intermediate .level-area,
.upper-intermediate .level-inner-area{
  background: #3404e2;
}

.upper-intermediate .btn button{
  border: 2px solid #3404e2;
  color: #3404e2;
  background: #fff;
}

.courses .box-container .upper-intermediate .btn button:hover{
  background: #3404e2;
  color: #fff;
}

.beginner .level-name{
  background: #ffd861;
}

.elementary .level-name{
  background: #a26bfa;
}

.intermediate .level-name{
  background: #43ef8b;
}

.upper-intermediate .level-name{
  background: #3404e2;
}

.beginner .level-name::before{
  content: "Beginner";
  font-size: 21px;
}

.elementary .level-name::before{
  content: "Elementary";
  font-size: 21px;
}
.intermediate .level-name::before{
  content: "Intermediate";
  font-size: 21px;
}
.upper-intermediate .level-name::before{
  content: "Upper Intermediate";
  font-size: 21px;
}

@media screen and (max-width: 1020px) {
  .courses .box-container .box{
    flex-direction: column;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
  }
  
}

@media screen and (max-width: 698px) {
  .courses .box-container  {
    flex-direction: column;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
  }
}


.courses{
  padding: 2%;
}
.courses .time-table-content{
  background: var(--white);
  padding: 15px 9%;
  width: 80%;
  margin: 50px auto 0;
 
}

.courses .time-table-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  border: 2px solid #444;
  border-radius: 45px 85px;
  width: auto;
}

.courses .time-table-content .box-time{
  text-align: center;
  margin-bottom: 20px;

}

.courses .time-table-content .box-time h3{
  color: var(--secondary);
  font-size: 22px;
  padding: 10px 0;
}

.courses .time-table-content .box-time h3 span{
  color: var(--primary-color);
}

.courses .time-table-content .box-time p{
  color: #777;
  font-size: 15px;
  line-height: 1.8;
}

.courses .time-table-content .box-time p span{
  color: var(--primary-color);
}

.courses .time-table-content .holidays p{
  padding-top: 30px;
  font-size: 15px;
  color: var(--primary-color);
  
}

.courses .time-table-content .holidays p span{
  color: var(--primary-color);
}

/* courses end */




/* technical */

.technical{
  background: url(../images2/promotion.jpg) no-repeat;
  background-size: cover !important;
  background-position: center !important;
}

.technical .box-container{
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 4rem;
}

.technical .box-container .box{
  flex: 1 1 35rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.technical .box-container .box .content{
  text-align: center;
}

.technical .box-container .box .content h3{
  font-size: 3rem;
  color: var(--secondary);
}

.technical .box-container .box .content p{
  font-size: 1.8rem;
  color: #444;
  padding: 1rem 0;
  line-height: 1.5;
}

/* technical ends*/


/* free resources */

section .gallery {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 60% 40%;
  place-items: center;
  height: 100vh;
  overflow: hidden;
  padding: 2rem 0.5rem;
  }

  .resources-banner {
    position: relative;
    height: 100%;
    width: 100%;
    
  }

  .resources-banner img{
    height: 100%;
    width: 100%;
  }

  .gallery .gallery-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.gallery .gallery-container .box{
  height: 40rem;
  position: relative;
  overflow: hidden;
}

.gallery .gallery-container .box img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.gallery .gallery-container .box:hover img{
  transform: scale(1.1);
}

.gallery .gallery-container .box .icons{
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0; left: 0;
  z-index: 10;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.gallery .gallery-container .box .icons i{
  display: flex;
  font-size: 6rem;
  color: var(--white);
}

.gallery .gallery-container .box:hover .icons{
  display: flex;
}


/* gallery end*/

 
/* footer */


.footer{
  background: var(--secondary);
  width: 100%;
  position: relative;
  
}



.footer .box-container{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  flex-direction: row;
}

.footer .box-container .box h3{
  text-transform: capitalize;
  font-size: 2.2rem;
  color: var(--white);
  padding: 1rem 0;
}

.footer .box-container .box p{
  font-size: 1.5rem;
  line-height: 2;
  color: var(--white);
  padding: .5rem 0;
}

.footer .box-container .box .share{
  margin-top: 1rem;
}

.footer .box-container .box .share a{
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  border-radius: 10%;
  font-size: 1.7rem;
  background: var(--primary-color);
  color: var(--white);
  margin-right: .3rem;
  text-align: center;
}

.footer .box-container .box .share a:hover{
  background: var(--secondary);
  border: 1px solid white;
  border-radius:10%;
}

.footer .box-container .box .link{
  font-size: 1.7rem;
  line-height: 2;
  color: var(--white);
  padding: .5rem 0;
  display: block;
}

.footer .box-container .box .link:hover{
  color:var(--primary-color);
  text-decoration: none;
}

.footer .box-container .box{
  position: relative;
}

.footer .box-container .box ul{
  list-style: none;
  margin-top: 1rem;
 
}

.footer .box-container .box ul li{
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  
}

.footer .box-container .box ul li a{
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--white);
  padding: .5rem 0;
  text-decoration: none;

  }

  
  .footer .box-container .box ul li a i{
    position: absolute;
    left: 0;
    top: 5px;
    
  }


.footer .credit{
  text-align: center;
  margin-top: 3rem;
  padding-top: 3rem;
  font-size: 2rem;
  text-transform: capitalize;
  color: var(--primary-color);
  border-top: .1rem solid var(--secondary);
}

.footer .credit span a{
  color: var(--white);
  text-transform: none;
  cursor: pointer;
}

@media only screen and(max-width:600px){
  .footer {
    
    width: auto;
    margin-bottom: 30px;
    display: block;
    }

  
}

/* footer */



@media (max-width:768px){

    .navbar #menu-btn{
        display: inline-block;
    }

  

   .navbar #close-navbar{
        display: block;
    }

   .navbar.active{
        box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.8);
        right: 0;
    }

  .navbar a{
        color: var(--black);
        display: block;
        margin: 1rem 0;
        text-align: center;
        font-size: 3rem;
    }

    .home{
        background-position: left;
        justify-content: center;
        text-align: center;
    }

    .home .content h3{
        font-size: 4rem;
    }
}

@media (max-width:450px){

    html{
        font-size: 50%;
    }

}



















