@import url("./variables.css");

/*=========================================
            GOOGLE FONT
=========================================*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

@import url("./variables.css");

/*=========================================
            RESET
=========================================*/

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;
    font-size:16px;

}

body{

    font-family:"Poppins",sans-serif;

    background:var(--body);

    color:var(--text);

    line-height:1.6;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;

}

/*=========================================
            TYPOGRAPHY
=========================================*/

h1,h2,h3,h4,h5,h6{

    color:var(--text-dark);

    font-weight:700;

    line-height:1.2;

}

p{

    color:var(--text-light);

}

a{

    text-decoration:none;

    color:inherit;

    transition:var(--transition);

}

img{

    width:100%;

    display:block;

    user-select:none;

}

button{

    border:none;

    outline:none;

    cursor:pointer;

    font-family:inherit;

    background:none;

}

input,
textarea,
select{

    font-family:inherit;

    outline:none;

}


/*=========================================
            CONTAINER
=========================================*/

.container{

    width:min(1320px,92%);

    margin:auto;

}

/*=========================================
            SECTION
=========================================*/

.section{

    padding:90px 0;

}

/*=========================================
            SCROLLBAR
=========================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#EDF7ED;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}

/*=========================================
            SELECTION
=========================================*/

::selection{

    background:var(--primary);

    color:#fff;

}

/*=========================================
            COMMON TITLE
=========================================*/

.section-title{

    font-size:44px;

    margin-bottom:15px;

}

.section-description{

    max-width:650px;

    margin:auto;

    color:var(--text-light);

}

/*=========================================
            COMMON SPACING
=========================================*/

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:992px){

.container{

width:94%;

}

.section{

padding:70px 0;

}

.section-title{

font-size:36px;

}

}

@media(max-width:768px){

html{

font-size:15px;

}

.section{

padding:60px 0;

}

.section-title{

font-size:30px;

}

}

@media(max-width:576px){

.container{

width:95%;

}

.section{

padding:50px 0;

}

.section-title{

font-size:26px;

}

}

:root{
    --announcement-height:0px;
    --navbar-height:82px;
}

.announcement-bar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1100;
}

.site-header{
    position:fixed;
    top:var(--announcement-height);
    left:0;
    width:100%;
    z-index:1099;
}

main{
    padding-top:calc(var(--announcement-height) + var(--navbar-height));
    transition:padding-top .3s ease;
}