*,
:before,
:after {
    padding: 0;
    margin: 0;
}

.hide {
    display: none;
}


/* .page__style::-webkit-scrollbar {
    display: none;
} */


/* custom scrollbar */

.page__style {
    background: #fff;
    /* background-image: url('../images/bg.png'); */
    /* background-size: cover; */
    font-family: "Poppins";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: auto auto;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    scroll-behavior: smooth
}

.page__style .page__description {
    color: #000;
    font-weight: 300;
    text-align: left;
    background-color: #fff8f0;
    border-radius: 0 0 160px 70px;
}

.page__style h1 {
    font-weight: 300;
    /* margin-top: 200px; */
    /* margin-bottom: 30px; */
}

.page__style .btn_nav {
    background: #002a32;
    border-radius: 30px;
    border: none;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding: 17px 30px;
    margin-top: 20px;
    /* width: 146px; */
}

.page__style .btn_nav:focus,
.page__style .btn_nav:active {
    outline: none;
}

.page__style a {
    text-decoration: none;
    /* color: #fff; */
}

.page__style a:hover {
    text-decoration: underline;
}

.animate_content {
    animation: animate 3s ease;
}

.fadeIn {
    z-index: 10;
}


/*  home
-----------------------------------*/

.home {
    background: #fff;
}

@media screen and (min-width: 600px) {
    .page__style::-webkit-scrollbar {
        width: 20px;
    }
    .page__style::-webkit-scrollbar-track {
        background-color: transparent;
    }
    .page__style::-webkit-scrollbar-thumb {
        background-color: #d6dee1;
        border-radius: 20px;
        border: 6px solid transparent;
        background-clip: content-box;
    }
    .page__style::-webkit-scrollbar-thumb:hover {
        background-color: #a8bbbf;
    }
}


/*****************************************************************
~ Mobile media-queries (max-width: 767px)
******************************************************************/

@media only screen and (max-width: 767px) {
    .page__description h1 {
        /* margin-top: 100px; */
    }
}

@-moz-keyframes animate {
    10% {
        transform: scale(1, 0.002);
    }
    35% {
        transform: scale(0.2, 0.002);
        opacity: 1;
    }
    50% {
        transform: scale(0.2, 0.002);
        opacity: 0;
    }
    85% {
        transform: scale(1, 0.002);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
    }
}

@-webkit-keyframes animate {
    10% {
        transform: scale(1, 0.002);
    }
    35% {
        transform: scale(0.2, 0.002);
        opacity: 1;
    }
    50% {
        transform: scale(0.2, 0.002);
        opacity: 0;
    }
    85% {
        transform: scale(1, 0.002);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
    }
}

@-o-keyframes animate {
    10% {
        transform: scale(1, 0.002);
    }
    35% {
        transform: scale(0.2, 0.002);
        opacity: 1;
    }
    50% {
        transform: scale(0.2, 0.002);
        opacity: 0;
    }
    85% {
        transform: scale(1, 0.002);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
    }
}

@keyframes animate {
    10% {
        transform: scale(1, 0.002);
    }
    35% {
        transform: scale(0.2, 0.002);
        opacity: 1;
    }
    50% {
        transform: scale(0.2, 0.002);
        opacity: 0;
    }
    85% {
        transform: scale(1, 0.002);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
    }
}