/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/*
COLOR PALETTE
#1EBE99; /*green*/
#6485EA; /*blue*/
#041B3E; /*navy*/
#3B1937; /*maroon*/
#354CA2; /*dark blue*/
#01715F; /*dark green*/
#383C4A; /*dark grey */
#777777; /*grey*/
#A0A0A0; /*mid grey*/
#F2F2F2; /*light grey*/
#11AA87; /*green-hover*/

/*
FONTS
DM Sans Regular = 400
DM Sans Medium = 500
DM Sans Bold = 700
*/

/* Global styles
------------------------------------*/
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}
html, body {
/*  overflow-x: hidden;*/
}
body {
  position: relative
}
h1, h2, h3, h4 {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    margin: 0;
    padding:0;
    letter-spacing: 0.015em;

}
h1 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 400;
  max-width: 1000px;
  padding-bottom: 15px;
}
h2 {
  font-size: 35px;
  line-height: 1.3;
  font-weight: 400;
  padding-bottom: 15px;
}
h3 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
  padding-bottom: 15px;
}
h4 {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  padding-bottom: 15px;
}
p, ul, ol {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.2px;
  color: #777777; /*grey*/
  padding-bottom: 15px;
}
ul, ol {
  margin-left: 20px;
}
.small-p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #777777; /*grey*/
  padding-bottom: 15px;
}
.smallcaps {
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 30px;
}
.small-bulletpoint {
  font-size: 16px;
  font-weight: 700;
  color: #041B3E;
}
.boxed-mono-text {
  font-family: 'Roboto Mono', monospace;
  font-weight: 400;
  color: #fff;
  background-color: #1EBE99; /*green*/
  padding: 3px 8px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
}
em {
  font-style: italic;
}
.bold {
  font-weight: 500;
}
.x-bold {
  font-weight: 600;
}
.center-text {
  text-align: center;
}
.max-width {
  max-width: 900px;
  margin: auto;
}
.center-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.space-before {
  margin-top: 120px;
}
.padding-bottom-0px {
 padding-bottom: 0px;
}

/*-----------Colors-----------*/
.green {
  background-color: #1EBE99; 
  color: #fff;
}
.navy {
  background-color:#041B3E;
  color: #fff; 
}
.blue {
  background-color:#6485EA;
  color: #fff; 
}
.darkblue {
  background-color: #354CA2; /*dark blue*/
  color: #fff; 
}
.maroon {
  background-color:#3B1937;
  color: #fff; 
}
.dark-green {
  background-color: #01715F;
  color: #fff;
}
.dark-grey {
  background-color: #383C4A;
  color: #fff;
}
.green-text {
  color: #1EBE99; 
}
.white-text-tint {
  color: rgba(255, 255, 255, 0.8); 
}
.white-text {
  color: #fff;
}
.blue-text {
  color: #6485EA; /*blue*/
}
.navy-text {
  color: #041B3E;
}
.white-text a {
  color: #fff;
  text-decoration: underline;
}
.white-text a:hover {
  text-decoration: none;
}

/*-----------Buttons & Links-----------*/
a {
  text-decoration: underline;
  color: #6485EA; 
}
a:hover {
  text-decoration: none;
}
.btnlrg {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  border-radius: 6px;
  padding: 15px 28px;
  font-size: 18px;
  text-decoration: none;
  margin: 15px 15px 5px 0px;
}
.btnlrg:hover {
  padding: 15px 26px 15px 30px;
  transition: 0.2s;
}
.btnsml {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  border-radius: 6px;
  padding: 12px 30px;
  font-size: 17px;
  text-decoration: none;
  margin: 15px 15px 15px 0px;
}
.btnsml:hover {
  padding: 12px 28px 12px 32px;
  transition: 0.2s;
}
.btngreen {
  background-color: #1EBE99; /*green*/ 
  color: #fff;
  border: 2px solid #1EBE99;
}
.btngreen:hover{
  background-color: #11AA87; 
  transition: 0.3s;
  text-decoration: none;
  border-color: #11AA87; 
}
.btnblue {
  background-color: #6485EA; 
  color: #fff;
  border: 2px solid #6485EA;
}
.btnblue:hover{
  background-color: #4A6ACB; 
  transition: 0.3s;
  text-decoration: none;
  border-color: #4A6ACB; 
}
.btnblueborder { 
    color: #6485EA; 
    border: 2px solid #6485EA;
}
.btnblueborder:hover {
    border-color: #4A6ACB; 
    color: #4A6ACB; 
    background-color: #fff;
    text-decoration: none;
}
.btnwhite {
  background-color: #fff;
  color: #6485EA; 
  border: 2px solid #fff;
}
.btnwhite:hover {
  text-decoration: none;
}
.btnwhiteborder {
  border: 2px solid #fff;
  color: #fff;
}
.btnwhiteborder:hover {
  background-color: rgba(0, 0, 0, 0.05);
  text-decoration: none;
}
.text-link a {
  text-decoration: none;
}
.text-link a:hover {
  text-decoration: none;
  padding-left: 4px;
  transition: 0.2s;
}
.white-text-link a {
  text-decoration: none; 
  color: #fff !important; 
}
.white-text-link a:hover {
  text-decoration: none;
  padding-left: 4px;
  transition: 0.2s;
}
.no-underline {
  text-decoration: none;
}
/*----------------------Headers----------------------*/
.white-text-header {
  max-width: 800px;
  text-align: center;
  padding: 170px 0px 20px 0px;
  margin: auto;
}
.solid-header {
  margin: auto;
  margin-bottom: 80px;
  text-align: center;
  max-width: 900px;
  padding: 100px 60px 80px 60px;
}
.skinny-header-wrap {
  max-width: 1450px;
  margin: auto;
  padding: 40px 60px 8px 60px;
  margin-bottom: 80px;
}
/*-----------Global Containers + Flexbox-----------*/
.content-wrap {
  margin: auto;
  max-width: 1450px;
  padding: 0px 4.5% 120px 4.5%;
  overflow-x: hidden;
}
.content-wrap-80px-before-and-after {
    margin: auto;
    max-width: 1450px;
    padding: 80px 4.5% 80px 4.5%;
    overflow-x: hidden;
}
.container {
  display: flex;
  flex-direction: row;
  gap: 5%;
  justify-content: space-between;
  align-content: center;
}
.container-solid {
  display: flex;
  flex-direction: row;
  gap: 5%;
  justify-content: space-between;
  padding: 5%;
  align-content: center;
  border-radius: 8px;
}
.container-solid-reverse {
    display: flex;
    flex-direction: row;
    gap: 5%;
    justify-content: space-between;
    padding: 5%;
    border-radius: 8px;
}
.container-side-scroll-mobile {
    display: flex;
    flex-direction: row;
    gap: 5%;
    justify-content: space-between;
    align-content: center;
    overflow-x: scroll;
}
.container-side-scroll-mobile .item-1 {
  min-width: 260px;
}
.boxed-section {
  padding: 5%;
  border-radius: 8px;
  color: #fff;
}
.item-1 {
  flex: 1;
}
.item-2 {
  flex: 2;
}
.item-3 {
  flex: 3;
}
.vertical-align {
  align-items: center;
}
.flex-img {
  width: 100%;
}
.stretch {
  align-items: stretch;
}
.space-after-40px {
  padding-bottom: 40px;
}
.space-after-30px {
  padding-bottom: 30px;
}
.faq-boxed-item {
  background-color: #f2f2f2;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 10px;
}
.faq-boxed-item h4 {
  padding: 0px;
}
.faq-boxed-item p {
  padding: 15px 0px 0px 0px;
}
/*-----------Homepage-----------*/
.container-hp-hero {
  display: flex;
  flex-direction: row;
  gap: 5%;
  margin: 0px;
  padding: 50px 0px 80px 0px;
  justify-content: space-between;
  align-items: flex-start;
}
.hp-hero-text {
  padding: 7vh 0px 80px 7vw;
  flex-shrink: 1;
  flex-basis: 600px;
  flex-grow: 0;
}
.hp-hero-text h3 {
  font-size: 18px;
  padding: 4px 0px;
  font-weight: 700;
}
.hp-hero-text h1 {
  padding-bottom: 35px;
}
.hp-hero-dashboard {
  padding-top: 4vh;
  flex-basis: 900px;
  flex-shrink: 1;
  flex-grow: 0;
}
.hp-hero-dashboard img {
  width: 100%;
}
.container-hp-feature{
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.hp-feature-text {
  padding-bottom: 15px;
}
.product-icon {
  width: 50px;
  padding: 10px 0px 15px 0px;
}
.product-sections {
 min-height: 460px;
}
.hp-product-selector {
  display: flex;
  max-width: 560px;
  margin: auto;
  justify-content: space-around;
  padding: 60px 0px 25px 0px;
  color: #A0A0A0;
}
.hp-product-selector h4 {
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 16px;
}
.product-sections-buttons-selected {
    color: #6485EA !important;
}
.product-sections-buttons {
    color: #A0A0A0;
}
.product-sections-buttons:hover  {
    color: #6485EA !important;
    cursor: pointer;
}
.product-sections-buttons .product-selector-icon {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.product-sections-buttons-selected .product-selector-icon {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
.hp-product-dashboard {
  width: 100%;
  border-radius: 8px;
}
.diagram-wrap {
  flex: 1;
  background-color: #F2F2F2; /*light grey*/
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.diagram img {
  width: 90%;
}
.diagram {
  text-align: center;
  padding: 20px 0px;
}

.testimonial {
  max-width: 780px;
  text-align: center;
  margin: auto;
  padding-bottom: 100px;
}
.testimonial h3 {
  font-size: 29px;
  font-weight: 400;
  padding-bottom: 40px;
}
.testimonial a {
  color: #041B3E; /*navy*/
  text-decoration: underline;
}
.testimonial a:hover {
  color: #6485EA; /*blue*/
}
.testimonial .small-p {
  color: #041B3E; /*navy*/
  font-weight: 500;
  font-size: 16px;
}
.container-g2 {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
}
.container-g2 img {
  width: 110px;
}
.trusted-by {
  max-width: 1100px;
  margin: auto;
}
.trusted-by p {
  font-size: 40px;
  font-weight: 700;
  color: #041B3E; /*navy*/
}
.trust-stats {
  padding: 50px 5% 0px 5%;
  flex: 1;
  text-align: center;
}
.trust-stats p {
  padding-bottom: 0px;
}
.latest-blog h3 {
  font-size: 27px;
  font-weight: 400;
}
/*-----------Footer----------*/
.footer {
  background-color: #041B3E;
  color: #fff;
  background-image: url("https://www.couchdrop.io/hubfs/couchdrop/square-graphics.png");
  background-position: bottom right; 
  background-repeat: no-repeat; 
  background-attachment: fixed;
  background-size: 150px 210px;
}
.footer a {
  color: #fff;
  display: block;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: none;
  color: #6485EA;
}
.footer p {
  color: #fff;
}
.container-footer-emails {
  display: flex;
  gap: 20px;
  padding: 60px 0px 30px 0px;
  flex-wrap: wrap;
}
.container-footer-links {
  display: flex;
  gap: 20px;
  padding-bottom: 60px;
  flex-wrap: wrap;
}
.footer-item {
 flex-grow: 1;
 flex-shrink: 1;
 flex-basis: calc(25% - 20px);
}
.container-footer-emails .footer-item p {
  color: #1EBE99;
  padding-bottom: 5px;
  font-weight: 500;
}
.footer-email-link {
  font-size: 18px;
  font-family: 'DM Sans', sans-serif;
  padding-bottom: 10px;
}
.container-footer-links .footer-item h4 {
  font-family: 'Roboto Mono', sans-serif;
  font-size: 14px;
  padding: 30px 0px 20px 0px;
  color: #1EBE99;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.container-footer-links .footer-item a {
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  padding-bottom: 10px;
}
.footer .social-icon {
  padding: 0px 20px 20px 0px;
  display: inline-block;
}
.footer .social-icon img {
  width: 20px;
  height: 20px;
}
/*-----------Why Couchdrop Block----------*/
.why-couchdrop img {
  padding-bottom:20px;
  padding-top: 50px;
  width: 50px;
}
.why-couchdrop h2 {
  padding-bottom: 0px;
}
/*-----------Security Block----------*/
.item-security-block {
  text-align: center;
  flex: 1;
}
.security-block .small-p {
  padding-bottom: 0px;
}
/*-----------Case Study Block----------*/
.case-study-block {
  max-width: 900px;
  display: flex;
  border-radius: 8px;
  padding: 4%;
  margin: auto;
  justify-content: space-between;
  margin-bottom: 30px;
}
.cs-tile {
  flex: 2;
  max-width: 500px;
  background-color: #fff;
  padding: 55px 45px 30px 45px;
  border-bottom: 6px solid #6485EA; /*blue*/
  margin-bottom: -100px;
}
.cs-left {
  align-self: center;
  padding-right: 4%;
}
.cs-left a {
  color: #fff;
}
.cs-tile a, .cs-left a {
  text-decoration: none;
}
.case-study-block a:hover {
  text-decoration: none;
}
.cs-tile h4 {
  color: #041B3E; /*navy*/
  font-size: 25px;
  font-weight: 500;
}
.cs-tile img {
  padding-bottom: 40px;
}
.cs-tile .boxed-mono-text {
  margin-bottom: 30px;
}
.cs-tile:hover .blue-text {
  margin-left: 5px;
  transition: 0.2s;
}

/*-----------Industries Block----------*/
.container-hp-industry {
  display: flex;
  flex-direction: row;
  padding: 70px;
  gap: 90px;
  justify-content: space-between;
  border-radius: 8px;
}
.pill {
  color:#6485EA; /*blue*/
  background-color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  margin: 12px 8px 0px 0px;
  text-decoration: none;
  display: inline-block;
}
.pill:hover {
  background-color: #6485EA; /*blue*/;
  color: #fff;
  text-decoration: none;
}
/*-----------CTA Blocks----------*/
.bright-cta {
  padding: 100px 5% 60px 5%;
  border-radius: 8px;
  color: #fff;
}
.bright-cta p, .white-cta p {
  padding-top: 50px;
}
/*-----------Case Studies Landing Page----------*/
.container-case-studies-lp {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
}
.case-study-lp-tile {
  flex-basis: calc(43% - 30px);
  background-color: #F4F4F4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px 4% 30px 4%;
  border-bottom: 5px solid #6485EA; /*blue*/
}
.case-study-lp-tile h3 {
  padding: 30px 0px;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 400;
}
/*-----------Blog & Case Studies----------*/
.blog-content {
  max-width: 850px;
}
.blog-content p, .blog-content ul li, .blog-content ol li {
  font-family: 'Georgia', serif;
  color: #555555;
}
.max-width-850 {
  max-width: 850px;
}
.case-studies-content .boxed-mono-text, .case-studies-content h1 {
  margin-bottom: 40px;
}
.case-studies-content .logo {
  display: block;
  margin: auto;
  padding-bottom: 40px;
}
.case-studies-content .circle-headshot {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  margin: auto;
  margin-bottom: 15px;
  contain: fill;
}
.case-studies-content .name {
  text-align: center;
  color: #041B3E;
  line-height: 1.3;
}
.blog-content .pull-quote {
  font-family: 'DM Sans', sans-serif;
  color: #3B1937; /*maroon*/
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  padding: 20px 0px 40px 0px;
  font-style: italic;
}
.blog-lp {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width:1100px;
  margin: 35px auto 0px;
}
.blog-lp-tile {
  display: flex;
  gap: 50px;
  align-items: center;
}
.blog-pagination {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;  
}
.blog-pagination a {
  text-decoration: none;
  margin: 10px;
  color: #777777;
}
.blog-pagination__link--active {
  color: #041B3E;
}
.blog-tile-image {
  flex-basis: calc(50% - 50px);
}
.blog-tile-text {
  flex-basis: calc(50% - 50px);
  padding: 0px 0px;
}
.blog-tile-text h2 {
  font-size: 28px;
}
.blog-tile-text h2 a {
  text-decoration: none;
  color: #041B3E;
}
.blog-feature-image {
  width: 100%;
  max-width: 580px;
  margin: 0px auto 50px auto;
}
.blog-content img {
  width: 100%;
  margin: 30px 0px;
}
.blog-header h1 {
  margin-bottom: 40px;
}
.blog-content a {
  text-decoration: underline;
  color: #555555;
}
.blog-content a:hover {
  color: #6485EA
}
.blog-content h2 {
  font-size: 25px;
  font-weight: 500;
  padding: 40px 0px 10px 0px;
}
.blog-content h3 {
  font-size: 21px;
  font-weight: 500;
  padding: 20px 0px 10px 0px;
}
.blog-content h4 {
  font-size: 19px;
  font-weight: 500;
  padding: 5px 0px;
}
/*--------------------------Blog Table------------------------------*/
.blog-content table, .blog-content th, .blog-content td, .basic-table, .basic-table tr th, .basic-table tr td {
  border: 1px solid #DDDDDD;
  border-collapse: collapse;
}
.blog-content table, .basic-table {
  width: 100%;
}
.blog-content tr, .basic-table tr {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  text-align: left;
}
.blog-content th, .blog-content td, .basic-table th, .basic-table td {
  padding: 15px;
}
/*--------------------------Security Page------------------------------*/
.boxed-bulletpoint {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-basis: 300px;
  flex-grow: 1;
  padding: 15px 20px;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 10px;
}
.boxed-bulletpoint p {
  padding: 0px;
  color: #041B3E;
  line-height: 1.4;
}
.security-standards-upper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
  flex-basis: 1 1 auto;
  justify-content: space-between;
  background-color: #041B3E; /*navy*/
  padding: 30px 8%;
  border-radius: 8px 8px 0px 0px;
  color: #fff;
  align-items: flex-end;
}
.security-standards-upper .security-logo img {
  width: 100%;
  object-fit: scale-down;
}
.security-logo {
  flex-basis: 170px;
  flex-grow: 0;
  flex-shrink: 1;
}
.security-standards-upper h3 {
  padding-bottom: 0px;
}
.container-solid-vanta {
  display: flex;
  flex-direction: row;
  gap: 10%;
  justify-content: space-between;
  padding: 5%;
  align-content: center;
  border-radius: 8px;
}
.vanta-text {
  flex-grow: 1;
  flex-basis: 60%;
}
.vanta-rectangle {
  flex-basis: 30%;
  flex-grow: 0;
  flex-shrink: 1;
}
.vanta-rectangle img {
  width: 100%;
}
/*-----------Get a Demo Page----------*/
.container-get-a-demo {
  display: flex;
  flex-direction: row;
  gap: 5%;
  justify-content: space-between;
  padding-top: 8vh;
}
.calendly-form-wrap {
  flex-basis: 550px;
  flex-grow: 1;
  flex-shrink: 1;
}
.get-a-demo-text-wrap {
  padding-top: 100px;
  flex-basis: 550px;
  flex-grow: 2;
  flex-shrink: 1;
}
.demo-video-block {
  background-color: #6485EA;
  padding: 45px 0px 0px 0px;
}
.demo-video {
  background-color: #fff;
  border-radius: 8px;
  width: calc(33.3% - 25px);
  padding: 20px 20px 10px 20px;
}
.demo-video h4 {
  color: #041B3E;
  padding: 20px 0px 0px 0px;
}
/*-----------Sign-up Form----------*/
.sign-up-bg {
  background-color: #3B1937; /*maroon*/
  padding-top: 100px;
}
.sign-up {
  background-color: #fff;
  margin: 10% auto;
  border-radius: 9px;
  max-width: 520px;
  padding: 35px;
  text-align: center;
}
.sign-up img {
  width: 50px;
  height: 50px;
  margin: auto;
  padding: 20px;
  text-align: center;
}
.sign-up h2 {
  margin-bottom: 20px;
}
.sign-up p {
  line-height: 1.4;
}
.sign-up-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #777777;
  display: block;
  text-align: left;
  margin-left: 10px;
}
.sign-up input {
  width: 90%;
  height: 30px;
  font-size: 17px;
  padding: 8px 12px;
  color: #777777;
  margin: 5px auto 15px auto;
}
.sign-up button {
  margin-bottom: 45px;
}
/*-----------Industry Landing Pages----------*/
.lp-header-wrap {
  display: flex;
  max-width: 1450px;
  margin: auto;
  gap: 10%;
  padding: 140px 60px 120px 60px;
}
.lp-header-text {
  flex-basis: 600px;
  flex-grow: 0;
}
.lp-photo {
  flex: 2;
}
.lp-photo img {
  object-fit: cover;
  height: 100%;
  border-radius: 8px;
}
.icon-text {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-basis: 300px;
  flex-grow: 1;
}
.lp-bulletpoints-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 30px 0px;
}
.icon-text .small-bulletpoint {
  padding: 0px;
}
.whitepaper-text {
  flex-basis: 660px;
  flex-grow: 0;
}
.whitepaper-image {
  flex-basis: 340px;
  flex-grow: 0;
}
.whitepaper {
  overflow: display;
  height: 330px;
  margin-bottom: 60px;
}
.filesize {
  font-weight: 700;
  font-size: 13px;
}
.container-learn-more {
  display: flex;
  gap: 20px;
  padding-top: 30px;
}
.learn-more-item {
  flex: 1 1 200px;
  background-color: #F2F2F2; 
  border-bottom: 5px solid #6485EA; /*blue*/;
}
.learn-more-upper {
  background-color: #041B3E; /*navy*/
  padding: 40px 8% 5px 8%;
  border-radius: 8px 8px 0px 0px;
  color: #fff;
}
.learn-more-lower {
  padding: 8%;
}
.learn-more-upper img {
  width: 40px;
  padding-bottom: 15px;
}
/*-----------Other Landing Pages----------*/
.faq-boxed-item {
  padding: 5%;
}
.item-lp {
  flex-basis: 500px;
  flex-grow: 1;
  flex-shrink: 1;
}
.white-boxed-logo {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 40px;
  display: inline-block;
}
.white-boxed-logo img {
  object-fit: contain;
  width: 70px;
}
.lp-header-wrap-2 {
  display: flex;
  gap: 10%;
}
.sftp-image {
  text-align: center;
  padding: 20px;
}
.bulletpoint-list .item-1 {
  padding-bottom: 20px;
}
.icon-text h4 {
  padding-bottom: 0px;
}
.image-tile {
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 35px;
  text-align: center;
}
.image-tile img {
  width: 80%;
}
.align-end {
  align-items: flex-end;
}
#scalable-graphic {
  flex-basis: 300px;
  flex-grow: 0;
  flex-shrink: 2;
}
#scalable-graphic img {
  width: 100%;
}
#notification-graphic {
  flex-basis: 400px;
}
#notification-graphic img {
  width: 100%;
}
/*-----------Product Pages-----------*/
.container-product-header {
  display: flex;
  flex-direction: row;
  gap: 10%;
  justify-content: space-between;
}
.large-dashboard {
  width: 100%;
  box-shadow: 0px 0px 20px #00000033;
  border-radius: 8px;
  margin-top: 80px;
}
.space-after-80px {
  padding-bottom: 80px;
}
.automate-bulletpoints {
  flex: 1;
  display: flex;
  gap: 5%;
  flex-wrap: wrap;
  padding: 30px 0px;
}
.automate-bulletpoints .icon-text {
  padding: 10px 0px;
}
.automate-bulletpoints .item-1 {
  flex: 1 1 100px;
}
.automate-bulletpoints .small-bulletpoint {
  font-size: 15px;
}
.automate-left {
  flex: 1;
}
.resources-left {
  flex: 1 1 400px;
}
.resources-right {
  flex: 1 1 500px;
  display: flex;
  flex-wrap: wrap;
  gap: 8%;
  justify-content: flex-end;
}
.resources-tile {
  flex: 1 1 220px;
  padding-bottom: 20px;
  gap: 50px;
}
.resources-tile img {
  width: 100%;
  padding-bottom: 20px;
}
.container-resources {
  display: flex;
  flex-direction: row;
  gap: 5%;
  justify-content: space-between;
}
.faux-bulletpoints {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    flex-basis: 300px;
    flex-grow: 1;
    padding-bottom: 10px;
}
.faux-bulletpoints p {
    padding: 0px;
}
.faux-bulletpoints img {
    padding-top: 3px;
    width: 22px;
    height: 22px;
}
.faux-bulletpoints .bold {
    font-weight: 600px;
    color: #1EBE99;
}
.block-solid {
    padding: 5%;
    border-radius: 8px;
}
.use-case-bulletpoints-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 20px;
}
.use-case-bulletpoints-container .icon-text {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-basis: 200px;
    flex-grow: 1;
}
.use-case-bulletpoints-container .icon-text h4 {
    color: #fff;
}
/*-----------Platform Pages-----------*/
.anchor-links {
  margin: auto;
  text-align: center;
}
.anchor-links a {
  display: inline-block;
  padding: 20px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #A0A0A0; 
  font-size: 16px;
  transition: 0.3s ease;
}
.anchor-links a:hover {
  color: #1EBE99; /*green*/
  text-decoration: none;
}
.anchor-links a:active {
  color: #1EBE99; /*green*/
}
.container-storage {
  flex-wrap: wrap;
  display: flex;
  justify-content: flex-start;
  column-gap: 3.3%;
  row-gap: 20px;
}
.block-storage .storage-item .top {
  background-color: #1EBE99;
}
.container-storage a {
  text-decoration: none;
}
.container-storage a:hover {
  text-decoration: none;
  border-bottom: 5px solid #6485EA;
  margin-bottom: -5px;
  transition: 0.2s;
}
.container-storage a:hover h4 {
  color: #6485EA;
  transition: 0.2s;
}
.platforms h3 {
  padding-bottom: 5px;
}
.storage-item {
  flex-basis: calc(25% - 3.3%);
  padding-bottom: 10px;
}
.storage-item h4 {
  color: #041B3E;
}
.storage-item img {
  margin: auto;
  width:  80%;
  height: 40px;
  object-fit: scale-down;
}
.storage-item .top {
  background-color: #6485EA;
  margin-bottom: 20px;
  padding: 10%;
}
.storage-pill {
  display: flex;
  border-radius: 50px;
  margin: auto;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  padding: 20px 5%;
}
/*-----------Pricing-----------*/
.pricing-wrap {
  margin: auto;
  max-width: 1450px;
  padding: 0px 4.5% 120px 4.5%;
}
.container-pricing {
  display: flex;
  flex-direction: row;
  gap: 1.5%;
  margin: 0px;
  padding: 0px;
  justify-content: space-between;
}
.pricing-box {
  flex: 1;
  background-color: #FAFAFA;
  border-bottom: 5px solid #6485EA;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-bottom: 20px;

}
.pricing-top {
  background-color: #354CA2;
  color: #fff;
  padding: 40px 20px 0px 20px;
  border-radius: 8px 8px 0px 0px;
}
.pricing-top h3 {
  padding-bottom: 5px;
  font-size: 22px;
  font-weight: 400;
}
.pricing-top p {
  color: #fff;
}
.pricing-bottom {
  padding: 20px;
  flex: 1;
}
.pricing-bottom p {
  font-size:  15px;
  line-height: 1.4;
  color: #041B3E;
}
.pricing-bottom hr {
  height: 1px;
  background-color: #BABABA;
  border: none;
}
.checklist li {
  font-family: 'DM Sans', sans-serif;
  font-size:  15px;
  line-height: 1.4;
  color: #041B3E;
  padding-bottom: 10px;
  margin-inline: 20px;
}
.checklist ::marker {  
    content: "✓  ";
}
.pricing-box a {
  align-self: flex-start;
  margin-left: 20px;
}

/*-----------Pricing Matrix-----------*/
table.pricing-table {
  width:100%;
  border-collapse:inherit;
  font-family: 'DM Sans', sans-serif;
}
.pricing-table td {
    border-bottom: 1px solid #BABABA;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 20px;
    padding-top: 20px;
    width: 30%;
}
.pricing-table td {
    text-align: center;
}
.pricing-table td:first-child {
  text-align: left;
  padding-left:0px !important;
}
.pricing-table th {
    border-bottom: 1px solid #BABABA;
    padding: 20px;
    width: 30%;
    position: sticky; 
    top: 0px;
    text-align: center;
    background-color: #fff;
}

.included-box {
  padding:4px;
}
.tiny-text {
 font-size: 14px; 
 color: #777777;
 letter-spacing: 0.01em;
}
th h3 {
  color: #041B3E;
  padding-bottom: 0px;
  font-size: 19px;
  font-weight: 400;
}
td h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1EBE99; 
  padding-bottom: 5px;
}
td h4 {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 5px;
}
.block-button {
     display: block; 
}
.plan-top-button {
    background: #6485ea 0 0 no-repeat padding-box;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    line-height: 16px;
    margin: 0px 0px 5px 0px;
    padding: 12px 25px;
   white-space: nowrap;
   border-radius: 6px;
}
.plan-top-button:hover {
   background-color: #4A6ACB;
   text-decoration: none;
}
.subsection-last td {
  border-bottom:none !important; 
}
.subsection-row td {
    padding-top: 30px;
}
/*-----------About Page----------*/
.container-exec-team {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.headshot {
  flex-basis: calc(25% - 15px);
}
.headshot img {
  width: 100%;
}
.headshot p {
  padding-top: 10px;
}
/*-----------404 Page---------*/
.light-grey {
  background-color: #F2F2F2;
}
.error-404 {
  display: flex;
  height: 60vh;
  align-items: center;
  gap: 5%;
  padding-top: 50px
}
.big-number-404 {
  flex-shrink: 0;
}
.big-number-404 h2 {
  font-size: 200px;
  color: #1EBE99;
  font-family: 'Roboto Mono', sans-serif;
}
.error-404 .item-1 button {
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color:#6485EA; /*blue*/
  background-color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  margin: 12px 8px 0px 0px;
  text-decoration: none;
  display: inline-block;
}
.error-404 .item-1 button:hover {
  background-color: #6485EA; /*blue*/;
  color: #fff;
  text-decoration: none;
}
.nav-link {
  cursor: pointer;
}
#getting-started-btn {
  cursor: pointer;
}
/*------------------------------- ******************************* Responsive ******************************* -------------------------------*/

@media screen and (min-width:770px){
  .hidden-desktop {
    display: none;
  }
}
@media screen and (min-width:2000px){
  .container-hp-hero {
    max-width: 1800px;
    margin: auto;
  }
  .hp-hero-text {
    padding-left: 0px; 
  }
}
@media screen and (max-width:769px){
  .hidden-mobile {
    display: none;
  }
  .pricing-wrap {
  overflow-x: scroll;
  }
  .error-404 {
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
  min-height: 90vh;
  }
  .big-number-404 h2 {
    font-size: 80px;
    padding-top: 40px;
  }
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 16px;
  }
  h4 {
    font-size: 15px;
  }
  p, ul, ol {
    font-size: 15px;
  }
  .blog-content ul, .blog-content ol {
    font-size: 15px;
  }
  .basic-table tr {
    font-size: 13px;
  }
  .small-p {
    font-size: 12px;
    line-height: 1.35;
  }
  .small-bulletpoint {
    font-size: 14px;
  }
  .smallcaps {
  font-size: 13px;
  letter-spacing: 0.04em;
  }
  .resources-left .smallcaps{
  padding-bottom: 10px;
  }
  .boxed-mono-text {
  font-size: 13px;
  }
  .filesize {
  font-size: 11px;
  }
  .center-mobile {
    text-align: center;
  }
  .space-after-80px {
    padding-bottom: 40px;
  }
  .space-after-40px {
  padding-bottom: 20px;
  }
  .space-after-30px {
  padding-bottom: 15px;
  }
  .solid-header {
    margin-bottom: 40px;
    padding: 65px 20px 55px 20px;
  }
  .btnlrg {
  padding: 11px 20px;
  font-size: 16px;
  margin: 10px 10px 10px 0px;
  }
  .btnlrg:hover {
    padding: 11px 17px 11px 23px;
  }
  .btnsml {
  padding: 9px 20px;
  font-size: 14px;
  margin: 10px 10px 10px 0px;
  }
  .btnsml:hover {
  padding: 9px 18px 9px 22px;
  }
  .content-wrap {
  padding: 0px 20px 30px 20px;
  }
  .content-wrap-80px-before-and-after {
  padding: 40px 4.5% 40px 4.5%;
  }
  .container {
  flex-direction: column;
  gap: 30px;
  }
  .icon-text img {
    width: 22px;
    height: 22px;
  }
  .whitepaper {
    height: auto;
    flex-direction: column-reverse;
  }
  .whitepaper-text {
    flex-basis: 100px;
    padding-top: 20px;
  }
  .whitepaper-image {
    max-width: 300px;
  }
  .container-solid {
  flex-direction: column;
  gap: 20px;
  padding: 30px 5% 5% 5%;
  }
  .container-hp-hero {
    flex-direction: column;
    padding-top: 60px;
    padding-bottom: 0px;
    gap: 20px;
    margin: 20px;
  }
  .container-hp-hero .small-p {
    padding-bottom: 0;
    }
  .hp-hero-text {
    padding: 0px;
  }
  .hp-hero-text h1 {
    font-size: 26px;
  }
  .hp-feature-text {
    padding-bottom: 25px;
  }
  .hp-hero-dashboard {
    padding: 0px;
    flex-basis: 200px;
    margin-right:-20px;
  }
  .hp-hero-text h3 {
    font-size: 15px;
    padding: 4px 0px;
  }
  .hp-product-selector h4 {
    font-size: 12px;
  }
  .hp-product-selector {
    padding: 20px 0px 10px 0px;
  }
  .boxed-section {
  padding: 20px;
  }
  .container-hp-industry {
  flex-direction: column;
  padding: 35px 20px 20px 20px;
  gap: 0px;
  }
  .pill {
  padding: 10px 15px;
  border-radius: 30px;
  font-size: 15px;
  }
  .error-404 .item-1 button {
  padding: 10px 15px;
  border-radius: 30px;
  font-size: 15px;
  }
  .testimonial h3 {
  font-size: 20px;
  padding-bottom: 20px;
  }
  .testimonial .small-p {
  font-size: 13px;
  }
  .security-block .container {
    gap: 15px;
  }
  .trust-stats {
    padding: 0px;
  }
  .trusted-by {
    gap: 5px;
  }
  .trust-stats p {
    font-size: 22px;
  }
  .container-g2 {
    gap: 3%;
  }
  .container-g2 img {
  width: 70px;
  }
  .why-couchdrop img {
  padding-bottom:5px;
  padding-top: 0px;
  }
  .why-couchdrop p {
    padding-bottom: 0px;
  }
  .why-couchdrop h2 {
  padding-bottom: 30px;
  padding-top: 10px;
  }
  .cs-tile {
  margin-bottom: 0px;
  }
  .bright-cta {
  padding: 35px 20px 20px 20px;
  }
  .bright-cta p {
  padding-top: 15px;
  }
  .white-cta p {
  padding-top: 20px;
  }
  .bright-cta h2, .white-cta h2 {
    padding-bottom: 10px;
  }
  .lp-header-wrap {
  flex-direction: column;
  gap: 30px;
  padding: 90px 20px 30px 20px;
  }
  .lp-header-text {
  flex-basis: 100px;
  flex-grow: 1;
  }
  .lp-photo img {
    height: 280px;
  }
  .space-before {
    margin-top: 30px;
  }
  .container-learn-more {
  flex-direction: column;
  padding-top: 0px;
  }
  .learn-more-upper, .learn-more-lower {
    padding: 20px 20px 5px 20px;
  }
  .container-learn-more img {
    width: 30px;
    padding-bottom: 5px;
  }
  .container-product-header {
    flex-direction: column;
  }
  .large-dashboard {
    margin-top: 20px;
  }
  .skinny-header-wrap {
    margin-bottom: 30px;
    padding: 32px 20px 0px 20px;
  }
  .white-text-header {
    padding: 50px 0px 20px 0px;
}
  .automate-bulletpoints {
    flex-direction: column;
    padding: 0px;
  }
  .vertical-align {
  align-items: flex-start;
  }
  .automate .container-solid {
    gap: 0px;
  }
  .container-resources {
  flex-direction: column;
  gap: 0px;
  justify-content: flex-start;
  }
  .resources-left {
  flex: 1 1 100px;
  padding-bottom: 20px;
  }
  .anchor-links a {
  padding: 7px;
  font-size: 11px;
  }
  .anchor-links p {
    padding-bottom: 0px;
  }
  .container-storage {
  row-gap: 10px;
  }
  .storage-pill {
  padding: 10px 5%;
  }
  .storage-item {
  flex-basis: calc(50% - 3.3%);
  }
  .storage-item .top {
    margin-bottom: 10px;
    padding: 10%;
  }
  .container-storage h4 {
    font-size: 13px;
  }
  .container-pricing {
  flex-direction: column;
  gap: 20px;
  }
  th h3, td h3 {
    font-size: 16px;
    padding-bottom: 0px;
  }
  td h4 {
    font-size: 13px;
    padding-bottom: 0px;
  }
  .tiny-text {
   font-size: 12px;
  }
  .pricing-table td {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .footer-item {
  flex-basis: calc(50% - 20px);
  }
  .container-footer-links .footer-item a {
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  padding-bottom: 10px;
  }
  .footer-email-link {
  font-size: 15px;
  }
  .case-study-lp-tile {
  flex-basis: 100%;
  padding: 25px 20px 25px 20px;
  }
  .blog-tile-text h2 {
  font-size: 22px;
  }
  .blog-lp-tile {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
  margin: auto;
  }
  .blog-lp {
    gap: 20px;
    margin-top: 35px;
  }
  .blog-tile-text {
    width: 100%;
  }
  .blog-header h1 {
  margin-bottom: 20px;
  }
  .blog-content tr, tr {
  font-size: 13px;
  }
  .sign-up {
  padding: 25px;
  }
  .sign-up input {
  width: 90%;
  font-size: 15px;
  margin: 10px 0 15px 0;
  }
  .container-solid-vanta { 
  flex-direction: column-reverse;
  gap: 10px;
  padding: 5%;
  }
  .security-standards-upper {
    padding: 20px 20px 20px 20px;
  }
  .vanta-rectangle img {
  width: 40%;
  }
  .vanta-text h2 {
  font-size: 18px;
  } 
  .footer {
  background-image: none;
  }
  .container-get-a-demo {
    flex-direction: column;
  }
  .get-a-demo-text-wrap {
    flex-basis: 140px;
    flex-grow: 1;
    flex-shrink: 1;
    padding-top: 0px;
  }
  .demo-video-block {
    padding: 30px 0px 0px 0px;
  }
  .demo-video {
    width: 80%;
    padding: 20px 20px 10px 20px;
    margin: auto;
  }
  .demo-video h4 {
  padding: 20px 0px 5px 0px;
  }
  .lp-header-wrap-2 {
    flex-direction: column;
    gap: 30px;
  }
  .lp-bulletpoints-container {
    gap: 15px;
    padding: 0px;
  }
  .item-lp {
  flex-basis: 100px;
  }
  .white-boxed-logo {
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 20px;
  }
  .white-boxed-logo img {
    width: 40px;
  }
  .container-solid-reverse {
    flex-direction: column-reverse;
    gap: 20px;
    padding: 30px 5% 5% 5%;
  }
  .align-end {
    align-items: flex-start;
  }
  #scalable-graphic {
    width: 140px;
    flex-basis: 100px;
  }
  #notification-graphic img {
    width: 100%;
    max-width: 300px;
  }
  #notification-graphic {
    flex-basis: 80px;
    margin-bottom: 30px;
  }
  .faux-bulletpoints img {
    width: 17px;
    height: 17px;
  }
}

@media screen and (max-width:600px){
  .case-study-block {
  flex-direction: column;
  padding: 35px 20px;
  }
  .cs-left {
    align-self: flex-start;
  }
  .cs-tile {
    padding: 30px;
    margin-bottom: 0;
  }
  .cs-left img {
    display: none;
  }
  .cs-tile h4 {
    font-size: 20px;
  }
  .headshot {
  flex-basis: calc(50% - 15px);
  }
}
@media screen and (min-width:769px) and (max-width:1100px){
  .content-wrap {
    padding-bottom: 65px;
  }
  .btnlrg {
  padding: 11px 20px;
  font-size: 16px;
  margin: 7px 7px 7px 0px;
  }
  .btnlrg:hover {
    padding: 11px 17px 11px 23px;
  }
  .btnsml {
  padding: 9px 20px;
  font-size: 14px;
  margin: 7px 7px 7px 0px;
  }
  .btnsml:hover {
  padding: 9px 18px 9px 22px;
  }
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 17px;
  }
  h4 {
    font-size: 15px;
  }
  p, ul, ol {
    font-size: 15px;
  }
  .blog-content p, .blog-content ul, .blog-content ol {
    font-size: 18px;
  } 
  .small-p {
    font-size: 13px;
  }
  .small-bulletpoint {
    font-size: 14px;
  }
  .boxed-mono-text {
  font-size: 14px;
  }
  .latest-blog .item-2 {
    flex: 1;
  }
  .automate .container-solid {
    flex-direction: column;
    align-items: flex-start;
  }
  .automate-bulletpoints {
    flex-direction: row;
    padding: 10px 0px;
    gap: 0%;
    width: 100%;
  }
  .resources-left {
    flex: 1;
  }
  .resources-right {
    flex: 2;
  }
  .storage-pill {
  margin: auto;
  padding: 8px 5%;
  }
  .container-hp-hero {
    flex-direction: column;
    padding-bottom: 0px;
  }
  .hp-hero-text {
    padding: 70px 5% 0px 5%;
  }
  .hp-hero-dashboard {
    max-width: 600px;
    padding: 0px 0px 0px 5%;
    align-self: flex-end;
    flex-basis: 600px;
    flex-shrink: 1;
  }
  .blog-tile-text h2 {
  font-size: 22px;
  }
  .security-standards-upper { 
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 0px;
  }
  .security-standards-upper .security-logo img {
  width: 70%;
  flex-grow: 0;
  }
  .space-after-30px {
  padding-bottom: 15px;
  }
  .error-404 .item-1 button {
  font-size: 15px;
  padding: 10px 15px;
  border-radius: 30px;
  }
}
@media screen and (min-width:769px) and (max-width:840px){
  .container-resources {
  flex-direction: column;
  }
}
@media screen and (max-width:967px){
  .hide-nav-bar {
  display: none;
  }
}
@media screen and (min-width:968px){
  .hide-mobile-nav-bar {
  display: none;
  }
}
@media screen and (min-width:968px) and (max-width:1150px){
    .nav-link {
    font-size: 15px;
    padding: 0px 10px;
    }
}

.clickable {
 cursor:pointer; 
}