*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html body{
    overflow-x: hidden;
    max-width: 100%;
    font-family: 'Lato', sans-serif;
}

/* navbar */
.navbar{

background-color: #F3F2F2;

}
.navbar-nav{
    margin-left: auto;
}
.navbar-toggler{
    box-shadow: none !important;
}

/* main section */
main{
    margin-top: 120px;
}
h1{
    font-weight: 700;
    font-size: 3rem;
}
.sub-text{
    font-size: 30px;
}
.contact-support-div{
    text-align: center;
    margin-top: 50px;
}
.btn{
    padding-inline: 30px;
    padding-block: 10px;
    color: white;
}
.btn:hover{
    background-color: white;
    outline: blue;
    color: blue;
}



/* Animation  */
#imageAnimation{
    object-fit: cover;
    object-position: 50% 50%;
    animation-duration: 2.5s;
    animation-name: animation;
    transition: all 1s ease;
}
@keyframes animation{
    0%, 5%{
        opacity: 0;
        transform: scale(1.2);
    }
    6%{
        opacity: 1;
    }
    100%{
        opacity: 1;
        transform: scale(1);
    }
}


.heading{
  text-align: center;
    overflow: hidden;
}

#headingAnimation{
    position: relative;
}


#headingAnimation::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 70px;
    background: #ffffff;
    animation: heading 1s;
    z-index: 5;
    transition: all 2s ease;
}
@keyframes heading{
    0%{
        width: 100%;
    }
    100%{
        width: 0px;
    }
}



#sub-heading{
    width: auto;
    animation-duration: 3s;
    animation-name: subHeading;
}
@keyframes subHeading{
    0%, 10%, 20%, 30%, 40%, 50%{
        opacity: 0;
    }
    60%{
        opacity: 0.2;
    }
    70%{
        opacity: 0.4;
    }
    80%{
        opacity: 0.6;
    }
    90%{
        opacity: 0.8;
    }
    100%{
        opacity: 1;
    }
}


/* Responsiveness */
@media (min-width: 320px) and (max-width: 767px) {

    h1{
        font-size: 2rem;
        margin: 10px;
    }
    .sub-text{
        font-size: 1.5rem;
    }

}

