
@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=Cormorant:ital,wght@0,300..700;1,300..700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html{
    scroll-behavior: smooth;
}

.nav{
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 100%;
    background: #fff;
    padding: 1.8rem 5.5rem;
    z-index: 100000;
}
.nav .logo a{
    color: #000;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 400;
}
.nav .logo a img{
    width: 20%;
    object-fit: cover;
}
#item{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
#item li{
    list-style: none;
    padding-right: 35px;
}
#item li a{
    text-decoration: none;
    font-size: 0.9rem;
    color: #000;
}
#item li a:hover{
    color:#ff5733;
    cursor: pointer;
    transition: 0.3s ease;
}
#item .icon{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
#item .icon a i{
    color: #000;
    padding-right: 5px;
    font-size: 1.3rem;
    text-align: center;
}
#item .icon a i:hover{
    color: #ff5733;
    cursor: pointer;
}
#bar{
    color: #ff5733;
    font-size: 1.5rem;
    display: none;
}

.navContact{
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 100%;
    background: #1A1A1A;
    padding: 1.8rem 5.5rem;
    z-index: 100000;
}
.navContact .logo a{
    color: #fff;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 400;
}
.navContact .logo a img{
    width: 20%;
    object-fit: cover;
}
#itemContact{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
#itemContact li{
    list-style: none;
    padding-right: 35px;
}
#itemContact li a{
    text-decoration: none;
    font-size: 0.9rem;
    color: #fff;
}
#itemContact li a:hover{
    color:#ff5733;
    cursor: pointer;
    transition: 0.3s ease;
}
#itemContact .icon{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
#itemContact .icon a i{
    color: #fff;
    padding-right: 5px;
    font-size: 1.3rem;
    text-align: center;
}
#itemContact .icon a i:hover{
    color: #ff5733;
    cursor: pointer;
}

/* intro start */
.intro{
    padding: 6rem;
}
.intro h2{
    color: #000;
    font-size: 6rem;
    padding-bottom: 1.1rem;
    font-weight: 600;
    line-height: 1;
    font-family: 'Cormorant', sans-serif;
    padding-top: 1.5rem;
    padding-bottom: 3rem;
    letter-spacing: -1px;
}
.intro .introSub{
    display: flex;
    flex-direction: row;
    /* align-items: center; */
    justify-content: space-between;
}
.intro .introSub .introLeft{
    width: 50%;
}
.intro .introSub .introRight{
    width: 45%;
    margin-top: -8rem;
}
.intro .introSub .introLeft h5{
    font-size: 1.7rem;
    font-weight: 500;
    padding-bottom: 1.2rem;
    line-height: 1.3;
}
.intro .introSub .introLeft p{
    color: #000;
    font-size: 1.1rem;
    padding-bottom: 3rem;
}
.intro .introSub .introLeft a{
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    background: #4169E1;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    text-align: center;
    border-radius: 40px;
}
.intro .introSub .introLeft a:hover{
    color: #000;
    background-color: #fff;
    border: 2px solid #4169E1;
    transition: 0.2s ease;
}
/* intro end */

/* Section 2 */
  .video-wrapper {
    display: flex;
    flex-direction: column;
    width: 35rem;
    height: 100%;
    box-shadow: 1rem 1rem 3rem rgba(0, 0, 0, 0.3);
    overflow: hidden;
  }
  
  .video {
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.3s;
    box-shadow: 1rem 1rem 3rem rgba(0, 0, 0, 0.3);
  }
  /* End of Section 2 */

/* details start */
.details{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 6rem;
    background: #eef0f8;
}
.details h3,h5,h6{
    color: #000;
}
.details .one{
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.details .one h2{
    font-size: 5rem;
    padding-bottom: 1.1rem;
    font-weight: 400;
    font-family: 'Cormorant', sans-serif;
}
.details .one h5{
    font-size: 1.7rem;
    font-weight: 500;
    padding-bottom: 1.2rem;
}
.details .one p{
    color: #000;
    font-size: 1.2rem;
    padding-bottom: 3rem;
}
.details .one a{
    color: #000;
    background: #f13a11;
    padding: 1rem 0;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
}
.details .one a:hover{
    background: #fff;
    color: #f13a11;
}
.details .one img{
    width: 60%;
    object-fit: cover;
    margin:  5rem 0 0 6rem;
}
.details .two{
    width: 45%;
}
.details .two h3{
    font-size: 5rem;
    font-weight: 400;
    color: #4169E1;
    font-family: 'Cormorant', sans-serif;
    padding-bottom: 1.2rem;
}
.details .two h5{
    font-size: 1.7rem;
    font-weight: 500;
    padding-bottom: 1.2rem;
}
.details .two p{
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 0.8rem;
}
/* details end */

/* trainer start */
.trainer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8rem;
    background: #f9f9f9;
}
.trainer .about{
    width: 39%;
}
.trainer .about h2{
    color: #212529;
    font-size: 2.1rem;
    padding-bottom: 1.1rem;
}
.trainer .about p{
    color: #7f8c8d;
    font-size: 1.1rem;
}
.trainer .people{
    width: 57%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.trainer .people .team1{
    width: 45%;
    height: auto;
    background: #fff;
    box-sizing: border-box;
    box-shadow:
        0px 1.9px 3.6px rgba(0, 0, 0, 0.031),
        0px 5.4px 10px rgba(0, 0, 0, 0.045),
        0px 13px 24.1px rgba(0, 0, 0, 0.059),
        0px 43px 80px rgba(0, 0, 0, 0.09);
}
.trainer .people .team1 .img img{
    width: 100%;
    object-fit: cover;
}
.trainer .people .team1 .name, .trainer .people .team1 .pro{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.trainer .people .team1 .name h4{
    color: #212529;
    font-size: 1.5rem;
}
.trainer .people .team1 .pro p{
    color: #212529;
}
.trainer .people .team1 .name i, .trainer .people .team1 .pro i{
    color: #212529;
    font-size: 1.1rem;
    font-weight: bolder;
    cursor: pointer;
}
.trainer .people .team1 .teamDetails{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 10px;
}
.trainer .people .team1 .name{
    padding: 5px 20px 0 20px;
}
.trainer .people .team1 .pro{
    padding: 0 20px 5px 20px;
}
/* trainer end */

/* class start */
.class{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem;
}
.class .para{
    font-size: 1.3rem;
    color: #95a5a6;
    padding-bottom: 50px;
    text-align: center;
}
.class .h2{
    color: #000;
    font-size: 6.5rem;
    font-weight: 500;
    line-height: 0.9;
    font-family: 'Cormorant', sans-serif;
    padding-bottom: 5rem;
    text-align: center;
}
.class .classMenu{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.class .classMenu .team1{
    width: 32%;
    height: auto;
    background: #fff;
    box-sizing: border-box;
    margin-bottom: 1.5rem;
    box-shadow:
        0px 1.9px 3.6px rgba(0, 0, 0, 0.031),
        0px 5.4px 10px rgba(0, 0, 0, 0.045),
        0px 13px 24.1px rgba(0, 0, 0, 0.059),
        0px 43px 80px rgba(0, 0, 0, 0.09);
}
.class .classMenu .team1 .img img{
    width: 60%;
    object-fit: cover;
    padding: 2rem 2rem 0 2rem;
}
.class .classMenu .team1 .teamDetails{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 10px;
}
.class .classMenu .team1 .teamDetails .name{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 5px 30px 0 30px;
}
.class .classMenu .team1 .teamDetails .name .nameDetails h4{
    font-size: 1.7rem;
    color: #212529;
    font-weight: 600;
}
.class .classMenu .team1 .teamDetails .name .nameDetails p{
    font-size: 1.1rem;
    color: #212529;
}
.class .classMenu .team1 .teamDetails .name .nameDetails p span{
    font-size: 1.1rem;
    font-weight: 700;
}
.class .classMenu .team1 .teamDetails .name .num h5{
    font-size: 1rem;
    background: #f13a11;
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
    text-align: center;
    border-radius: 50%;
}
.class .classMenu .team1 .pro p{
    font-size: 1.1rem;
    color: #212529;
}
.class .classMenu .team1 .pro{
    padding: 15px 30px 30px 30px;
}
/* class end */

/* contact start */
.contact{
    padding: 8rem; 
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #212529;
}
.contact .form{
    width: 45%;
}
.contact .form h2{
    font-size: 2rem;
    color: #fff;
    padding-bottom: 10px;
    width: 100%;
}
.contact .form .submit{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.contact .form .submit input, .contact .form .submit textarea{
    padding: 15px;
    outline: none;
    margin: 13px 0;
    width: 100%;
    border: 1px solid #95a5a6;
}
.contact .form .submit input:focus, .contact .form .submit textarea:focus{
    border: 1px solid #111;
}
.contact .form .submit input::placeholder{
    font-size: 1.1rem;
    color: #7f8c8d;
}
.contact .form .submit textarea::placeholder{
    font-size: 1.1rem;
    color: #7f8c8d;
    height: 80%;
}
.contact .form .submit a{
    font-size: 1.1rem;
    background: #111;
    color: #fff;
    padding: 15px 0;
    margin: 13px 0;
    text-decoration: none;
    width: 100%;
    text-align: center;
}
.contact .map{
    width: 45%;
}
.contact .map iframe{
    width: 100%;
}
.contact .map h2{
    font-size: 2rem;
    color: #212529;
    padding-bottom: 10px;
    width: 100%;
}
.contact .map p{
    font-size: 1.1rem;
    color: #212529;
    padding-bottom: 30px;
    width: 100%;
}
.contact .map p i{
    color: red;
    padding-right: 10px;
}
/* contact end */

/* services start */
.services{
    background-color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 6rem;
}
.services .servicesLeft{
    width: 50%;
}
.services .servicesLeft h2{
    color: #ff4101;
    font-size: 6.5rem;
    font-weight: 500;
    line-height: 0.9;
    font-family: 'Cormorant', sans-serif;
    padding-bottom: 2.5rem;
}
.services .servicesLeft h5{
    font-size: 1.7rem;
    font-weight: 500;
    color: #000;
    padding-bottom: 0.5rem;
}
.services .servicesLeft p{
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 1.3rem;
}
.services .servicesLeft .findBtn{
    padding-bottom: 2rem;
}
.services .servicesLeft .findBtn a{
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: #000;
}
.services .servicesLeft .findBtn a i{
    color: #ff4101;
}
.services .servicesRight{
    width: 45%;
}
.services .servicesRight img{
    width: 100%;
    object-fit: cover;
}
/* services end */

/* sectors start */
.sectors{
    /* background: #f4f4f4; */
    background: #B7C5C5;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 6rem;
}
.sectors .sectorsLeft{
    width: 50%;
}
.sectors .sectorsLeft h2{
    color: #000;
    font-size: 6.5rem;
    font-weight: 500;
    line-height: 0.9;
    font-family: 'Cormorant', sans-serif;
    padding-bottom: 2.5rem;
}
.sectors .sectorsRight{
    padding-top: 1.2rem;
}
.sectors .sectorsRight h5{
    font-size: 1.7rem;
    font-weight: 500;
    color: #000;
    padding-bottom: 0.5rem;
}
.sectors .sectorsRight p{
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 1.3rem;
}
.sectors .sectorsLeft p{
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 1.3rem;
}
.sectors .sectorsLeft img{
    width: 60%;
    object-fit: cover;
    margin:  3rem 0 0 6rem;
}
.sectors .sectorsLeft .findBtn{
    padding-bottom: 2rem;
}
.sectors .sectorsRight .findBtn a{
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}
.sectors .sectorsRight .findBtn a i{
    color: #FFB592;
}
.sectors .sectorsRight{
    width: 45%;
}
/* sectors end */

/* recognition start */
.recognition{
    background-color: #1a1a1a;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 6rem;
}
.recognition .recognitionLeft{
    width: 29%;
}
.recognition .recognitionLeft h2{
    color: #fff;
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 0.9;
    font-family: 'Cormorant', sans-serif;
    padding-bottom: 2.5rem;
}
.recognition .recognitionLeft p{
    font-size: 0.9rem;
    color: #fff;
    padding-bottom: 0.8rem;
}
.recognition .recognitionRight{
    width: 63%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-right: 30px;
}
/* recognition end */

/* talent start */
.talent{
    padding: 6rem;
}
.talent .talentSub{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.talent .talentSub .talentLeft{
    width: 52%;
}
.talent .talentSub .talentLeft h2{
    color: #000;
    font-size: 5.1rem;
    padding-bottom: 1.1rem;
    font-weight: 600;
    line-height: 1;
    font-family: 'Cormorant', sans-serif;
    padding-top: 1.5rem;
    padding-bottom: 3rem;
    letter-spacing: -1px;
}
.talent .talentSub .talentLeft p{
    color: #000;
    font-size: 1.2rem;
    font-weight: 400;
    padding-bottom: 3rem;
}
.talent .talentSub .talentLeft a{
    color: #000;
    font-weight: 500;
    font-size: 0.9rem;
    background: #DDB5FF;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    text-align: center;
    border-radius: 40px;
}
.talent .talentSub .talentRight{
    width: 45%;
}
.talent .talentSub .talentRight .img img{
    width: 100%;
    object-fit: cover;
}
/* talent end */

/* position start */
.position{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem;
    background-color: #F4F4F4;
}
.position .para{
    font-size: 1.3rem;
    color: #95a5a6;
    padding-bottom: 50px;
    text-align: center;
}
.position .h2{
    color: #000;
    font-size: 5rem;
    padding-bottom: 1.1rem;
    font-weight: 500;
    line-height: 1;
    font-family: 'Cormorant', sans-serif;
    padding-top: 1.5rem;
    padding-bottom: 3rem;
    letter-spacing: -1px;
    text-align: center;
}
.position .positionMenu{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 20px;
}
.position .positionMenu .position1{
    width: 32%;
    height: auto;
    background: #fff;
    box-sizing: border-box;
    border: 1px solid #c0cdce;
    border-radius: 10px;
}
.position .positionMenu .position1:hover{
    width: 32%;
    height: auto;
    background: #fff;
    box-sizing: border-box;
    border: 1px solid #c0cdce;
    border-radius: 10px;
    text-decoration: underline;
    transition: 0.3s ease-in-out;
    box-shadow:
        0px 1.9px 3.6px rgba(0, 0, 0, 0.021),
        0px 5.4px 10px rgba(0, 0, 0, 0.03),
        0px 13px 24.1px rgba(0, 0, 0, 0.039),
        0px 43px 80px rgba(0, 0, 0, 0.06)
  ;
}
.position .positionMenu .position1 .positionDetails{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 10px;
}
.position .positionMenu .position1 .positionDetails .name{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 5px 30px 0 30px;
}
.position .positionMenu .position1 .positionDetails .name .nameDetails h6{
    padding-top: 1rem;
    font-size: 0.8rem;
    color: #545e5f;
    font-weight: 300;
}
.position .positionMenu .position1 .positionDetails .name .nameDetails h4{
    font-size: 1.2rem;
    color: #212529;
    font-weight: 300;
}
.position .positionMenu .position1 .positionDetails .name .nameDetails p{
    font-size: 0.9rem;
    color: #212529;
    font-weight: 300;
}
.position .positionMenu .position1 .positionDetails .name .nameDetails i{
    color: #0E61FE;
    cursor: pointer;
    padding-top: 1.5rem;
}
.position .positionMenu .position1 .pro{
    padding: 15px 30px 30px 30px;
}
/* position end */

/* modal start */
.popup{
    width: 43%;
    height: 40rem;
    margin: 3rem 26rem;
    outline: none;
    border-color: #c0cdce;
    border-radius: 17px;
}
.mod1{
    width: 100%;
    height: 40rem;
    background: #fff;
    box-sizing: border-box;
    border-radius: 17px;
}
.mod1 .modDetails{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 10px;
}
.mod1 .modDetails .name{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5px 10px 0 10px;
}
.mod1 .modDetails .name .nameDetails{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #cbdadb;
}
.mod1 .modDetails .name .nameDetails h4{
    font-size: 1.5rem;
    font-style: italic;
    color: #212529;
    font-weight: 500;
}
.mod1 .modDetails .name .namePara li{
    font-size: 1rem;
    color: #212529;
    font-weight: 400;
    padding-bottom: 12px;
}
.mod1 .modDetails .name .nameDetails i{
    font-size: 1.3rem;
    color: #434a4b;
    cursor: pointer;
    font-weight: bolder;
}
.mod1 .modDetails .name .namePara{
    padding: 20px 5px 5px 10px;
}
/* modal end */

/* summary start */
.summary{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* align-items: center; */
    padding: 5rem;
    background: #fff;
}
.summary .summaryLeft{
    width: 60%;
}
.summary .summaryLeft h3{
    color: #4169E1;
    font-size: 5.5rem;
    font-weight: 400;
    font-family: 'Cormorant', sans-serif;
    line-height: 1;
    padding-bottom: 4rem;
}
.summary .summaryLeft p{
    font-size: 1.1rem;
    color: #000;
    padding-bottom: 0.8rem;
}
.summary .summaryLeft .summaryContent li{
    color: #000;
    font-size: 1.1rem;
    line-height: 1.7;
}
.summary .summaryRight{
    width: 35%;
    padding-top: 1.4rem;
}
.summary .summaryRight h2{
    color: #fff;
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 0.9;
    /* font-family: 'Cormorant', sans-serif; */
    padding-bottom: 2rem;
}
.summary .summaryRight h5{
    font-size: 2rem;
    font-weight: 400;
    padding-bottom: 2.5rem;
}
.summary .summaryRight .img img{
    width: 100%;
    object-fit: cover;
    position: absolute;
    bottom: 50%;
    transform: translate(-50%);
}
.summary .summaryRight a{
    color: #000;
    font-weight: 500;
    font-size: 0.9rem;
    background: #fff;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    text-align: center;
    border-radius: 40px;
}
.summary .summaryRight a:hover{
    background: #ff5733;
    color: #000;
    transition: 0.3s ease;
}
/* summary end */

/* expIntro start */
.expIntro{
    padding: 6rem 6rem 1rem 6rem;
}
.expIntro h2{
    color: #000;
    font-size: 6rem;
    padding-bottom: 1.1rem;
    font-weight: 600;
    line-height: 1;
    font-family: 'Cormorant', sans-serif;
    padding-top: 1.5rem;
    padding-bottom: 3rem;
    letter-spacing: -1px;
}
.expIntro p{
    color: #000;
    font-size: 1.1rem;
    font-weight: 300;
}
/* expIntro end */

/* contact card form start */
.contactIntro{
    padding: 10rem 6rem;
    background-color: #1A1A1A;
}
.contactIntro h2{
    color: #fff;
    font-size: 7rem;
    padding-bottom: 1.1rem;
    font-weight: 600;
    line-height: 1;
    font-family: 'Cormorant', sans-serif;
    padding-top: 1.5rem;
    padding-bottom: 3rem;
    letter-spacing: -1px;
}
.contactIntro .contactIntroSub{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.contactIntro .contactIntroSub .contactIntroLeft{
    width: 48%;
}
.contactIntro .contactIntroSub .contactIntroLeft p{
    color: #fff;
    font-size: 1.1rem;
    font-weight: 200;
    padding-bottom: 3rem;
}
/* .contactIntro .contactIntroSub .contactIntroLeft a{
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    background: #DDB5FF;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    text-align: center;
    border-radius: 40px;
} */
.contactIntro .contactIntroSub .contactIntroRight{
    width: 48%;
}
.contactIntro .contactIntroSub .contactIntroRight p{
    color: #4169E1;
    font-size: 1.2rem;
    font-weight: 500;
    padding-left: 1rem;
}
.card-form {
	padding: 1.5rem 1.2rem;
}
.input {
	display: flex;
	flex-direction: column-reverse;
	position: relative;
	padding-top: 0.2rem;
	&+.input {
		margin-top: 1.5rem;
	}
}
.input-field {
	border: 0;
	z-index: 1;
    color: #fff;
	background-color: transparent;
	border-bottom: 2px solid #8D8D8D; 
	font: inherit;
	font-size: 1rem;
	padding: 1rem 1.5rem;
	&:focus, &:valid {
		outline: 0;
		border-bottom-color: #eee;
		&+.input-label {
			color: #4169E1;
			transform: translateY(-1.5rem);
		}
	}
}
.attachInput label{
    color: #fff;
    padding-top: 20px 0px 0px 20px;
}
input[type="file"] {
    padding: 20px 0px 0px 0px;
    font-family: Arial, sans-serif;
    color: #8D8D8D;
}
.action {
	margin-top: 2rem;
}

.action-button {
	font: inherit;
	font-size: 0.9rem;
	padding: 1.2rem 2.5rem;
	width: 30%;
	font-weight: 500;
	background-color: #4169E1;
	border-radius: 40px;
	color: #FFF;
	border: 0;
	&:hover {
        color: #fff;
        background-color: #1a1a1a;
        border: 2px solid #4169E1;
        transition: 0.2s ease-in-out;
	}
	&:focus {
		outline: 0;
	}
}
.contactIntroRight .cont_box{
    width: 50%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
}
.contactIntroRight .cont_box .cont_btn{
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    background: none;
    border: none;
    padding: 18px 25px;
    cursor: pointer;
}
.cont_box{
    padding: 2px 15px;
}
.cont{
    display: none;
    animation: moving .5s ease;
}
@keyframes moving{
    from{transform: translateX(50px);opacity: 0;}
    to{transform: translateX(0px);opacity: 1;}
}
.cont.active{
    display: block;
}
.cont h2{
    margin-bottom: 10px;
}
.cont_line{
    position: absolute;
    top: 56px;
    left: 20px;
    width: 90px;
    height: 5px;
    background-color: #7360ff;
    transition: all 0.3s ease-in-out;
}
/* contact card form end */

/* connected start */
.connected{
    padding: 0 0 0 0;
    margin-bottom: -7px;
}
.connected .connectedSub{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}
.connected .connectedSub .connectedLeft{
    width: 46%;
    padding: 3rem;
    background: linear-gradient(to right, #97E7FF, #A2B1FF);
    border-bottom-right-radius: 40px;
    z-index: 10000;
    transform: translateY(-58px);
}
.connected .connectedSub .connectedLeft h2{
    color: #000;
    font-size: 3.5rem;
    padding-bottom: 1.1rem;
    font-weight: 400;
    line-height: 1;
    padding-bottom: 2.5rem;
    letter-spacing: -1px;
}
.connected .connectedSub .connectedLeft p{
    color: #000;
    font-size: 0.9rem;
    font-weight: 500;
}
.connected .connectedSub .connectedLeft a{
    color: #000;
    font-weight: 500;
    font-size: 0.9rem;
    background: #DDB5FF;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    text-align: center;
    border-radius: 40px;
}
.connected .connectedSub .connectedRight{
    width: 50%;
    height: auto;
    padding-top: 5rem;
    transform: translateX(-95px);
}
.connected .connectedSub .connectedRight .img img{
    width: 100%;
    object-fit: cover;
    z-index: -1;
}
/* connected end */

/* contact tab start */
.containerMain{
    background-color: #deeeff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.container{
    width: 600px;
    background-color: white;
    padding: 30px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.1);
    border-radius: 20px;
}
.tab_box{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 2px solid rgba(229,229,229);
    position: relative;
}
.tab_box .tab_btn{
    font-size: 18px;
    font-weight: 600;
    color: #919191;
    background: none;
    border: none;
    padding: 18px;
    cursor: pointer;
}
.tab_box .tab_btn.active{
    color: #7360ff;
}
.content_box{
    padding: 20px;
}
.content_box .content{
    display: none;
    animation: moving .5s ease;
}
@keyframes moving{
    from{transform: translateX(50px);opacity: 0;}
    to{transform: translateX(0px);opacity: 1;}
}
.content_box .content.active{
    display: block;
}
.content_box .content h2{
    margin-bottom: 10px;
}
.line{
    position: absolute;
    top: 62px;
    left: 17px;
    width: 90px;
    height: 5px;
    background-color: #7360ff;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}
/* contact tab end */

/* policy start */
.policy{
    padding: 8rem 20rem 8rem 25rem;
    background-color: #1A1A1A;
}
.policy h2{
    color: #000;
    font-size: 6rem;
    padding-bottom: 1.1rem;
    font-weight: 600;
    line-height: 1;
    font-family: 'Cormorant', sans-serif;
    padding-top: 1.5rem;
    padding-bottom: 3rem;
    letter-spacing: -1px;
}
.policy .policySub{
    display: flex;
    flex-direction: row;
    /* align-items: center; */
    justify-content: space-between;
}
.policy .policySub .policyLeft{
    width: 100%;
}
.policy .policySub .policyRight{
    width: 45%;
    margin-top: -8rem;
}
.policy .policySub .policyLeft h3{
    color: #fff;
    font-size: 2.8rem;
    font-weight: 600;
    padding-bottom: 1rem;
    line-height: 1.3;
    font-family: 'Cormorant', sans-serif;
    text-transform: uppercase;
    
}
.policy .policySub .policyLeft h5{
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    padding-bottom: 1.2rem;
    line-height: 1.3;
    text-transform: uppercase;
    padding-top: 3rem;
}
.policy .policySub .policyLeft p{
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.9;
    font-weight: 400;
    padding-bottom: 3rem;
}
.policy .policySub .policyLeft h6{
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.9;
    font-weight: 400;
}
.policy .policySub .policyLeft a{
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    background: #4169E1;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    text-align: center;
    border-radius: 40px;
}
.policy .policySub .policyLeft a:hover{
    color: #000;
    background-color: #fff;
    border: 2px solid #4169E1;
    transition: 0.2s ease;
}
/* policy end */

/* footer start */
.footer {
    padding: 5rem 5rem 2rem 5rem;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer .foot1 .footerLogo{
    width: 20%;
}
.footer .foot1 .footerLogo a i{
    color: #fff;
    padding-right: 2.5rem;
    font-size: 1.3rem;
}
.footer .foot1 .footerLogo i:hover{
    color: #4169E1;
    transition: 0.2s ease-in-out;
}
.footer .foot1 .footerLogo a img{
    width: 100%;
    object-fit: cover;
}
.footer .foot1{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: #fff;
    padding-bottom: 5rem;
}
.footer .foot1 h4{
    font-size: 2.1rem;
    line-height: 1.2;
}
#footerMenu {
    width: 20%;
}
#footerMenu li{
    list-style: none;
    padding-bottom: 0.5rem;
}
#footerMenu li a{
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
}
#footerMenu li a:hover{
    color: #ffa500;
}
.footer .foot1 p{
    font-size: 0.9rem;
    padding-bottom: 0.9rem;
}
.footer .foot1 .footerPara{
    width: 20%;
}
.footer .foot1 .footerPara p span {
    font-size: 1.1rem;
}
.footer .foot1 .footerSubscribe{
    width: 20%;
}
.footer .foot1 .footerSubscribe p{
    font-size: 0.8rem;
    font-weight: 300;
    padding-bottom: 1.8rem;
}
.footer .foot1 .footerSubscribe p span{
    font-size: 0.9rem;
    font-weight: 500;
    padding-bottom: 0.8rem;
}
.footer .foot1 .footerSubscribe a{
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    background: #4169E1;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    text-align: center;
    border-radius: 40px;
}
.footer .foot1 .footerSubscribe a:hover{
    background-color: #000;
    border: 2px solid #4169E1;
    transition: 0.3s ease-in-out;
}
.footer .foot2{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.footer .foot2 p{
    color: #fff;
}
.footer .foot2 p a{
    text-decoration: none;
    color: #fff;
}
/* footer end */

/* media query start */
@media screen and (max-width: 1042px){
    .nav{
        padding: 1rem 4.5rem;
    }
    .nav h2{
        font-size: 1.4rem;
    }
    .intro .introSub{
        flex-direction: column;
        align-items:baseline;
    }  
    .intro .introSub .introRight{
        width: 45%;
        margin-top: 1rem;
    }
    .video-wrapper {
      width: 45rem;
      height: 20rem;
      position: absolute;
      top: 62rem;
      right: 12.5rem;
    }  
    .video {
      object-fit: cover;
      opacity: 0.9;
      transition: opacity 0.3s;
      box-shadow: 1rem 1rem 3rem rgba(0, 0, 0, 0.3);
    }
    #item li{
        padding-right: 30px;
    }
    #item li a{
        font-size: 0.9rem;
    }
    #item .icon i{
        padding-right: 20px;
    } 
    
    .popup{
        margin: 3rem 19rem;
    }
}
@media screen and (max-width: 991px){
    .nav{
        padding: 1rem 3rem;
    }
    .nav h2{
        font-size: 1.6rem;
    }
    .intro h2{
        font-size: 4rem;
    }
    .intro .introSub{
        flex-direction: column;
        align-items:baseline;
    } 
    .intro .introSub .introRight{
        width: 45%;
        margin-top: 1rem;
    }
    .video-wrapper {
      width: 45rem;
      height: 20rem;
      position: absolute;
      top: 62rem;
      right: 12.5rem;
    }  
    .video {
      object-fit: cover;
      opacity: 0.9;
      transition: opacity 0.3s;
      box-shadow: 1rem 1rem 3rem rgba(0, 0, 0, 0.3);
    }
    .intro .introSub .introLeft h5{
        font-size: 1.5rem;
    }
    .intro .introSub .introLeft p{
        font-size: 1rem;
    }
    #item{
        flex-direction: column;
        text-align: center;
        width: 250px;
        height: 80vh;
        position: fixed;
        top: 10px;
        right: -300px;
        background: rgba(0,0,0,0.8);
        z-index: 100000;
        margin-top: 4.5rem;
        transition: 0.5s;
    }
    #item li{
        padding-right: 0;
        padding: 4px 0;
    }
    #item li a{
        font-size: 1.2rem;
        color: #fff;
    }
    #item .icon{
        padding-top: 20px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    #item .icon a i{
        padding: 0 15px 0 15px;
        color: #fff;
    }
    #bar{
        display: initial;
        cursor: pointer;
    }
    
    .mid p{
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    .mid h2{
        font-size: 2.5rem;
    }
    .mid .btn{
        margin-top: 1.5rem;
    }
    .mid .btn a{
        font-size: 0.9rem;
    }
    .mid .btn a.simple{
        padding: 0.7rem 1.4rem;
    }
    .mid .btn a.border{
        padding: 0.7rem 1.4rem;
    }

    .details{
        padding: 6rem 7rem;
    }
    .details .one{
        width: 50%;
    }
    .details .one h2{
        font-size: 4rem;
        padding-bottom: 1rem;
    }
    .details .one h3{
        font-size: 2rem;
        padding-bottom: 1rem;
    }
    .details .one h5{
        font-size: 1.5rem;
        padding-bottom: 1rem;
    }
    .details .one p{
        font-size: 1.1rem;
        padding-bottom: 2.2rem;
    }
    .details .one a{
        font-size: 0.9rem;
    }
    .details .one img{
        display: none;
    }
    .details .two{
        padding-left: 3.5rem;
    }
    .details .two h3{
        font-size: 4rem;
        padding-bottom: 1rem;
    }
    .details .two h5{
        font-size: 1.5rem;
        padding-bottom: 1rem;
    }
    .details .two p{
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .trainer{
        padding: 6rem 7rem;
    }
    .trainer .about h2{
        font-size: 2rem;
        padding-bottom: 1.4rem;
    }
    .trainer .about p{
        font-size: 1rem;
    }
    .trainer .people .team1{
        width: 48%;
    }
    .trainer .people .team1 .name h4{
        font-size: 1.1rem;
    }
    .trainer .people .team1 .name i, .trainer .people .team1 .pro i{
        font-size: 1.1rem;
    }
    .trainer .people .team1 .name{
        padding: 5px 15px 0 15px;
    }
    .trainer .people .team1 .pro{
        padding: 0 15px 5px 15px;
    }
    
    .class{
        padding: 4rem;
    }
    .class .para{
        font-size: 1.1rem;
        padding-bottom: 4px;
    }
    .class .h2{
        font-size: 4rem;
        padding-bottom: 30px;
    }
    .class .classMenu .team1 .teamDetails{
        padding-bottom: 7px;
    }
    .class .classMenu .team1 .teamDetails .name{
        padding: 5px 15px 0 15px;
    }
    .class .classMenu .team1 .teamDetails .name .nameDetails h4{
        font-size: 1.1rem;
    }
    .class .classMenu .team1 .teamDetails .name .nameDetails p{
        font-size: 0.6rem;
    }
    .class .classMenu .team1 .teamDetails .name .nameDetails p span{
        font-size: 1rem;
    }
    .class .classMenu .team1 .teamDetails .name .num h5{
        font-size: 0.8rem;
        width: 3.2rem;
        height: 3.2rem;
        line-height: 3.2rem;
    }
    .class .classMenu .team1 .pro p{
        font-size: 1rem;
    }
    .class .classMenu .team1 .pro{
        padding: 15px 15px 30px 15px;
    }

    .contact{
        padding: 6rem; 
    }
    .contact .form h2{
        font-size: 2rem;
        padding-bottom: 7px;
    }
    .contact .form .submit input, .contact .form .submit textarea{
        padding: 12px;
        margin: 10px 0;
    }
    .contact .form .submit input::placeholder{
        font-size: 1rem;
    }
    .contact .form .submit textarea::placeholder{
        font-size: 1rem;
    }
    .contact .form .submit a{
        font-size: 1rem;
        padding: 13px 0;
        margin: 10px 0;
    }
    .contact .map h2{
        font-size: 2rem;
        padding-bottom: 7px;
    }
    .contact .map p{
        font-size: 1rem;
        padding-bottom: 20px;
    }

    .services .servicesLeft h2{
        font-size: 4rem;
        font-weight: 500;
        line-height: 0.9;
        font-family: 'Cormorant', sans-serif;
        padding-bottom: 1rem;
    }
    .services .servicesLeft h5{
        font-size: 1.5rem;
        font-weight: 500;
        color: #000;
        padding-bottom: 1rem;
    }
    .services .servicesLeft p{
        font-size: 1rem;
        color: #000;
    }

    .sectors .sectorsLeft h2{
        font-size: 4rem;
        font-weight: 500;
        padding-bottom: 1rem;
    }
    .sectors .sectorsRight h5{
        font-size: 1.5rem;
        font-weight: 500;
        padding-bottom: 1rem;
    }
    .sectors .sectorsRight p{
        font-size: 1rem;
        color: #000;
        margin-bottom: 1rem;
    }
    
    .talent{
        padding: 4rem;
        overflow: hidden;
    }
    .talent .talentSub{
        display: flex;
        flex-direction: row;
        justify-content:flex-start;
    }
    .talent .talentSub .talentLeft{
        width: 48%;
    }
    .talent .talentSub .talentLeft h2{
        font-size: 4rem;
        padding-bottom: 1.4rem;
    }
    .talent .talentSub .talentLeft p{
        font-size: 1rem;
        font-weight: 400;
        padding-bottom: 1rem;
    }
    .talent .talentSub .talentRight{
        width: 30%;
    }
    .talent .talentSub .talentRight .img img{
        width: 30%;
        object-fit:none;
    }
    .position{
        padding: 4rem;
    }
    .position .h2{
        font-size: 4rem;
        padding-bottom: 1rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .position .positionMenu{
        margin-bottom: 10px;
        gap: 10px;
    }
    .position .positionMenu .position1{
        width: 32%;
    }
    .position .positionMenu .position1 .positionDetails{
        padding-bottom: 5px;
    }
    .position .positionMenu .position1 .positionDetails .name{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 5px 15px 0 15px;
    }
    .position .positionMenu .position1 .positionDetails .name .nameDetails h6{
        padding-top: 0.8rem;
        font-size: 0.6rem;
    }
    .position .positionMenu .position1 .positionDetails .name .nameDetails h4{
        font-size: 1rem;
    }
    .position .positionMenu .position1 .positionDetails .name .nameDetails p{
        font-size: 0.7rem;
    }
    .position .positionMenu .position1 .positionDetails .name .nameDetails a i{
        padding-top: 1.2rem;
    }
    .position .positionMenu .position1 .pro{
        padding: 10px 10px 10px 10px;
    }
    
    .popup{
        width: 43%;
        margin: 3rem 17rem;
    }

    .contactIntro{
        padding: 5rem;
    }
    .contactIntro h2{
        font-size: 5rem;
        padding-bottom: 1rem;
    }
    .contactIntro .contactIntroSub{
        flex-direction: column;
        justify-content: center;
    }
    .contactIntro .contactIntroSub .contactIntroLeft{
        width: 100%;
    }
    .contactIntro .contactIntroSub .contactIntroRight{
        width: 80%;
    }
    .contactIntro .contactIntroSub .contactIntroLeft p{
        font-size: 1rem;
    }
    .input {
        display: flex;
        flex-direction: column-reverse;
        position: relative;
        padding-top: 0.1rem;
        &+.input {
            margin-top: 1rem;
        }
    }
    .input-field {
        font-size: 0.8rem;
        padding: 0.8rem 1.2rem;
    }    
    .action-button {
        font: inherit;
        font-size: 0.9rem;
        padding: 0.9rem 2rem;
    }  

    .connected{
        padding: 0 0 0 0;
        margin-bottom: 0;
    }      
    .connected .connectedSub .connectedLeft{
        width: 52%;
        padding: 2.5rem;
        transform: translateY(-80px);
    }
    .connected .connectedSub .connectedLeft h2{
        font-size: 2.5rem;
    }
    .connected .connectedSub .connectedLeft p{
        color: #000;
        font-size: 0.8rem;
        font-weight: 500;
    }
    .connected .connectedSub .connectedLeft a{
        padding: 0.9rem 2rem;
    }
    .connected .connectedSub .connectedLeft .action button{
        width: 40%;
    }
    .connected .connectedSub .connectedRight{
        width: 55%;
        height: auto;
        padding-top: 4rem;
        transform: translateX(0px);
        overflow: hidden;
    }
    .connected .connectedSub .connectedRight .img img{
        width: 100%;
        height: 50vh;
        object-fit: cover;
        z-index: -1;
    }

    .footer{
        padding: 4rem;
    }
    .footer .foot1 .footerSubscribe a{
        font-weight: 400;
        font-size: 0.7rem;
        background: #4169E1;
        padding: 0.9rem 2rem;
        text-decoration: none;
        text-align: center;
        border-radius: 40px;
    }
    .footer .foot1 .footerMenu{
        width: 15%;
    }
    .footer .foot1 .footerPara{
        margin-left: -45px;
    }
    .footer .foot1 .footerPara p span {
        font-size: 1.1rem;
    }
    .policy{
        padding: 4rem 12rem 4rem 15rem;
    }
}
@media screen and (max-width: 768px){
    .nav h2{
        font-size: 1.5rem;
    }
    .intro h2{
        font-size: 4rem;
    }
    .intro .introSub{
        flex-direction: column;
        align-items:baseline;
    } 
    .intro .introSub .introLeft{
        width: 80%;
    } 
    .intro .introSub .introRight{
        width: 45%;
        margin-top: 1rem;
    }
    .video-wrapper {
      width: 45rem;
      height: 20rem;
      position: absolute;
      top: 62rem;
      right: 12.5rem;
    }  
    .video {
      object-fit: cover;
      opacity: 0.9;
      transition: opacity 0.3s;
      box-shadow: 1rem 1rem 3rem rgba(0, 0, 0, 0.3);
    }
    .back{
        background-position: center;
    }
    
    .mid p{
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    .mid h2{
        font-size: 2.1rem;
    }
    .mid .btn{
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .mid .btn a.simple{
        padding: 0.7rem 1.4rem;
        margin-bottom: 7px;
    }
    .mid .btn a.border{
        padding: 0.7rem 1.4rem;
    }

    .details{
        padding: 5rem 2rem;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .details .one{
        width: 70%;
    }
    .details .one a{
        font-size: 1rem;
    }
    .details .one img{
        display: none;
    }
    .details .two{
        padding-left: 0rem;
        border-left: 0;
        border-top: 1px solid #666262;
        width: 70%;
        margin-top: 1.7rem;
        padding-top: 1.7rem;
    }

    .services{
        padding: 5rem 2rem;
        flex-direction: column;
        justify-content: center;
    }
    .services .servicesLeft{
        width: 70%;
        margin-bottom: 20px;
    }
    .services .servicesRight{
        width: 70%;
    }

    .sectors{
        padding: 5rem 2rem;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .sectors .sectorsLeft{
        width: 70%;
        margin-bottom: 20px;
        text-align: center;
    }
    .sectors .sectorsRight{
        width: 70%;
        margin-top: -3rem;
        margin-bottom: 15rem;
        align-items: center;
        text-align: center;
    }
    .sectors .sectorsLeft img{
        margin-bottom: -680px;
        padding-right: 65px;
        /* display: none; */
    }

    .trainer{
        padding: 5rem 2rem;
        flex-direction: column;
        justify-content: center;
    }
    .trainer .about{
        width: 70%;
        margin-bottom: 1.7rem;
    }
    .trainer .people{
        width: 70%;
    }
    
    .class{
        padding: 5rem 2rem;
    }
    .class .h2{
        font-size: 3rem;
        padding-bottom: 40px;
    }
    .class .classMenu{
        flex-direction: column;
        justify-content: center;
    }
    .class .classMenu .team1{
        width: 50%;
    }

    .contact{
        padding: 5rem 2rem; 
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .contact .form{
        width: 70%;
        margin-bottom: 1.5rem;
    }
    .contact .form h2{
        font-size: 2.5rem;
    }
    .contact .map{
        width: 60%;
    }
    
    .talent{
        padding: 5rem 2rem;
    }
    .talent .talentSub{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .talent .talentSub .talentLeft{
        width: 70%;
    }
    .talent .talentSub .talentLeft h2{
        font-size: 3rem;
    }
    .talent .talentSub .talentRight{
        width: 100%;
    }
    .talent .talentSub .talentRight .img img{
        width: 20%;
    }

    .position{
        padding: 5rem 2rem;
    }
    .position .h2{
        font-size: 3rem;
        padding-bottom: 2rem;
    }
    .position .positionMenu{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .position .positionMenu .position1{
        width: 45%;
    }
    .position .positionMenu .position1:hover{
        width: 45%;
    }
    
    .popup{
        width: 50%;
        margin: 3rem 17rem;
    }

    .contactIntro{
        padding: 5rem 2rem;
    }
    .contactIntro h2{
        font-size: 4.5rem;
        padding-bottom: 1rem;
    }
    .contactIntro .contactIntroSub{
        flex-direction: column;
        justify-content: center;
    }
    .contactIntro .contactIntroSub .contactIntroLeft{
        width: 100%;
    }
    .contactIntro .contactIntroSub .contactIntroRight{
        width: 80%;
    }
    .input {
        display: flex;
        flex-direction: column-reverse;
        position: relative;
        padding-top: 0.1rem;
        &+.input {
            margin-top: 0.2rem;
        }
    }
    .action-button {
        font: inherit;
        font-size: 0.9rem;
        padding: 0.5rem 1.7rem;
    } 

    .connected{
        padding: 0 0 0 0;
        margin-bottom: 0px;
    }     
    .connected .connectedSub{
        flex-direction: column;
        justify-content: center;
    }
    .connected .connectedSub .connectedLeft{
        width: 70%;
        padding: 2.5rem;
        margin-left: -220px;
        transform: translateY(0px);
    }
    .connected .connectedSub .connectedLeft h2{
        font-size: 2rem;
    }
    .connected .connectedSub .connectedLeft p{
        color: #000;
        font-size: 0.8rem;
        font-weight: 500;
    }
    .connected .connectedSub .connectedLeft a{
        padding: 0.9rem 1.5rem;
    }
    .connected .connectedSub .connectedLeft .action button{
        width: 40%;
    }
    .connected .connectedSub .connectedRight{
        /* width: 100%;
        height: 68vh;
        padding-top: 0;
        transform: translateX(50px);
        overflow: hidden; */
        display: none;
    }
    /* .connected .connectedSub .connectedRight .img img{
        width: 100%;
        object-fit: cover;
        z-index: -1;
    } */
    .policy{
        padding: 3rem 8rem 3rem 10rem;
    }

    .footer{
        padding: 5rem 2rem;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .footer .foot1{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .footer .foot1 .footerLogo{
        width: 70%;
        /* align-items: center; */
        margin-bottom: 20px;
        padding-left: 1rem;
    }
    .footer .foot1 .footerLogo a img{
        width: 150px;
    }
    .footer .foot1 .footerPara{
        width: 70%;
        margin-bottom: 20px;
        /* align-items: center;
        text-align: center; */
        margin-left: 1px;
    }
    #footerMenu{
        width: 70%;
        margin-bottom: 20px;
        align-items: center;
        text-align: center;
    }
    .footer .foot1 .footerSubscribe{
        width: 70%;
        margin-bottom: 20px;
        align-items: center;
        text-align: center;
    }
    .footer .foot2{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 496px){
    .nav{
        padding: 1rem;
    }
    .nav h2{
        font-size: 1.5rem;
    }
    .nav .logo a img{
        width: 32%;
        object-fit: cover;
        z-index: 10000000;
    }
    .intro .introSub{
        flex-direction: column;
        align-items:baseline;
    }  
    .intro .introSub .introRight{
        width: 100%;
        margin-top: 3rem;
    }
    .video-wrapper {
      width: 45rem;
      height: 20rem;
      position: absolute;
      top: 62rem;
      right: 12.5rem;
    }  
    .intro .introSub .introRight video {
      object-fit: cover;
      opacity: 0.9;
      transition: opacity 0.3s;
      box-shadow: 1rem 1rem 3rem rgba(0, 0, 0, 0.3);
      width: 100%;
      height: 80%;
    }
    #item{
        flex-direction: column;
        text-align: center;
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        right: -500px;
        background: rgba(0,0,0,0.95);
        z-index: 100000;
        margin-top: 0rem;
        transition: 0.5s;
    }
    #item li{
        padding-right: 0;
        padding: 4px 0;
    }
    #item li a{
        font-size: 1.5rem;
        color: #fff;
    }
    #bar{
        z-index: 1000000;
    }
    .intro{
        padding: 4rem 1rem;
    }
    .intro .introSub{
        flex-direction: column;
        justify-content: center;
    }
    .intro .introSub .introLeft{
        width:100%;
        /* text-align: center; */
    }
    .intro .introSub .introRight{
        width: 100%;
    }
    .intro h2{
        font-size: 2.2rem;
        padding-top: 0.5rem;
    }
    .intro .introSub .introRight img{
        display: none;
        /* width: 50%;
        object-fit: cover;
        margin:  3rem 0 0 0rem; */
    }
    /* .back{
        background-position: center;
    } */
    
    .mid {
        padding: 4rem 1rem;
        align-items: center;
        text-align: center;
    }
    .mid p{
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    .mid h2{
        font-size: 2.1rem;
    }
    .mid .btn{
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .mid .btn a.simple{
        padding: 0.7rem 1.4rem;
        margin-bottom: 7px;
    }
    .mid .btn a.border{
        padding: 0.7rem 1.4rem;
    }

    .details{
        padding: 4rem 1rem;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .details .one{
        width: 100%;
    }
    .details .two{
        width: 100%;
    }
    .details .one h2{
        font-size: 3rem;
    }
    .details .one img{
        display: none;
    }
    .details .two h3{
        font-size: 3rem;
    }

    .services{
        padding: 4rem 1rem;
        flex-direction: column;
        justify-content: center;
    }
    .services .servicesLeft h2{
        padding-bottom: 1.7rem;
    }
    .services .servicesLeft{
        width: 100%;
        margin-bottom: 20px;
    }
    .services .servicesRight{
        width: 100%;
    }

    .sectors{
        padding: 4rem 1rem;
        flex-direction: column;
        /* justify-content: center; */
    }
    .sectors .sectorsLeft{
        width: 100%;
        margin-bottom: 20px;
        text-align: left;
    }
    .sectors .sectorsLeft h2{
        padding-bottom: 1.7rem;
    }
    .sectors .sectorsLeft{
        width: 100%;
        margin-bottom: 20px;
        text-align: left;
    }
    .sectors .sectorsLeft img{
        margin-bottom: -650px;
        padding-right: 65px;
        /* display: none; */
    }
    .sectors .sectorsRight{
        width: 100%;
        text-align: left;
    }

    .trainer{
        padding: 4rem 1rem;
        flex-direction: column;
        justify-content: center;
    }
    .trainer .about{
        width: 70%;
        margin-bottom: 1.7rem;
    }
    .trainer .people{
        width: 70%;
    }
    
    .class{
        padding: 4rem 1rem;
    }
    .class .h2{
        font-size: 2.5rem;
        padding-bottom: 40px;
    }
    .class .classMenu{
        flex-direction: column;
        justify-content: center;
    }
    .class .classMenu .team1{
        width: 80%;
    }
    
    .talent{
        padding: 4rem 1rem;
    }
    .talent .talentSub{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .talent .talentSub .talentLeft{
        width: 90%;
    }
    .talent .talentSub .talentLeft h2{
        font-size: 2.5rem;
    }
    .talent .talentSub .talentRight{
        width: 100%;
    }
    .talent .talentSub .talentRight .img img{
        width: 20%;
    }

    .position{
        padding: 4rem 1rem;
    }
    .position .h2{
        font-size: 2.5rem;
        padding-bottom: 2rem;
    }
    .position .positionMenu{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .position .positionMenu .position1{
        width: 75%;
    }
    .position .positionMenu .position1:hover{
        width: 75%;
    }
    
    .popup{
        width: 65%;
        margin: 3rem 5rem;
    }

    .contact{
        padding: 5rem 6rem; 
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .contact .form{
        width: 70%;
        margin-bottom: 1.5rem;
    }
    .contact .form h2{
        font-size: 2.5rem;
    }
    .contact .map{
        width: 60%;
    }

    .contactIntro{
        padding: 4rem 1rem;
    }
    .contactIntro h2{
        font-size: 3rem;
        font-weight: 400;
        padding-bottom: 2rem;
        font-family: 'Cormorant', sans-serif;
        text-align: center;
    }
    .contactIntro .contactIntroSub{
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .contactIntro .contactIntroSub .contactIntroLeft{
        width: 90%;
        text-align: center;
    }
    .contactIntro .contactIntroSub .contactIntroRight{
        width: 90%;
    }
    .contactIntro .contactIntroSub .contactIntroRight .card-form .action{
        text-align: center;
    }
    .input {
        display: flex;
        flex-direction: column-reverse;
        position: relative;
        padding-top: 0.1rem;
        &+.input {
            margin-top: 0.2rem;
        }
    }
    .action-button {
        font: inherit;
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    } 

    .connected{
        padding: 0 0 0 0;
        margin-bottom: 0;
    }  
    .connected .connectedSub{
        flex-direction: column;
        justify-content: center;
    }     
    .connected .connectedSub .connectedLeft{
        width: 100%;
        padding: 2.5rem;
        margin-left: 0px;
    }
    .connected .connectedSub .connectedLeft .card-form .action{
        text-align: center;
        /* padding: 0.9rem 1rem; */
    }
    .connected .connectedSub .connectedRight{
        display: none;
    }

    .footer{
        padding: 4rem 1rem;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .footer .foot1{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .footer .foot1 .footerLogo{
        width: 70%;
        align-items: center;
        margin-bottom: 20px;
        padding-left: 1rem;
    }
    .footer .foot1 .footerLogo a img{
        width: 150px;
    }
    .footer .foot1 .footerPara{
        width: 70%;
        margin-bottom: 20px;
        align-items: center;
    }
    .footer .foot1 .footerPara p{
        text-align: center;
    }
    #footerMenu{
        width: 70%;
        margin-bottom: 20px;
        align-items: center;
        text-align: center;
    }
    .footer .foot1 .footerSubscribe{
        width: 70%;
        margin-bottom: 20px;
        align-items: center;
        text-align: center;
    }
    .footer .foot2{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .policy{
        padding: 4rem 2rem 2rem 2rem;
    }
    .policy h2{
        font-size: 1.5rem;
    }
}

/* @media screen and (max-width: 1170px){
    .intro .introSub{
        flex-direction: column;
        align-items:baseline;
        margin-bottom: 27rem;
    }  
    .video-wrapper {
    width: 47rem;
    height: 25rem;
    position: absolute;
    top: 48rem;
    right: 19.5rem;
    }
}

@media screen and (max-width: 1095px){
    .intro .introSub{
        flex-direction: column;
        align-items:baseline;
        margin-bottom: 27rem;
    }  
    .video-wrapper {
    width: 45rem;
    height: 22rem;
    position: absolute;
    top: 54rem;
    right: 17.5rem;
    }
}

@media screen and (max-width: 1035px){
    .intro .introSub{
        flex-direction: column;
        align-items:baseline;
        margin-bottom: 25rem;
    }  
    .video-wrapper {
    width: 45rem;
    height: 22rem;
    position: absolute;
    top: 60rem;
    right: 14rem;
    }
} */
/* media query end */   