@font-face {
    font-family: lemonBold;
    src: url(./font/LEMONMILK-Bold.otf);
  }

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
.firstSec{
    height: 100vh;
    width: 100%;
    background: url(./img/cover.JPG);
    background-size: cover;
    background-repeat: no-repeat;
}

.firstInner{
    background-color: #000000b0;
    height: 100vh;
    padding: 10px;
}
.innerSec{
    height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.firstInner h1{
    font-size: 65px;
    text-align: center;
    color: #A58E5F;
    font-weight: 700;
    text-shadow: 1px 1px 1px #fff;
}
.smallTxt{
    font-size: 25px !important;
    margin-top: px !important;
}

.extraFont{
    font-family: lemonBold;
}
.navbarCustom{
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbarCustom .headsht img{
    border-radius: 50%;
    width: 150px;
}
.navbarCustom .logo img{
    width: 200px;
}
.learnBtn{
    height: auto;
    width: 250px;
    font-size: 16px !important;
    font-weight: 600 !important;
    background-color: #15393B;
    padding: 12px 0;
    text-align: center;
    color: #fff;
    margin: 0 auto;
    text-shadow: none;
}


/* second section  */
.secondSec{
    height: auto;
    width: 100%;
    padding: 50px 0;
    background-color: #15393B;
    color: #fff;
}
.secondSec h2{
    text-align: center;
    margin-bottom: 40px;
}

.secondSec .row{
    align-items: center;
    margin-top: 20px;
}

.secondSec p{
    font-size: 18px;
}

.secondSec p span{
    font-weight: 500;
}

/* footer section  */
.footerSec{
    height: auto;
    width: 100%;
    padding: 50px 0;
    background-color: #15393B;
}

.footerInner{
    height: auto;
    width: 100%;
    padding: 30px 20px;
    background-color: #A58E5F;
    border-radius: 5px;
    text-align: center;
}

.footerInner i{
    height: 20px;
    width: 20px;
    padding: 30px;
    font-size: 22px;
    border-radius: 50px;
    background-color: #15393B;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.footerSec a{
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}
.footerSec a p{
    margin-top: 10px;
}
.disableOnDesk{
    display: none;
    text-decoration: line-through;
}

@media screen and (max-width : 767px) {
    .disableOnDesk{
        display: block;
    }
    .disableOnPhn{
        display: none;
    }
    .firstInner h1{
        font-size: 41px;
    }
    .smallTxt {
        font-size: 15px !important;
    }
    .learnBtn{
        padding: 9px 0;
        font-size: 14px !important
    }
    .secondSec h2 {
        text-align: center;
        margin-bottom: 20px;
        font-size: 20px;
    }
    .secondSec p {
        font-size: 15px;
    }
    .secondSec{
        padding: 35px 0;
    }
    .footerSec {
        padding: 20px 0;
    }
    .footerInner{
        margin-top: 10px;
    }
}