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

* {
    font-family: 'Montserrat', sans-serif;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
}

.clrBth {
    clear:both;
}
strong {font-weight:bold !important;}

html {

    width:100%;
    height:100%;
    position:relative;
    margin:0;
    padding:0;
    
}

body {

    width:100%;
    min-height:100%;
    background-color:rgba(255,255,255,1.0);
    margin:0;
    padding:0;

}

h2 {

    padding:0;
    margin:0;
    font-size:23px;
    font-weight:700;
    color:rgba(0,0,0,1.0);

}

h3 {

    padding:0;
    margin:0;
    font-size:18px;
    font-weight:600;

}

a {

    color:black;
    text-decoration:none;

}

a:hover {

    color:black;
    text-decoration:underline;

}

a:visited {

    color:black;
    text-decoration:none;

}

.content {

    width:1280px;
    min-height:10px;
    margin:0px auto;

}

@media screen and (max-width:1290px) {

    .content {
    
        width:calc(100% - 20px);
    
    }

}