/* General */
h1, h2, h3, h4 {
   font-family: rooney-sans, sans-serif;
   font-weight: 700;
   font-style: normal;
}

p {
   font-family: proxima-nova, sans-serif;
   font-weight: 400;
   font-style: normal;
}

*.smtext {
  font-size: 0.6rem !important;
}

/* Buttons */

button,
.btn {
    max-width: 350px;
    background-color: #725578;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 10px;
    padding: 10px 20px;
    outline: none;
    border-color: transparent !important;
    transition: all 0.8s ease-in-out;
    text-align: left;
}

button a,
.btn a {
   color: #fff;
   font-family: rooney-sans, sans-serif;
   font-weight: 700;
   font-style: normal;
   font-size: 22px;
   text-align: left;
   line-height: 33px;
   text-decoration: none;
}
button.btn a:hover {
  color: inherit;
  outline: none;
  text-decoration: none;
}

button.btn-arrow,
.btn-arrow {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 17.5px 0 17.5px 13px;
    border-color: transparent transparent transparent #ffffff;
    float: right;
    margin-left: 20px;
}

/* Mobile Nav */
.mobile-nav {
   display: none;
   height: 0;
}

/* Header */

header {
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    position: absolute;
}

.nav-menu {
    list-style-type: none;
}

.nav-menu li {
    display: inline;
    margin: 10px;
    font-family: rooney-sans, sans-serif;
   font-weight: 500;
   font-style: normal;
}

.nav-menu li a {
   color: #45334A;
}

#get-quote-btn {
   background-color: #F15B48;
   padding: 5px 50px;
   box-shadow: 0px 3px 6px #00000029;
   border-radius: 10px;  
   display: inline-block;  
   text-align: center;
   text-transform: uppercase;
   font-family: rooney-sans, sans-serif;
   font-weight: 800;
   font-style: normal;
   border-color: transparent;
}

#get-quote-btn a{
   color: #fff;
   font-size: 23px;
}

#get-quote-btn p {
   color: #fff;
   font-size: 11px;
   margin: 0;
   font-family: rooney-sans, sans-serif;
   font-weight: 800;
   font-style: normal;
}

/* Hero */

.hero-container {
   background-image: url(assets/images/AdobeStock_273162497.webp);
   background-position: top 40% right;
   background-repeat: no-repeat;
   background-size: cover;
   height: 100vh;
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
}

.hero-copy {
   width: 50%;
   padding: 0 50px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   flex-grow: .7;
}

.hero-copy h1 {
   color: #847686;
   margin-bottom: 50px;
   font-size: 2.278em;
}

.hero-copy p {
   color: #725578;
   line-height: 2em;
   font-size: 1.222em;
   font-family: proxima-nova, sans-serif;
   font-weight: 400;
   font-style: normal;
   margin-bottom: 50px;
}

.blue-text {
    color: #6B83A9;
}

.accent-strong {
    font-size: 24px;
}

.logo-container {
   display: flex;
   flex-direction: row;
   justify-content: space-evenly;
   background-color: #F0F0F0;
   width: 100%;
   padding: 10px 50px;
   align-items: center;
}

.logo-container .img-wrapper {
    margin: 0 30px;
}


.as-seen {
   width: 400px;
}

.as-seen h3 {
   text-align: center;
   font-family: proxima-nova-extra-condensed, sans-serif;
   font-weight: 200;
   font-style: normal;
   font-weight: 100;
   line-height: 28px;
   font-size: 3rem;
   color: #B8ABBA;
 }

 @media screen and (max-width: 1200px) {
   .hero-container {
      background-position: top 40% right 30%;
   }
   .hero-copy {
      width: 57%;
      flex-grow: .6;
   }
   .as-seen {
      width: 200px;
   }
   .as-seen h3 {
      font-size: 1.5rem;
   }
}

@media screen and (max-width: 768px) {
   .hero-container {
      background: linear-gradient(rgba(255, 255, 255, 0.59),rgba(255, 255, 255, 0.59)), url(assets/images/AdobeStock_273162497.webp);
      background-position: center right 30%;
      background-size: cover;
      height: auto;
      padding-top: 200px;
   }
   .hero-copy {
      width: 100%;
      flex-grow: 0;
      margin-bottom: 100px;
   }
   .logo-container {
      flex-wrap: wrap;
   }
   .logo-container .img-wrapper {
      flex-basis: 25%;
      margin: 0 10px;
   }
   .img-wrapper img {
      margin: auto;
      display: block;
   }
   .as-seen {
      flex-basis: 100%;
   }
   
}

 /* Reviews.io Embedded Code */

 .reviews-banner {
    background-color: #45334A;
    padding: 50px;
    box-shadow: 0px 3px 6px #00000029;
 }

/* About Section */

 .about-container {
    padding: 100px 50px;
 }

 .about-container h2 {
    margin-bottom: 2em;
    text-align: center;
    color: #725578;
 }

 .about-cards-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
 }

 @media only screen and (max-width: 768px) {
   .about-cards-container {
      flex-wrap: wrap;
   }
 }

 .card {
    display: flex;
    flex-direction: column;
    width: 475px;
    flex-shrink: 1;
    margin: 10px;
 }

 .image-container {
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 25px;
    padding: 20px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-content: center;
    margin-bottom: 30px;
 }

 .image-container img {
    width: 400px;
    height: 400px;
    object-fit: contain;
 }

 .card h3 {
   color: #725578; 
   margin-bottom: 30px;
 }

 .card p {
    color: #725578;
    line-height: 25px;
 }

/* It's furkin time section */

 .image-background-container {
    padding: 50px;
    background: linear-gradient(rgba(0, 0, 0, 0.59),rgba(0, 0, 0, 0.59)), url(assets/images/dogs_background_image.webp);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
 }

 .image-background-container img {
    width: 400px;
    margin: auto;
    display: block;
 }

 .two-column-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
    margin: 70px 0;
 }

 .blurb {
    max-width: 600px;
    color: #fff;
 }

 .blurb h2 {
    color: #fff;
 }

 .aqua-text {
    color: #41C0BD;
 }

 .red-text {
    color: #F15B48;
 }

 .vertical-hr {
   color: #fff;
   width: 60px;
   transform: rotate(90deg);
   margin: auto;
 }

 .image-background-container .btn {
    margin: auto;
    display: block;
 }

 .accent-btn-text {
    color: #B8ABBA;
 }

 .steps-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 50px;
    background-color: #45334A;
    color: #fff;
 }

 .step {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 450px;
    flex-shrink: 1;
    margin: 10px;
 }

 .number {
    background-color: #F15B48;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 30px;
    padding: 10px;
 }

 .number h3 {
    color: #fff;
    text-align: center;
    line-height: 27px;
    width: 30px;
    height: 30px;

 }

 .step-copy h4 {
    color: #fff;
    margin-bottom: 30px;
 }

 .step-copy a {
    color: #fff;
    font-weight: bold;
 }

 .step-copy p {
    font-weight: normal;
 }

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

@media only screen and (max-width: 768px) {
  .steps-container, .two-column-container  {
     flex-wrap: wrap;
  }
  .vertical-hr {
   transform: rotate(0);
   margin: 20px auto;
  }
}

 /* Compare plans Section */

 .compare-container {
    padding: 100px 50px;
    text-align: center;
 }

 .compare-container h2 {
    color: #45334A;
 }

 .row-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 50px;
 }

#compare-img {
    width: 400px;
    height: 600px;
    object-fit: contain;
    align-self: center;
    flex-shrink: 1;
    margin: 20px;
 }

 .compare-card-container {
    display: flex;
    flex-direction: column;
 }

 .compare-cards {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 20px;
 }

 .compare-card {
    margin: 0 2px;
    border-radius: 10px;
    box-shadow: 0px 3px 6px #00000029;
    width: 300px;
    overflow: hidden;
 }

 .compare-card h4 {
    color: #fff;
    padding: 20px;
    margin: 0;
 }

 .compare-card ul {
    list-style: none;
    color: #fff;
    padding: 0;
    margin: 0;
 }

 .compare-card li {
    margin: 0;
    font-size: 15px;
    border-bottom: 1px solid #fff;
    padding: 20px;
 }

 .compare-card .icon-li {
    padding: 15px;
 }

 .compare-card .no-border {
    border-bottom: none;
 }

 #img-header {
    padding: 10px;
 }

 #img-header img {
    height: 37px;
 }

 .compare-li-blue1 {
    background-color: rgba(107, 131, 169, .89);
 }

 .compare-li-blue2 {
    background-color: #6B83A9;
    box-shadow: 0px 3px 6px #00000029;
 }

 .compare-li-purple1 {
    background-color: rgba(114, 85, 120, .84);
 }

 .compare-li-purple2 {
    background-color: rgba(114, 85, 120, .9);
    box-shadow: 0px 3px 6px #00000029;
 }

 .compare-li-grey1 {
    background-color: rgba(84, 86, 90, .84);
 }

 .compare-li-grey2 {
    background-color: rgba(84, 86, 90, 1);
    box-shadow: 0px 3px 6px #00000029;
 }

.icon-background-white {
    width: 31px;
    height: 31px;
    padding: 5px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-content: center;
    margin: auto;
}

.icon-background-black {
    width: 31px;
    height: 31px;
    padding: 5px;
    background-color: #333333;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-content: center;
    margin: auto;
}

.compare-info-card {
    background-color: #725578;
    border-radius: 10px;
    padding: 30px;
}

.key-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 20px;
}

.key-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0 20px;
}

.key-des{
    color: #fff;
    margin-left: 10px;
}

.icon-key {
    width: 16px;
    height: 16px;
    padding: 3px;
}

.compare-info-card p {
    color: #fff;
    font-size: 15px;
    margin: 10px;
}

@media screen and (max-width: 1200px) { 
   .row-container {
      flex-wrap: wrap;
      justify-content: center;
   }
   #compare-img {
      width: 30%;
      height: auto;
   }
}

 @media screen and (max-width: 768px) {
   .row-container, .key-container, .compare-cards {
      flex-wrap: wrap;
   }
   .compare-card {
      margin: 10px 0;
   }
 }

/* CTA Section */

.cta-container {
    padding: 50px;
    text-align: center;
}

.cta-container h2 {
    color: #725578;
}

.cta-container h3 {
    color: #6B83A9;
    margin-top: 20px;
}

.block-btn {
    display: block;
    margin: 30px auto;
}

.no-arrow-btn {
    text-align: center;
    width: 250px;
    color: #fff;
    text-transform: uppercase;
}

/* Call Section */

.call-container {
    background-color: #6B83A9;
    width: 100%;
    padding: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
}

.call-container h2, .call-container h3 {
    color: #fff;
}

@media screen and (max-width: 768px) {
   .call-container {
      flex-wrap: wrap;
      text-align: center;
   }
   .call-container h2, .call-container h3, .call-container .btn {
      flex-basis: 100%;
      margin: 10px 0;
   }
 }

/* Footer */

footer {
    background-color: #45334A;
    padding: 50px;
}

.footer-row-container {
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   margin: 50px;
}

#footer-logo {
   width: 20vw;
   margin: auto;
   display: block;
}

.column-container hr {
    width: 200px;
    margin-top: 20px;
}

.social-container {
    list-style: none;
    padding: 0;
   
}

.social-container li {
    display: inline-block;
    margin: 30px 20px;
}

.social-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 20px;
}

.footer-nav li a {
    color: #fff;
}

[href*=".pdf"]:after  {
    background-color: #fff;
    color: #45334A;
    font-size: 11px;
    border-radius: 10px;
    padding: 2px 8px;
    margin-left: 10px; 
}

.copyright-text {
    color: #fff;
    font-size: 15px;
    font-family: rooney-sans,sans-serif;
}

@media screen and (max-width: 1200px) { 
   .footer-row-container {
      flex-wrap: wrap;
   }
   .info-container {
      flex-basis: 100%;
   }

   .info-container img, .social-container {
      margin: auto;
      display: block;
      text-align: center;
   }
}

 @media only screen and (max-width: 768px) {
   .footer-row-container {
      justify-content: center;
   }
   .social-container {
      padding: 0;
   }
   .social-icon img {
      width: 30px;
      height: 30px;
   }
   .social-container li {
      margin: 20px 10px;
   }
   #footer-logo {
      width: 20vw;
   }
   .footer-nav {
      padding: 0;
   }
   footer .column-container {
      flex-basis: 100%;
      margin: 0px auto;
   }
   .footer-nav li {
      text-align: center;
  }
 }

