@import url('https://fonts.googleapis.com/css2?family=Cool+Santa&family=Poppins:wght@400;600&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
}
body{
    margin: 0;
    padding: 0;
    font-family: 'Cool Santa', cursive;
    overflow-x: hidden;
}
::-webkit-scrollbar{
    width: 12px;
}
::-webkit-scrollbar-track{
    background: linear-gradient(rgb(235, 244, 255), rgb(226, 226, 226));
}
::-webkit-scrollbar-thumb{
    background: linear-gradient(rgb(143, 255, 201), rgb(15, 158, 112));
    border-radius: 10px;
}
/*---- HEADER ----*/
header{
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding-top: 10px ;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .5s ease;
    height: 50px;
}
header.sticky{
    display: none;
}
header img{
    width: 160px; 
    height: 140px; 
    margin-top: 20px;
    margin-left: -10px;
}
.navitems{
    display: flex;
    gap: 60px;
}
.navitems li{
    padding-right: 30px;
    transition: 0.5s ease-in-out;
}
.navitems a{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgb(16, 16, 131);
    text-shadow: 0px 1px 25px rgb(11, 81, 33);
}
.navitems li:hover{
    transform: translateY(-3px) translateX(-5px);
    transition: 0.5s ease-in-out;
}
#menu-icon{
    font-size: 37px;
    color: rgb(16, 16, 131);
    z-index: 10001;
    cursor: pointer;
    display: none;
    padding-right: 10px;
    padding-top: -10px;
}
button {
    border: 2px solid #4dbaf2;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 10px;
    transition: .5s ease;
    animation: border-glow 2s infinite;
    box-shadow: 0 0 10px rgba(77, 186, 242, 0.5);
}
button:before{
    content: '';
    background: inherit;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    border-radius: 50px;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.5s;
  }
@keyframes border-glow {
    0% {
        border-color: rgba(34, 128, 78);
        box-shadow: 0 0 10px rgba(34, 128, 78);
    }
    25% {
        border-color: rgb(48, 48, 216);
        box-shadow: 0 0 15px rgb(48, 48, 216);
    }
    50% {
        border-color: #f74d59;
        box-shadow: 0 0 20px rgba(247, 77, 89, 0.9);
    }
    75% {
        border-color: rgba(92, 39, 118);
        box-shadow: 0 0 15px rgba(92, 39, 118);
    }
    100% {
        border-color: rgba(21, 92, 127);
        box-shadow: 0 0 10px rgba(21, 92, 127);
    }
} 
button:hover{
    cursor: pointer;
}
/*---- HERO ----*/
.main{
    /* margin-top: 0; */
    width: 100%;
    background: url(../images/bg-img.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.hero{
    padding: 80px 5% 40px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center; 
}
.hero img{
    width: 100%;
    height: 480px;
    -webkit-animation: upDown 5s infinite;
    animation: upDown 5s infinite;
}
@-webkit-keyframes upDown {
    0% {
      -webkit-transform: translateY(-20px);
              transform: translateY(-20px);
    }
    50% {
      -webkit-transform: translateY(20px);
              transform: translateY(20px);
    }
    100% {
      -webkit-transform: translateY(-20px);
              transform: translateY(-20px);
    }
}
  
@keyframes upDown {
    0% {
        -webkit-transform: translateY(-20px);
                transform: translateY(-20px);
    }
    50% {
        -webkit-transform: translateY(20px);
                transform: translateY(20px);
    }
    100% {
        -webkit-transform: translateY(-20px);
                transform: translateY(-20px);
    }
}

.hero_title h1{
    font-size: 50px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    letter-spacing: 5px;
    background: linear-gradient(rgb(16, 16, 131), #7b68db);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}
.hero_title h3{
    font-size: 20px;
    line-height: 30px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 10px 0 20px;
    color: rgb(42, 40, 40);
    /* text-shadow: 0px 1px 25px rgb(21, 109, 88); */
    margin-bottom: 30px;
}
.hero_title a button{
    color: rgb(16, 16, 131);
    background: none;
    border: 2px solid rgb(16, 16, 131);
    border-radius: 5px;
    margin-left: -2px;
}

/*---- HOW IT WORKS ----*/
.resumeSteps{
    background-color: #e3eedd;
    /* height: 100vh; */
    width: 100%;
}
.resumeStepsTitle{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.resumeStepsTitle h1{
    background: linear-gradient(rgb(16, 16, 131), #7b68db);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 40px;
    letter-spacing: 2px;
    margin-top: 20px;
}
.resumeStepsTitle .btmLine{
    width: 350px;
    height: 4px;
    border-radius: 2px;
    background-color: rgb(120, 207, 120);
    margin-top: 10px;
}
.stepOne, .stepTwo{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 5%;
}
.stepOne img{
    height: 500px;
    width: auto;
}
.stepTwo img{
    height: 400px;
}
#stepThree img{
    margin-left: -60px;
}
.stepTitle{
    width: 50%;
    display: flex;
    flex-direction: column;
}
.step1, .step2{
    text-align: center;
    width: 80px;
    background: linear-gradient(to right, rgb(185, 255, 225), rgb(156, 235, 224));
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 1px 10px rgb(111, 110, 112);
}
.step1 h1, .step2 h1{
    background: linear-gradient(rgb(16, 16, 131), #7b68db);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 60px;
}
.stepOnePara, .stepTwoPara{
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgb(244, 244, 244);
    height: 200px;
    padding: 40px 10px;
    border-radius: 20px;
    box-shadow: 0px 1px 10px rgb(31, 30, 30);
}
#headingOne, #headingTwo{
    display: none;
}
.stepOnePara h4, .stepTwoPara h4{
    background: linear-gradient(rgb(16, 16, 131), #7b68db);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 25px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.stepOnePara p, .stepTwoPara p{
    font-size: 15px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 20px;
}

/*---- RESPONSIVENESS ----*/
@media screen and (max-width:1105px){
    .hero_title h1{
        font-size: 40px;
    }
}
@media screen and (max-width: 1050px){
    .stepOnePara, .stepTwoPara{
        padding: 20px 10px;
    }
}
@media screen and (max-width:940px) {
    #stepThree img{
        margin-left: 0;
    }
    .stepSubSecOne, .stepSubSecTwo{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 40px;
    }
    .stepOne img{
        height: 450px;
        margin-top: -80px;
    }
    #stepThreeImg{
        margin-top: -50px;
    }
    .stepTwo img{
        height: 400px;
        width: 350px;
        margin-top: -50px;
    }
    .stepOne, .stepTwo{
        height: auto;
        width: 80%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgb(244, 244, 244);
        border-radius: 20px;
        box-shadow: 0px 1px 25px rgb(91, 88, 88);
    }
    .stepTitle{
        width: 100%;
        margin-top: -90px
    }  
    #stepTitle{
        order: 2;
    } 
    .stepOnePara, .stepTwoPara{
        background: none;
        box-shadow: none;
    }
    .step1, .step2{
        display: none;
    }
    #headingOne, #headingTwo{
        display: block;
    }
}
@media (max-width:980px){
    .navitems a{
        font-size: 12px;
    }
}
@media screen and (max-width:885px){
    .hero_title h1{
        font-size: 30px;
    }
    .hero_title h3{
        font-size: 15px;
    }
}
@media screen and (max-width:800px){
    .herotitle h1{
        font-size: 45px;
    }
    .herotitle h3{
        font-size: 10px;
        font-weight: 200;
    }
}
@media (max-width: 760px){
    #menu-icon{
        visibility: visible;
        display: block;
        font-size: 30px;
    }
    .navitems{
        z-index: 10001;
        gap: 20px;
        position: absolute;
        width: 100%;
        height: 100vh;
        padding: 70px 50px;
        top: 0;
        right: 0;
        bottom: 0;
        left: 100%;
        display: flex;
        flex-direction: column;
        text-shadow: none;
        backdrop-filter: blur(32px);
        transition: .5s ease;
        overflow-x: hidden;
    }
    .navitems a{
        display: block;
        padding: 0;
        margin: 0px 0px 22px 0px;
        font-size: 20px;
    }
    .navitems.open{
        left: 0;
    }
}
@media (max-width:750px){
    .resumeStepsTitle h1{
        font-size: 25px;
    }
    .resumeStepsTitle .btmLine{
        width: 200px;
    }
}
@media screen and (max-width: 700px) {
    .stepOnePara p, .stepTwoPara p{
        font-size: 13px;
    }  
}
@media screen and (max-width:675px){
    .hero{
        grid-template-columns: 1fr;
    }
    .hero_title{
        margin-top: 40px;
        text-align: center;
    }
    .hero_img img{
        height: auto;
        margin-top: 30px;
    }
    .hero_title a button{
        margin-left: 0;
    }
}
@media screen and (max-width: 580px) {
    .stepOnePara p, .stepTwoPara p{
        line-height: 15px;
    }
    
}
@media screen and (max-width: 490px) {
    .stepOne img, .stepTwo img{
        height: 400px;
    }    
}
@media (max-width: 480px){
    .resumeStepsTitle h1{
        font-size: 20px;
    }
    .resumeStepsTitle .btmLine{
        width: 170px;
    }
}
@media screen and (max-width: 410px){
    .hero_title h1{
        font-size: 25px;
    }
    .hero_title h3{
        font-size: 14px;
    }
    #stepTwoImg{
        height: 200px;
        width: 220px;
    }
}
@media (max-width: 395px){
    .resumeStepsTitle h1{
        letter-spacing: 0;
        font-size: 16px;
    }
    .resumeStepsTitle .btmLine{
        width: 160px;
    }
    .stepOne{
        margin-top: 70px;
    }
    .stepTwo{
        margin-top: 70px;
    }
    .stepOne img{
        height: 200px;
        margin-top: -120px;
    }
    .stepTwo img{
        height: 200px;
        width: auto;
        margin-top: -120px;
    }
    #stepThreeImg{
        margin-top: -100px;
    }
    #stepThree{
        margin-top: 35px;
    }
    .stepTitle{
        margin-top: -70px;
    }
    .stepOnePara h4, .stepTwoPara h4{
        font-size: 20px;
    }
    .stepOnePara p, .stepTwoPara p{
        font-size: 10px;
    }
    #stepThreePara{
        margin-top: 20px;
    }
}
@media screen and (max-width: 365px){
    .hero_title h3{
        font-size: 12px;
    }
} 
@media screen and (max-width: 345px){
    #logo{
        font-size: 18px;
    }
}
@media screen and (max-width: 310px){
    .hero_title h3{
        font-size: 10px;
    }
}    
@media screen and (max-width: 270px){
    .hero_title h1{
        font-size: 20px;
    }
    .hero_title h3{
        font-size: 10px;
    }
}

/*-- ABOUT --*/
.about{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
    background: #b2ff8c;
    position: relative;
    isolation: isolate;
    height: 100vh;
}
.about::before{
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: url(../images/about-img.jpg);
    background-size: cover;
    background-position: center;
    opacity: 80%;
}
.about h1{
    font-size: 40px;
    letter-spacing: 10px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: white;
    text-shadow: 0px 1px 25px purple;
}
.about p{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    padding: 10px;
    text-align: center;
    width: 80%;
    line-height: 20px;
    color: white;
    text-shadow: 0px 1px 25px purple;
}
.aboutImages {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
}
.cd h5{
    margin-bottom: 10px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 18px;
    color: white;
    text-shadow: 0px 1px 25px purple;
    letter-spacing: 1px;
}
.cd img{
    height: 160px;
    width: auto;
    border-radius: 20px;
    box-shadow: 0px 1px 25px white
}
@media screen and (max-width: 980px) {
    .about{
        gap: 20px;
    }   
}
@media screen and (max-width: 640px) {
    .about{
        height: 120vh;
    }
    .about h1{
        font-size: 25px;
        letter-spacing: 5px;
    }
    .about p{
        padding: 0 10px;
        width: 100%;
        font-size: 13px;
    }
    .aboutImages{
        padding: 0 5%;
    }
}
@media screen and (max-width: 570px) {
    .about{
        padding: 20px;
        height: auto;
    }
    .aboutImages{
        flex-direction: column;
        gap: 40px;
    }
}
@media screen and (max-width: 400px) {
    header img{
        width: 120px;
        height: 120px;
    }
    .about h1{
        letter-spacing: 2px;
        font-size: 18px;
    }
    .about p{
        font-size: 10px;
        line-height: 13px;
    }   
}
/*-- RIGHTS SEC --*/
.icons{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: #e3eedd;
    padding: 30px 10px 2px;
}
.icons a i{
    font-size: 30px;
    color: rgb(24, 24, 128);
    transition: 0.5s ease-in-out;
}
.icons a i:hover{
    cursor: pointer;
    transform: translateY(-5px);
    transition: 0.5s ease-in-out;
}
.rightsBy{
    background-color: #e3eedd;
    width: 100%;
    text-align: center;
}
.rightsBy h4{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: rgb(24, 24, 128);
}