/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #343434;
  }

  a {
    color: #333;
  }

  a:hover {
    color: #333;
    text-decoration: none;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    color:#1d2329;
  }

  /*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
  .back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
  }

  .back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: #333;
    color: #fff;
    transition: all 0.4s;
  }

  .back-to-top i:hover {
    background: #495057;
    color: #fff;
  }



  /*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
  @media screen and (max-width: 768px) {
    [data-aos-delay] {
      transition-delay: 0 !important;
    }
  }

  /*--------------------------------------------------------------
  # Top Bar
  --------------------------------------------------------------*/
  #topbar {
    height: 60px;
    font-size: 14px;
    transition: all 0.5s;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.8);
    background: #0d6cb8;
  }

  #topbar.topbar-scrolled {
    top: -60px;
  }

  #topbar .contact-info ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  #topbar .contact-info li {
    display: inline-block;
    padding: 0;
  }

  #topbar .contact-info li + li {
    margin-left: 18px;
  }

  #topbar .contact-info a {
    color: rgba(255, 255, 255, 0.8);
    transition: 0.3s;
  }

  #topbar .contact-info a:hover {
    color: #fff;
  }

  #topbar .contact-info i {
    color: #f6b024;
    padding-right: 4px;
  }

  #topbar .cta {
    background: transparent;
  }

  #topbar .cta a {
    color: #fff;
    background: #f6b024;
    padding: 6px 24px 8px 24px;
    display: inline-block;
    transition: 0.3s;
    border-radius: 50px;
  }

  #topbar .cta a:hover {
    background: #f1a40a;
  }

  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  #header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 0px 0;
    /* top: 60px; */
  }

  #header.header-scrolled {
    top: 0;
    background: rgba(5, 87, 158, 0.9);
  }

  #header .logo {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  #header .logo a {
    color: #333;
  }

  #header .logo img {
    max-height: 90px;
  }

  @media (max-width: 992px) {
    #header {
      top: 0;
      padding: 5px 0;
      background:#fff;
    }
    #header .logo {
      font-size: 28px;
    }
  }

  .header-inner-pages {
    background: rgba(5, 87, 158, 0.9) !important;
  }

  .topbar-inner-pages {
    background: rgba(6, 98, 178, 0.9) !important;
  }

  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /* Desktop Navigation */
  .nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav-menu > ul {
    display: flex;
  }

  .nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 10px 0 10px 24px;
  }

  .nav-menu a {
    display: block;
    position: relative;
    color: #333;
    transition: 0.3s;
    font-size: 14px;
    padding: 0 3px;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
  }

  .nav-menu > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #333;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
    visibility: visible;
    width: 100%;
  }

  .nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
    color: #333;
  }

  .nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 8px;
  }

  .nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
  }

  .nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #032e54;
  }

  .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
    color: #0880e8;
  }

  .nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
  }

  .nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
  }

  .nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
  }

  .nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
  }

  .nav-menu .drop-down .drop-down > a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
  }

  @media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
      left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover > ul {
      left: -100%;
    }
    .nav-menu .drop-down .drop-down > a:after {
      content: "\ea9d";
    }
  }

  /* Mobile Navigation */
  .mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;

  }

  .mobile-nav-toggle i {
    color: #e0463f;
  }

  .mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
    height: fit-content;
  }

  .mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-nav a {
    display: block;
    position: relative;
    color: #333;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
  }

  .mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    color:#545b62;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-nav .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
  }

  .mobile-nav .active.drop-down > a:after {
    content: "\eaa1";
  }

  .mobile-nav .drop-down > a {
    padding-right: 35px;
  }

  .mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
  }

  .mobile-nav .drop-down li {
    padding-left: 20px;
  }

  .mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: #49505754;
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
  }

  /*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
  section {
    padding: 60px 0;
    /* overflow: hidden; */
  }

  .section-bg {
    background-color: #f1f8ff;
  }

  .section-title {
    text-align: center;
    padding-bottom: 30px;
  }

  .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #054a85;
  }

  .section-title p {
    margin-bottom: 0;
    font-style: italic;
  }

  /*--------------------------------------------------------------
  # intro Section
  --------------------------------------------------------------*/
  #att_intro {
    width: 100%;
    /* height: 82vh; */
    margin: 72px 0 0;
    /* background: linear-gradient( #212529d1, #49505794 ), url(/resources/assets/front_assets/img/xfinity/xfinity-bg.jpg) no-repeat; */
    background: linear-gradient(135deg,#196bc58c,#195167cc), url(/resources/assets/solar_source_assets/img/solar-source-bg.png) no-repeat;
    background-size: cover;
    position: relative;
    margin-bottom: -90px;
    background-position: center;
    padding-top: 100px;
    padding-bottom: 160px;
  }

  #att_intro h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
  }

  #att_intro h2 {
    color: #a08f86;
    margin-bottom: 50px;
    font-size: 24px;
  }

  #att_intro h2 span{
    font-weight:700;
    font-size:28px;
    color: #ffd457;
  }

  #att_intro h2 strong{
    font-size:25px;
    color: #ffd457;
  }

  #att_intro .btn-get-started {
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    font-size: 26px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
    background: #01427b;
    border-radius:5px;
  }

  #att_intro .btn-get-started:hover {
    background: #052c4e;
    color:#fff;
  }



  #att_intro .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
  }

  @media (min-width: 1024px) {
    #att_intro {
    }
  }

  @media (max-width: 991px) {
    #att_intro {

    }
    #att_intro .animated {
      -webkit-animation: none;
      animation: none;
    }
    #att_intro .responsive-img {
      text-align: center;
    }
    #att_intro .responsive-img img {
      width: 50%;
    }
  }

  @media (max-width: 768px) {
    #att_intro h1 {
      font-size: 28px;
      line-height: 36px;
    }
    #att_intro h2 {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 30px;
    }
    #att_intro .responsive-img img {
      width: 70%;
    }
  }

  @media (max-width: 575px) {
    #att_intro .responsive-img img {
      width: 80%;
    }
  }

  @-webkit-keyframes up-down {
    0% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(-10px);
    }
  }

  @keyframes up-down {
    0% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(-10px);
    }
  }



    /*--------------------------------------------------------------
  # intro Section
  --------------------------------------------------------------*/
  #roofing_specialist_intro {
    width: 100%;
    /* height: 82vh; */
    margin: 72px 0 0;
    /* background: linear-gradient( #212529d1, #49505794 ), url(/resources/assets/front_assets/img/xfinity/xfinity-bg.jpg) no-repeat; */
    background: linear-gradient(135deg,#196bc58c,#195167cc), url(/resources/assets/solar_source_assets/img/roof-specialist-bg.jpg) no-repeat;
    background-size: cover;
    position: relative;
    margin-bottom: -90px;
    background-position: center;
    padding-top: 100px;
    padding-bottom: 160px;
  }

  #roofing_specialist_intro h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
  }

  #roofing_specialist_intro h2 {
    color: #a08f86;
    margin-bottom: 15px;
    font-size: 24px;
  }

  #roofing_specialist_intro h2 span{
    font-weight:700;
    font-size:28px;
    color: #ffd457;
  }

  #roofing_specialist_intro h2 strong{
    font-size:25px;
    color: #ffd457;
  }

  #roofing_specialist_intro .btn-get-started {
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    font-size: 26px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
    background: #67999a;
    border-radius:25px;
  }

  #roofing_specialist_intro .btn-get-started:hover {
    background: #2e6263;
    color:#fff;
  }



  #roofing_specialist_intro .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
  }

  @media (min-width: 1024px) {
    #roofing_specialist_intro {
    }
  }

  @media (max-width: 991px) {
    #roofing_specialist_intro {

    }
    #roofing_specialist_intro .animated {
      -webkit-animation: none;
      animation: none;
    }
    #roofing_specialist_intro .responsive-img {
      text-align: center;
    }
    #roofing_specialist_intro .responsive-img img {
      width: 50%;
    }
  }

  @media (max-width: 768px) {
    #roofing_specialist_intro h1 {
      font-size: 28px;
      line-height: 36px;
    }

    #att_intro .responsive-img img {
      width: 70%;
    }
  }

  @media (max-width: 575px) {
    #roofing_specialist_intro .responsive-img img {
      width: 80%;
    }
  }

  @-webkit-keyframes up-down {
    0% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(-10px);
    }
  }

  @keyframes up-down {
    0% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(-10px);
    }
  }


  /*--------------------------------------------------------------
  # Price
  --------------------------------------------------------------*/
  .price-boxes {
    padding-top: 0;
  }

  .price-boxes .price-box {
    padding: 40px 30px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 5px 10px 29px 0 rgba(68, 88, 144, 0.2);
    transition: all 0.3s ease-in-out;
    border-bottom: 5px solid #fff;
    width: 100%;
    text-align:center;
  }

  .price-box:hover {
    transform: translateY(-5px);
    border-color: #007ae2;
  }

  .price-boxes .price {
    margin: 0 auto 20px auto;
    display: inline-block;
    text-align: center;
  }

  .price-boxes i {
    font-size: 76px;
    line-height: 1;
    color: #007bff;
    padding: 0 5px;
  }

  .no-display{

    color:#babcbd4f !important;
  }

  .price-boxes .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
  }

  .price-boxes .title a {
    color: #05579e;
  }

  .price-boxes .description {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 0;
    color: #777777;
  }

  .price-icon{
    padding:10px;
  }

  .price-boxes h2 {
    font-weight: 400;
    margin: -40px -30px 20px -30px;
    padding: 20px 15px;
    font-size: 20px;
    font-weight: 700;
    color: #0057b8;
    background: #f8f8f8;
  }

  .price-boxes h3 {
    font-weight: 700;
    padding: 20px 15px;
    font-size: 18px;
    font-weight: 700;
    color: #193c61;
    height: 70px;
  }

  .price-boxes h4 {
    font-size: 36px;
    color: #033368;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    margin-bottom: 0px;
  }

  .price-boxes .advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: #0880e8;
    color: #fff;
  }

  .price-boxes h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
  }

  .price-boxes h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
  }

  .price-boxes .btn-wrap {
    padding: 20px 15px;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .price-boxes .btn-call {
    background-color: #0057b8;
    border-color: #0057b8;
    display: inline-block;
    padding: 8px 35px 10px 35px;
    color: #fff;
    transition: none;
    font-weight: 500;
    font-size: 26px;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    transition: 0.3s;
  }

  .price-boxes .btn-call:hover {
    background-color: #007ae2;
    border-color: #007ae2;
  }

  .price-boxes ul {
    padding: 0;
    list-style: none;
    color: #022b58;
    text-align: center;
    line-height: 20px;
    font-size: 14px;

  }

  .price-boxes ul li {
    border-bottom:1px solid #05305f;
    padding: 16px 0;
  }

  /*--------------------------------------------------------------
  # Icon Boxes
  --------------------------------------------------------------*/

  .icon-boxes {
    padding-top: 0;
  }

  .icon-boxes .icon-box {
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 5px 10px 29px 0 rgba(68, 88, 144, 0.2);
    transition: all 0.3s ease-in-out;
    border-bottom: 5px solid #fff;
    height: 100%;
    width: 100%;
    text-align:center;
  }

  .icon-box:hover {
    transform: translateY(-5px);
    border-color: #007ae2;
  }

  .icon-boxes .icon {
    margin: 0 auto 20px auto;
    display: inline-block;
    text-align: center;
  }

  .icon-boxes .icon i {
    font-size: 56px;
    line-height: 1;
    color: #0057b8;
  }

  .icon-boxes .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 22px;
  }

  .icon-boxes .title2 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 16px;
  }

  .icon-boxes .title a {
    color: #05579e;
  }

  .icon-boxes .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
    color: #777777;
  }

  /*****************************************
  table
  ******************************************/

  table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
  }

  table caption {
    font-size: 0.8em;
    margin: .5em 0 .75em;
  }

  table tr {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    padding: .35em;
  }

  table th,
  table td {
    padding: .625em;
    text-align: center;
  }

  table th {
    font-size: 1.01em;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    background: #454b52;
    padding: 15px 10px;
  }

  @media screen and (max-width: 600px) {
    table {
      border: 0;
    }

    table caption {
      font-size: 0.8em;
    }

    table thead {
      border: none;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
    }


    table tr {
      border-bottom: 3px solid #ddd;
      display: block;
      margin-bottom: .625em;
    }

    table td {
      border-bottom: 1px solid #ddd;
      display: grid;
      font-size: .8em;
      text-align: left;
    }

    table td::before {
      /*
      * aria-label has no advantage, it won't be read inside a table
      content: attr(aria-label);
      */
      content: attr(data-label);
      float: left;
      font-weight: bold;
      text-transform: uppercase;
      color:#002f58;
    }

    table td:last-child {
      border-bottom: 0;
    }
  }
