/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}


.content
{
    color: #333;
    display: table;
    font-size: 15px;
    margin: 0px 10% 30px;
    width: 80%;
    text-align:justify;
    line-height:25px;
    padding-top:0px;
    padding-bottom:0px;
    
}



body
{
    margin: 0;
    padding: 0;
    font: normal 14px/20px 'Roboto', sans-serif;

}


a {
  color: #2a76e8;
  text-decoration: none;
}

img, svg {
  max-width: 100%;
}

header {

    float: left;
    position: relative;
    text-align: center;
    width: 100%;
    margin:0 0 25px 0;
}
header h2 {
  bottom: 0;
    color: #fff;
    font-family: "Roboto",sans-serif;
    font-size:40px;
    font-weight: 500;
    opacity: 0.7;
    position: absolute;
    width: 100%;
    display:none;
}
@media only screen and (min-width: 1100px) {
  .cd-header {
    height: 250px;
    padding-top: 70px;
  }
  .cd-header h1 {
    font-size: 3.6rem;
  }
}

.cd-footer {
  height: 250px;
  background-color: #141414;
  text-align: center;
}
.cd-footer p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.8rem;
  line-height: 250px;
}

/* -------------------------------- 

download button

-------------------------------- */
.cd-nugget-info a {
  position: relative;
  display: inline-block;
  padding: 1.2em 1.6em;
  border-radius: 50em;
  background: #2a76e8;
  font-size: 14px;
  color: #ffffff;
  margin-top: 1em;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
  box-shadow: 0 0 20px rgba(42, 118, 232, 0.4);
}
.no-touch .cd-nugget-info a:hover {
  opacity: .8;
}
.cd-nugget-info span {
  vertical-align: middle;
  display: inline-block;
}
.cd-nugget-info span svg {
  display: block;
}
.cd-nugget-info .cd-nugget-info-arrow {
  fill: #ffffff;
}
@media only screen and (min-width: 1100px) {
  .cd-nugget-info a {
    margin-top: 1.4em;
  }
}

/* -------------------------------- 

Articles

-------------------------------- */
.cd-articles {
  position: relative;
  width: 90%;
  margin: 0 auto 3em;
}
.cd-articles::before {
  /* never visible - this is used in jQuery to check the current MQ */
  content: 'mobile';
  display: none;
}
.cd-articles article {
  padding: 5em 0 2em;
  border-bottom: 1px solid #e6e6e6;
  margin:0;
  width:100%;
}
.cd-articles article:last-of-type {
  border-bottom: none;
}
.cd-articles h1 {
  border-bottom: 1px dotted #b9b9b9;
    color: #141414;
    float: left;
    font-family: "Roboto",sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 25px;
    margin: 20px 0 10px;
    padding-bottom: 10px;
    width: 100%;
}

.cd-articles p:last-of-type {
  padding-bottom: 0;
}
@media only screen and (min-width: 1100px) {
  .cd-articles {
    width: 100%;
    max-width: none;
    padding-right: 0px;
    margin-bottom: 0;
  }
  .cd-articles::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'desktop';
  }
 
}

/* -------------------------------- 

Aside

-------------------------------- */
.cd-read-more {
  /* hide on mobile */
  display: none;
  width: 290px;
  background-color: #242021;
}

.cd-read-more ul {
display: table;
    margin: 0 auto;
    padding: 0;
}
.cd-read-more li {
  counter-increment: articles;
    float: left;
    list-style-type: none;
}
.cd-read-more a {
  display: block;
  position: relative;
  padding: 1.8em 0.5em 1.8em 4.3em;
  font-style:normal;
  font-size:15px;
  cursor:pointer;
   font-weight: 600;
}
.cd-read-more a::before, .cd-read-more a::after {
  position: absolute;
}
.cd-read-more a::before {
  /* article number */
  content: counter(articles);
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 1.1em;
  width: 36px;
  height: 36px;
  line-height: 34px;
  border-radius: 50%;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  box-shadow: inset 0 0 0 1px #d9d9d9;
  -webkit-transition: background-color 0.3s, color 0.3s;
  -moz-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.cd-read-more a::after {
  /* bottom separation - line */
  content: '';
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  height: 1px;
  width: 260px;
  /*background-color: #d9d9d9;*/
}
.cd-read-more a.read em {
  color: #fff;
}
.cd-read-more a.read::before {
  background-color: #FFAE00;
  color:#fff;
}
.cd-read-more a.reading em {
  color: #FFAE00;
}
.cd-read-more a.reading svg {
  display: block;
}
.cd-read-more a.reading::before {
  background-color: #ffffff;
  color: #141414;
}
.cd-read-more li:last-of-type a::after {
  display: none;
}
.cd-read-more em {
  display: block;
  line-height: 1.2;
  color: #fff;
  /* truncate text with ellipsis */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 14px;
    font-style: normal;
    font-weight: 400;
}
.cd-read-more b {
  color: #a6a6a6;
  font-size: 1.2rem;
  font-family:'Roboto', sans-serif;
  font-style: italic;
}
.cd-read-more svg {
  /* this is the filling circle around the article number */
  display: none;
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 1.1em;
  stroke: #FFAE00;
}
@media only screen and (min-width: 1100px) {
  .cd-read-more {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    float:left;
     padding: 0 11% 0 14%;
    width: 100%;
  }
  .cd-read-more.fixed {
    position: fixed;
    right: calc(50% - 485px);
  }
}



.data 
{
    color: #333;
    float: left;
    font-family: roboto;
      font-size: 17px;
    font-weight: 300;
    line-height: 25px;
    margin: 0;
    padding: 0;
    text-align: justify;
    width: 100%;
    }
    
    
    .databullet
    {
        width:100%;
        float:left;
        padding:0;
        margin-top:10px;
        }
        
        
          .databullet li
    {
 color: #2b2b2b;
    float: left;
    font-size: 15px;
    font-weight: 300;
    line-height: 35px;
    list-style-position: outside;
    list-style-type: square;
    margin: 0 0 0 2%;
    text-align: left;
    width: 98%;
        } 
        
        
        .databullet li a {
color: #2b2b2b;
    font-size: 16px;
    font-weight: 300;
    line-height: 27px;
    text-align: left;
}

.homeloanroew
{
    width:100%;
    float:left;
    }
    
    
    .homeloanroew img
{
    width:150px;
    float:left;
    margin:0 25px 0 0;
    }
    
    .marginbottom
    {
        margin-bottom:25px;
        }
        
        
        
        
        #header {
   background: #231f20 none repeat scroll 0 0;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.15);
    height: 71px;
    left: 0;
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 70;
}

.logomain::before {
   background-color: #e9e9e9;
    bottom: 0;
    content: "";
    height: 71px;
    left: -235px;
    position: absolute;
    right: -19px;
    top: 0;
    transform: skewX(-31deg);
    z-index: -1;
}
.logomain {
     color: #000;
    cursor: pointer;
    font-size: 15px;
    padding: 0 20px;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    top: 0;
    width: 200px;
    z-index: 110;
}

.logomain2 {
   cursor: pointer;
    padding: 0;
    position: absolute;
    right: 0;
    text-align: center;
    width: 135px;
    z-index: 110;
}


 .faqbullet
    {
      float: left;
    margin: 10px 0 0 2%;
    padding: 0;
    width: 98%;
        }
        
        
          .faqbullet li
    {
color: #2b2b2b;
    float: left;
    font-size: 15px;
    font-weight: 300;
    line-height: 35px;
    list-style-position: outside;
    list-style-type: decimal;
    margin: 0;
    text-align: left;
    width: 100%;
        } 
        
        
        .faqbullet li a {
color: #2b2b2b;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
}


        .faqbulletpoint{
    color: #2b2b2b;
    float: left;
    font-size: 16px;
    font-weight: 300;
    line-height: 27px;
    margin: 0 0 20px 0;
    text-align: left;
}


#databullet
    {
      float: left;
    margin-top: 0;
    padding: 0;
    width: 100%;
        }
        
        
          #databullet li
    {
 color: #2b2b2b;
    float: left;
    font-size: 15px;
    font-weight: 300;
    line-height: 35px;
    list-style-position: outside;
    list-style-type: square;
    margin: 0 0 0 2%;
    text-align: left;
    width: 98%;
        } 
        
        
        #databullet li a {
color: #2b2b2b;
    font-size: 16px;
    font-weight: 300;
    line-height: 27px;
    text-align: left;
}


@media only screen and (min-width:80px) and (max-width:400px)
{
.cd-read-more {
    background-color: #242021;
    display: table;
    margin: 71px 0 0;
    position: relative;
    width: 100%;
}

.cd-read-more ul {
    display: table;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
.cd-read-more li {
    counter-increment: articles;
    float: left;
    list-style-type: none;
    margin: 0 25px 0 10px;
    width: auto;
}

.cd-read-more a::before
{
    display:none;
    }
    
    
    .cd-read-more svg
    {
    display:none;
    }
    
    
   .cd-read-more a{ 
    padding:6px 0 6px 0;
    text-align:center;
   }
   .logomain
   {
       width:130px;
       padding:10px;
       }
   
   .logomain2
   {
       top:0;
       }
       
       
       .faqbullet li
       {
           width:98%;
           margin:0 0 0 2%;
           }
       .cd-articles article
       {
           padding:11em 0 2em;
           
           }
       
       .cd-articles
       {
           width:100%;
           }
.content
{
    margin:0 2% 30px;
    width:96%;
    
    }
    
    .databullet li {
    color: #2b2b2b;
    float: left;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    list-style-position: outside;
    list-style-type: square;
    margin: 0 0 0 3%;
    text-align: left;
    width: 97%;
}
    .cd-articles h1
    {
        font-size:22px;
        }
    
    
    .homeloanroew img {
    float: left;
    margin: 0 2% 0 0;
    width: 23%;
}
    .data
    {
        font-size:15px;
        }
    
    .cd-read-more a.reading svg
    {
        display:none;
        }
    
}





@media only screen and (min-width:401px) and (max-width:1099px)
{
.cd-read-more {
    background-color: #242021;
    display: table;
    margin: 71px 0 0;
    position: relative;
    width: 100%;
}

.cd-read-more ul {
    display: table;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
.cd-read-more li {
    counter-increment: articles;
    float: left;
    list-style-type: none;
    margin: 0 25px 0 10px;
    width: auto;
}

.cd-read-more a::before
{
    display:none;
    }
    
    
    .cd-read-more svg
    {
    display:none;
    }
    
    
   .cd-read-more a{ 
    padding:6px 0 6px 0;
    text-align:center;
   }
   .logomain
   {
       width:130px;
       padding:10px;
       }
   
   .logomain2
   {
       top:0;
       }
       
       
       .faqbullet li
       {
           width:98%;
           margin:0 0 0 2%;
           }
       .cd-articles article
       {
           padding:7.5em 0 2em;
           
           }
       
       .cd-articles
       {
           width:100%;
           }
.content
{
    margin:0 2% 30px;
    width:96%;
    
    }
    
    .databullet li {
    color: #2b2b2b;
    float: left;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    list-style-position: outside;
    list-style-type: square;
    margin: 0 0 0 3%;
    text-align: left;
    width: 97%;
}
    .cd-articles h1
    {
        font-size:22px;
        }
    
    
    .homeloanroew img {
    float: left;
    margin: 0 2% 0 0;
    width: 23%;
}
    .data
    {
        font-size:15px;
        }
    
    .cd-read-more a.reading svg
    {
        display:none;
        }
    
}
@media only screen and (min-width:1200px) and (max-width:1330px)
{
 
 .cd-read-more a {
    display: block;
    position: relative;
    padding: 1.8em 0em 1.8em 4.3em;
    font-style: normal;
    font-size: 12px;
    cursor: pointer;
    font-weight: 600;
}
 
    
}

@media only screen and (min-width:1100px) and (max-width:1199px)
{
.cd-read-more a {
    display: block;
    position: relative;
    padding: 1.8em 0em 1.8em 4em;
    font-style: normal;
    font-size: 12px;
    cursor: pointer;
    font-weight: 600;
}
}