/* ===========================
   ITSERVICE COACHING
   GLOBAL STYLES
=========================== */

:root{
    --blue-dark:#03142f;
    --blue:#0057c8;
    --blue-light:#24a8ff;
    --green:#75bd22;
    --white:#ffffff;
    --text:#07172f;
    --text-soft:#44526b;
    --bg-light:#f5f8fc;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    color:var(--text);
    background:#fff;
    overflow-x:hidden;
    padding-top:76px;
}

img{
    display:block;
    max-width:100%;
}

a{
    color:inherit;
    text-decoration:none;
}

button,
input,
textarea,
select{
    font:inherit;
}

section{
    position:relative;
}

.wrap{
    width:min(1440px, calc(100% - 80px));
    margin:0 auto;
}

@media(max-width:768px){
    body{
        padding-top:86px;
    }

    .wrap{
        width:min(100% - 32px, 1440px);
    }
}
