@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,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');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Khand:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'inter';
    overflow-x: hidden;
}
:root{
    --black-color:rgba(21, 21, 23, 1);
    --red-color:rgba(255, 81, 85, 1);
    --black-color1:rgba(0, 0, 0, 1);
    --black-color2:rgba(32, 32, 32, 1);
    --gray-color:rgba(187, 187, 187, 1);
    --light-theme: rgba(250, 251, 255, 1);
    --light-pink-color:rgba(254, 245, 245, 1);
    --title-size:42px;
    --para-size:14px;
    --pink-color2:rgba(251, 239, 239, 1);
    --light-pink:rgba(255, 202, 194, 1);
}

/* nav var ------------- */
nav{
  position: fixed;
  z-index: 10000;
  width: 100%;
  box-shadow: 0px 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #fff;
}
nav .wrapper{
  position: relative;
  max-width: 1300px;
  padding: 0px 8rem 0PX 2.4REM;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .logo a {
  color: var(--red-color);
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  gap: 15px;
}
.wrapper .nav-links{
  display: inline-flex;
}
.nav-links li{
  list-style: none;
}
.nav-links li a{
  color: var(--black-color);
  text-decoration: none;
  font-size: 12px;
  font-weight: 450;
  padding: 10px 12px;
  transition: all 0.3s ease;
}
.nav-links li a:hover{
  color: var(--red-color);
}
.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  background: #fff;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 20px;
  font-weight: 400;
  border-radius: 0px;
}
.content .row header{
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links{
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}
.row .mega-links li a:hover{
  color: #f2f2f2;
}
.wrapper .btn{
  color: var(--red-color);
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}
@media screen and (max-width: 970px) {
  .wrapper .btn{
    display: block;
  }
  nav .wrapper{
  padding: 0 2rem;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #fff;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: var(--blue-color1);
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box,
  #showServicesDrop:checked ~ .drop-menu,
  #showTrainingDrop:checked ~ .drop-menu
  {
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: var(--black-color);
    font-size: 20px;
    font-weight: 499;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: var(--blue-color1);
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  }
}
nav input{
  display: none;
}
.body-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}
.body-text div{
  font-size: 45px;
  font-weight: 600;
}
/* navbar end------- */
/* container 1 start */
.GalleryConatiner1{
    width: 100%;
    height: 25rem;
background-image: url('assests/courses.jpeg');
display: flex;
justify-content: center;
align-items: center;
padding-left: 7rem;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
.GalleryConatiner1 .title .para1{
    color: rgba(255, 255, 255, 1);
    font-size: 86px;
    font-family: 'khand';
    font-weight: 700;
    letter-spacing: 4px;
}
.GalleryConatiner1 .title .para2{
    color: rgba(225, 225, 225, 1);
    font-size: 18px;
    margin-left: -28rem;
}
.GalleryConatiner1 .para2 a{
    color: rgba(187, 187, 187);
    text-decoration: none;
}
.GalleryConatiner1 .title{
    display: flex;
    flex-direction: column;    
}

/* container 3 */
.container3{
    display: grid;
    grid-template-columns: 1fr 3fr;
    padding: 3rem 5rem 0 10rem;
}
#container3{
  padding: 0rem 5rem 0 10rem;
}
.container4{
    display: grid;
    grid-template-columns: 3fr 1fr;
    padding: 0rem 5rem 0 10rem;
}
.container3 .sec1 img{
    width: 285px;
    height: 200px;
}
.container3 .sec2,.container4 .sec2{
display: flex;
justify-content: center;
flex-direction: column;
}
.title{
color: var(--red-color);
font-weight: 400;
font-size: 21px;
}
.para{
    font-size: 17px;
    color: rgba(101, 101, 101, 1);
    line-height: 23px;
    font-weight: 500;
    margin-top: 18px;
}
.img-container{
    display: grid;
    place-items: center;
}
/* container end */
/* container 1 end */
/* container 2 start */
.GalleryConatiner2 p{
    font-size: var(--title-size);
    font-weight: 700;
    color: var(--black-color);
    text-align: center;
    margin-top: 3rem;
}
.GalleryConatiner2 p span{
    color: var(--red-color);
}
.GalleryConatiner2 .para{
    color: rgba(136, 136, 136, 1);
    font-weight: 400;
    font-family: 'roboto';
    font-size: 20px;
    margin-top: 14px;
}
/* container 2 end */

/* responsive */
@media screen and (max-width: 1130px) {
    .GalleryConatiner1 .title .para2 {
        margin-left: -24rem;
    }
    .img-container {
        margin: 0 12rem;
    }
    .navBar{
        padding: 36px 3rem 36px 2rem;
    }
}
@media screen and (max-width: 1090px) {
    .GalleryConatiner1 .title .para2 {
        margin-left: -20rem;
    }
    .img-container {
        margin: 0px 10rem;
    }
    .container3,.container4,#container3 {
        padding: 0 5rem;
    }
    .img-container {
        margin: 0px 8rem;
    }
}
@media screen and (max-width:980px) {
    .img-container {
        margin: 0px 2rem 0 3rem;
    }
}
@media screen and (max-width: 840px) {
.GalleryConatiner1 .title .para2 {
    margin-left: -16rem;
    font-size: 14px;
}
.img-container img{
    width: 80%;
}
.para {
    font-size: 13px;
}
.title {
    font-size: 19px;
}
.GalleryConatiner2 .para {
    font-size: 16px;
}
}
@media screen and (max-width: 840px) {
    .GalleryConatiner1 {
        padding-left: 4rem;
}
.GalleryConatiner1 .title .para1 {
    font-size: 70px;
}
}

@media screen and (max-width: 750px) {
    :root{
        --title-size: 36px;
    }
}
@media screen and (max-width: 750px) {
        .GalleryConatiner1 .title .para1 {
            font-size: 60px;
        }
        .GalleryConatiner1{
            height: 22rem;
        }
        .container3, .container4,#container3 {
            padding: 0 3rem;
        }
}
@media screen and (max-width: 695px) {
    .GalleryConatiner1 .title .para2 {
        margin-left: -11rem;
    }
    .container3, .container4,#container3 {
        padding: 0 1.6rem;
    }
    .para {
        font-size: 11px;
        line-height: 20px;
        margin-top: 10px;
    }
    .title {
        font-size: 17px;
    }
}
@media screen and (max-width: 525px) {
    :root {
        --title-size: 33px;
    }
    .GalleryConatiner2 p {
        margin-top: 12px;
    }
        .GalleryConatiner1 .title .para1 {
            font-size: 50px;
        }
        .GalleryConatiner1 .title .para2 {
            margin-left: -8rem;
            font-size: 12px;
        }
        .GalleryConatiner1{
            background-size: cover;
        }
        .container3{
            grid-template-columns: auto;
        }
        .container4 {
            display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        grid-gap: 1rem; /* Adjust the gap between grid items */
        padding: 0 1.6rem 1.4rem;
        }
        .container4 img {
            grid-row: 1; 
        }
    
        .container4 .sec2 {
            grid-row: 2; 
        }
        .img-container{
            display: none;
        }
}
@media screen and (max-width: 465px) {
:root {
    --title-size: 28px;
}
.GalleryConatiner1 .title .para2 {
    margin-left: -6rem;
    font-size: 12px;
}
}

@media screen and (max-width: 410px) {
    .GalleryConatiner1 {
        height: 17rem;
        align-items: flex-end;}
    .GalleryConatiner1 .title .para2 {
        margin-left: -6rem;
        font-size: 10px;
        margin-bottom: 2rem;
    }
    :root {
        --title-size: 24px;
    }

}


/* footer start */
footer{
  background-color: var(--red-color);
  padding: 4rem 5.4rem 2rem 4.1rem;
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 5.4rem;
}
footer .col1 .footer-title,footer .col2 .footer-title,footer .col3 .footer-title,footer .col4 .footer-title{
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  font-size: 24px;
}
footer .col1 .content{
  font-family: 'poppins';
  line-height: 28px;
  font-size: 14px;
  color: #fff;
  margin-top: 24px;
}
footer .col2 ul,footer .col3 ul{
  margin-top: 24px;
  list-style-type: none;
  padding-left: 0;
}
footer .col2 ul li a,footer .col3 ul li a{
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 10px;
  font-size: 14px;
  line-height: 30px;
}
footer .col3 ul li a i{
  font-size: 16px;
}
footer .col4 a{
  text-decoration: none;
}
footer .col4 .icons{
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  row-gap: 12px;
  column-gap: 18px;
}
footer .col4 .icons i{
  color: var(--red-color);
  font-size: 14px;
  font-weight: 100;
  padding: 8px;
      background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition:all 0.3s ease;
  cursor: pointer;
}
footer .col4 .icons i:hover{
  background-color: var(--red-color);
  color: #fff;
  transform: scale(1.5);

}
.footer-pvt{
  background-color: var(--red-color);
  padding: 1rem 0 1rem;
  /* border-top: 0.1px solid #f1ebeb; */
}
.footer-pvt p{
  color: #fff;
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width:1200px) {
  footer {
      padding: 4rem 3.4rem 2rem 3.1rem;
      gap: 3rem;
  }
}
@media screen and (max-width:920px) {
  footer .col4 .icons {
      grid-template-columns: repeat(6, 1fr);
  }
  footer{
      grid-template-columns: auto auto auto;
  }
  footer .col1 .footer-title, footer .col2 .footer-title, footer .col3 .footer-title, footer .col4 .footer-title {
      font-size: 20px;
  }
  footer .col2 ul li a, footer .col3 ul li a {
      font-size: 12px;
      line-height: 26px;
  }
  footer .col1 .content {
      line-height: 22px;
      font-size: 12px;
  }
}
@media screen and (max-width:760px) {
  footer {
      grid-template-columns: auto auto;
  }
  footer .col4 .icons {
      grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width:520px) {
  footer{
      grid-template-columns: auto;
      gap: 15px;
  }
  footer .col4 .icons i {
      width: 40px;
      height: 40px;
  }
  footer .col4 .icons {
      grid-template-columns: repeat(6, 1fr);
      gap: 0;
  }
  footer .col1 .content {
      margin-top: 10px;
  }
  footer .col2 ul, footer .col3 ul {
      margin-top: 10px;
  }
  .footer-pvt p{
    font-size: 10px;
  }
}
@media screen and (max-width:440px) {
  footer {
      padding: 2rem 1.2rem 2rem 1.2rem;
      gap: 1.4rem;
  }
}
/* footer end */