body {
  font-family: "Cabin", sans-serif;
}

.mlr-auto {
  margin-left: auto;
  margin-right: auto;
}

.topheader {
  background-color: #EE7427;
  padding-top: 12px;
  padding-bottom: 12px;
}

.topheader ul {
  margin: 0px;
  padding: 0px;
  text-align: right;
}

.topheader ul li {
  list-style-type: none;
  display: inline-block;
  padding-right: 20px;
  color: #000000;
}

.topheader ul li:last-child {
  padding-right: 0px;
}

.topheader ul li a {
  text-decoration: none;
  color: #000000;
}

.topheader ul li i {
  background: #128ae1;
  padding: 10px;
  color: #fff;
  border-radius: 6px;
  margin-right: 8px;
}

.topheader h1 {
  font-size: 30px;
}

.topheader h1 a {
  text-decoration: none;
  color: #000;
}

header {
  /* background-color: #EE7427; */
  background-color: #128ae1;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #333;
  box-shadow: 0px 15px 20px -8px rgba(0, 0, 0, 0.37);
  border-radius: 0px;
}

.navbar-light .navbar-brand {
  color: #fff !important;
  font-size: 28px;
  font-weight: 600;
  display: none;
}

.navbar-light .navbar-nav .nav-link {
  color: #fff;
  font-size: 18.5px;
}

.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: #fff;
  font-size: 18.5px;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #EE7427;
}

.navbar-light .nav-item {
  padding-right: 10px;
}

.navbar-light .nav-item.nav-item:last-child {
  padding-right: 0px;
}

.commonfooter-box {
  text-align: center;
  padding: 12px;
  border: 1px solid #444;
  min-height: 340px;
}

.commonfooter-box p {
  padding-top: 14px;
  padding-left: 20px;
  padding-right: 20px;
  color: #111;
}

.commonfooter-box h3 {
  color: #111;
  padding-bottom: 10px;
}

.commonfooter-box p a {
  text-decoration: none;
  color: #111;
  font-weight: bold;
}

.commonfooter {
  background-color: #79c7ff;
  padding-top: 60px;
  padding-bottom: 40px;
}

.commonfooter1 {
  padding-top: 40px;
}

.commonfooter1 h3 {
  color: #111;
  padding-bottom: 10px;
}

.commonfooter1 ul li {
  color: #111;
}

.commonfooter1 p {
  color: #111;
}

.commonfooter1 .padd {
  padding-right: 30px;
}

.commonfooter1 .padd:last-child {
  padding-right: 0px;
}

footer {
  background-color: #128ae1;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

footer p {
  color: #fff;
}

footer p a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.secfooter {
  background-color: #EE7427;
  padding-top: 14px;
  padding-bottom: 14px;
}

.secfooter p {
  text-align: center;
  color: #111;
  padding: 0px;
  margin: 0px;
}

.secfooter p a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}


/* Calculator */
#calculator-wrapper{
    max-width:1200px;
    margin:auto;
    padding:20px;
    background:#fff;
}

#calculator-wrapper h2{
    text-align:center;
    margin-bottom:30px;
}

.form-group{
    display:flex;
    flex-wrap:wrap;
    margin-bottom:15px;
    align-items:center;
}

.form-group label{
    width:60%;
    font-weight:600;
    padding-right:15px;
}

.form-group select{
    width:40%;
}

#calculator-wrapper select{
    width:100%;
    padding:10px;
    border:1px solid #ddd;
    border-radius:6px;
}

.result-box{
    margin-top:30px;
    border:1px solid #ddd;
    padding:20px;
    border-radius:10px;
    background:#fafafa;
}

.result-row{
    display:flex;
    align-items:center;
    margin-bottom:15px;
}

.result-row label{
    width:200px;
    font-weight:bold;
}

.result-row input{
    flex:1;
    padding:10px;
    background:#f5f5f5;
    border:1px solid #ddd;
}

#submitcalc{
    width:100%;
    padding:15px;
    border:none;
    background:#0073aa;
    color:#fff;
    font-size:18px;
    border-radius:8px;
    cursor:pointer;
}

#submitcalc:hover{
    opacity:.9;
}

@media(max-width:768px){

    .form-group{
        flex-direction:column;
        align-items:flex-start;
    }

    .form-group label{
        width:100%;
        margin-bottom:8px;
    }

    .form-group select{
        width:100%;
    }

    .result-row{
        flex-direction:column;
        align-items:flex-start;
    }

    .result-row label{
        width:100%;
        margin-bottom:5px;
    }
}