*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}
header {
    background: #fff;
    color: #424242;
    padding-top: 30px;
    padding-bottom: 15px;
    min-height: 50px;
    border-bottom: #424242 3px solid;
    font-family: Protest-strike, sans-serif;
}
header a {
    color: #424242;
    text-decoration: none;
    text-transform: none;
    font-size: 16px;
}
header .logo {
    float: left;
    font-size: 28px;
    font-weight: bold;
    font-family: Protest-strike, sans-serif;
   
}
header nav {
    float: right;
    margin-top: 17px;
    font-weight: bold;
}
header nav ul {
    list-style: none;
}
header nav ul li {
    display: inline;
    padding: 0px 0px 0px 0px;
    background: none;
}

header nav ul li:hover {
    display: inline;
    padding: 0px 0px 0px 0px;
}

#banner {
    min-height: 400px;
    background: url('../images/background-image.png') no-repeat center center/cover;
    text-align: center;
    color: #fff;
    padding: 100px 0;
}
#banner h1 {
    font-size: 55px;
    margin-bottom: 20px;
}
#banner p {
    font-size: 20px;
    margin-bottom: 30px;
}
.btn {
    display: inline-block;
    background: #e50303;
    color: #fff;
    padding: 12px 10px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.0s ease;
    cursor: pointer;
}
.btn:hover {
    background: #d8030a;
    transform: translateY(-0px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
#content-1, #content-2 {
    margin-top: 40px;
    margin-bottom: 10px;
}
.content-box {
    background: #ffffff;
    padding: 2px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-size: 18px;
}
.content-box h2 {
    color: #424242;
    margin-bottom: 20px;
    font-size: 30px;
}

.content-box h3 {
    color: #424242;
    margin-bottom: 20px;
    font-size: 30px;

}

.content-box h4 {
    color: #424242;
    margin-bottom: 20px;
    font-size: 30px;

}

.content-box h5 {
    color: #424242;
    margin-bottom: 20px;
    font-size: 30px;

}

.content-box h6 {
    color: #424242;
    margin-bottom: 20px;
    font-size: 30px;

}

.content-box-disclaimer {
    background: #ffffff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-size: 16px;
    font-style: italic;

}


footer {
    background: #424242;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    font-size: 18px;
}

.responsive {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
    text-align: center;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    border-color: #424242;
    border: 1px solid;
  }

  .txtalign{
    text-align: center;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 2px;
    padding-bottom: 2px;
    font-size: 16px;
  }
  p{ font-size: 18px;}

  .logotop{
    max-width: 100%;
    max-height: 100%;
    margin-right: auto;
    margin-left: auto;
  }

@media(max-width: 768px) {
    header .logo,
    header nav,
    header nav li {
        float: none;
        text-align: center;
        width: 100%;
    }
    header {
        padding-bottom: 20px;
    }
    #banner h1 {
        font-size: 45px;
    }
    #banner p {
        font-size: 20px;
    }
    p{ font-size: 6vw;}
    .logotop{
        display: block;
        width: 400px;
        max-width: 100%;
        margin: 0 auto;
    }


}