/* Global View aka Desktop View */

*{
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
}

.navbar-brand {
  padding-top: 3px;
  margin-right: 45px;
}

/*  navbar */
.cd-morph-dropdown {
  position: relative;
  background-color: #FFFFFF;
}

.cd-morph-dropdown::before {
  /* never visible - used in JS to check mq */
  content: "mobile";
  display: none;
}

.cd-morph-dropdown .navbar-brand-trigger {
  display: none;
}

.cd-morph-dropdown.nav-open .navbar-brand-trigger{
  /* display: inline-flex; */
 display:inherit;
  padding: 0.7em 5%;
}

.cd-morph-dropdown .nav-trigger {
  /* menu icon - visible on small screens only */
  position: absolute;
  top: 0;
  right: 0;
  height: 60px;
  width: 60px;
  /* replace text with icon */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
}

.cd-morph-dropdown .nav-trigger span, .cd-morph-dropdown .nav-trigger span::after, .cd-morph-dropdown .nav-trigger span::before {
  /* these are the 3 lines of the menu icon */
  position: absolute;
  background-color: #1A1A1A;
  height: 3px;
  width: 26px;
}

.cd-morph-dropdown .nav-trigger span {
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.cd-morph-dropdown .nav-trigger span::after, .cd-morph-dropdown .nav-trigger span::before {
  content: "";
  left: 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.cd-morph-dropdown .nav-trigger span::before {
  -webkit-transform: translateY(-9px);
  -ms-transform: translateY(-9px);
  transform: translateY(-9px);
}

.cd-morph-dropdown .nav-trigger span::after {
  -webkit-transform: translateY(9px);
  -ms-transform: translateY(9px);
  transform: translateY(9px);
}

.cd-morph-dropdown.nav-open .nav-trigger span {
  background-color: transparent;
}

.cd-morph-dropdown.nav-open .nav-trigger span::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.cd-morph-dropdown.nav-open .nav-trigger span::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.cd-morph-dropdown .main-nav {
  display: none;
}

.cd-morph-dropdown .morph-dropdown-wrapper {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  padding: 1.2em 5%;
  box-shadow: inset 0 1px 0 #e6e6e6;
  background-color: #FFFFFF;
}

.cd-morph-dropdown.nav-open .morph-dropdown-wrapper {
  display: block;
}

.cd-morph-dropdown .dropdown-list > ul > li {
  margin-bottom:6.3em;
  list-style: none;
  
}

.cd-morph-dropdown .label {
  display: block;
  font-size: 1.6rem;
  color: #1A1A1A;
  margin-bottom: 0.8em;
}

.cd-morph-dropdown .login-label {
  display: inline-block;
  /* font-size: 1.6rem; */
  color: #1A1A1A;
  margin-bottom: 0em;
  padding: 10px 21px 10px 21px;
}


.cd-morph-dropdown .content li::after {
  clear: both;
  content: "";
  display: block;
}

.cd-morph-dropdown .links .content > ul > li {
  margin-top: 1em;
}

.cd-morph-dropdown .links-list a,
.cd-morph-dropdown .btn {
  display: block;
  margin-left: 14px;
  font-size: 2.2rem;
  line-height: 1.6;
}

.cd-morph-dropdown .links-list a:hover,
.cd-morph-dropdown .btn:hover {
  color: #1A1A1A;
}

.dropdown.links .content::after {
  content: '';
  display: table;
  clear: both;
}

html .cd-morph-dropdown .dropdown-list > ul > li {
  margin-bottom: 0;
}

/* privacy policy */

.wrapper-container{
  max-width: 1280px;
  padding: 86px 60px 167px 60px;
  margin: auto;
}

#terms-wrapper{
  box-shadow: 0px 5px 30px rgba(185, 185, 185, 0.1);
  padding: 54px 55px  80px 55px;
  min-height: 650px;
  line-height: 1.6em;
  font: Inter;
  border-radius: 8px;
  border: solid 1px #e5e5e5;
  background-color: #ffffff;
  
}

#terms-wrapper p,
#terms-wrapper ul{
  font-size: 14px;
  margin-bottom: 0.7rem;
  color: #363f4a;
}
#terms-wrapper li{
  margin-top: 0.3rem;
}


#terms-wrapper h4{
  font-size: 18px;
  font-weight: 600;
  color: #363f4a;
}

#terms-wrapper h3{
  font-family: Inter;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.29;
  letter-spacing: normal;
  text-align: center;
  color: #243141;
}

#terms-wrapper a{
  text-decoration: none;
  color: #243141 !important;
  font-weight: 600;
}

#terms-wrapper a:hover{
  color: #111820 !important;
}


#terms-wrapper ul{
 list-style-type: circle;
}




@media only screen and (min-width: 992px) {
  .cd-main-content {
    padding-top: 80px;
  }

  .cd-morph-dropdown {
    /* position: absolute; */
    position: relative;
    height: 80px;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0;
    text-align: center;
    background-color: transparent;
  }

  .cd-morph-dropdown::before {
    content: "desktop";
  }

  .cd-morph-dropdown .nav-trigger,
  .cd-morph-dropdown .navbar-brand-trigger,
  .cd-morph-dropdown.nav-open .navbar-brand-trigger {
    display: none;
  }

  .cd-morph-dropdown .main-nav {
    display: inline-block;
  }


  .cd-morph-dropdown .main-nav > ul > li {
    display: inline-block;
    margin-top: 30px;
  }


  .cd-morph-dropdown .main-nav > ul > .has-dropdown > a,
  .cd-morph-dropdown .main-nav .main-nav-link {
    display: block;
    margin: 0px 40px 0 0;
    height: 18px;
    color: #243141;
    font-size: 16px;
    font-weight: 600;
    font-family: Inter;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
    text-decoration: none;
  }
  
  .cd-morph-dropdown.is-dropdown-visible .main-nav > ul > .has-dropdown > a,
  .cd-morph-dropdown.is-dropdown-visible .main-nav-link {
    /* main navigation hover effect - on hover, reduce opacity of elements not hovered over */
    opacity: 0.6;
  }

  .cd-morph-dropdown.is-dropdown-visible .main-nav > ul > .has-dropdown.active > a {
    opacity: 1;
  }

  .cd-morph-dropdown .morph-dropdown-wrapper {
    /* dropdown wrapper - used to create the slide up/slide down effect when dropdown is revealed/hidden */
    display: block;
    /* top: 58px; */
    top: 46px;
    /* overwrite mobile style */
    width: auto;
    padding: 0;
    box-shadow: none;
    background-color: transparent;
    /* Force Hardware acceleration */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }

  .cd-morph-dropdown.is-dropdown-visible .morph-dropdown-wrapper {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .cd-morph-dropdown .dropdown-list {
    position: absolute;
    top: 25px;
    left: 0;
    visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform, width, height;
    -webkit-transition: visibility 0.3s;
    transition: visibility 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  }

  .no-csstransitions .cd-morph-dropdown .dropdown-list {
    display: none;
  }

  .cd-morph-dropdown .dropdown-list::before {
    /* dropdown top triangle */
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 0;
    width: 0;
    border: 8px solid transparent;
    border-bottom-color: #FFFFFF;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }

  .cd-morph-dropdown .dropdown-list > ul {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
    overflow: hidden;
  }

  .cd-morph-dropdown.is-dropdown-visible .dropdown-list {
    visibility: visible;
    -webkit-transition: width 0.3s, height 0.3s, -webkit-transform 0.3s;
    transition: width 0.3s, height 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, width 0.3s, height 0.3s;
    transition: transform 0.3s, width 0.3s, height 0.3s, -webkit-transform 0.3s;
  }

  .cd-morph-dropdown.is-dropdown-visible .dropdown-list::before {
    opacity: 1;
  }

  .cd-morph-dropdown .dropdown {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
  }

  .cd-morph-dropdown .dropdown.active {
    opacity: 1;
    visibility: visible;
  }

  .cd-morph-dropdown .dropdown.move-left .content {
    -webkit-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    transform: translateX(-100px);
  }

  .cd-morph-dropdown .dropdown.move-right .content {
    -webkit-transform: translateX(100px);
    -ms-transform: translateX(100px);
    transform: translateX(100px);
  }

  .cd-morph-dropdown .label {
    /* hide the label on bigger devices */
    display: none;
  }

  .cd-morph-dropdown .content {
    /* padding: 2.2em 1.8em; */
    padding: 2.2em 0em 1em 1.8em;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    text-align: left;
  }

  .cd-morph-dropdown .content > ul::after {
    clear: both;
    content: "";
    display: block;
  }

  .cd-morph-dropdown .content > ul > li {
    width: 48%;
    float: left;
    margin-right: 4%;
    margin-top: 0;
  }

  .cd-morph-dropdown .content > ul > li:nth-of-type(2n) {
    margin-right: 0;
  }

  .cd-morph-dropdown .links .content > ul > li {
    margin-top: 0;
  }

  .cd-morph-dropdown .links .content {
    /* width: 390px; */
    width: 412px;
  }

  .cd-morph-dropdown .links .account-content {

    width: 280px;
  }

  .cd-morph-dropdown .links-list a {
    font-size: 1.6rem;
    margin-left: 0;
  }

  .cd-morph-dropdown .bg-layer {
    /* morph dropdown background */
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 1px;
    background: #FFFFFF;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .cd-morph-dropdown.is-dropdown-visible .bg-layer {
    opacity: 1;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  }

  .login-btn:hover ~ .book-a-demo-btn a {
    opacity: 0.6;
  }

  .book-a-demo-btn:hover + .login-btn a {
    color: red;
  }
  
}

/* login */

.navbar-login{
  margin-bottom: 0px;
  display: none;
}

.login-btn a,
.book-a-demo-btn a{
  margin: 0px 20px 0 0;
  height: 18px;
  color: #243141;
  font-size: 16px;
  font-weight: 600;
  font-family: Inter;
  /* -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s; */
  text-decoration: none;
}

.signup-btn{
  width: auto;
  padding: 7px 21px 7px 21px;
  border-radius: 10px;
  background-color: #eba452;
}

.signup-btn a{
  color: #ffffff !important;
  text-decoration: none;
  font-size: 16px;
  font-family: Inter;
  font-weight: 500;
  vertical-align:text-bottom;
}


/* menu specific */
.title a:link, a:visited {
  text-decoration: none;
  font-weight: 500;
  color: #363F4A;
  margin: 0 0 0.25em 0;
  font-size: 15px;
}

.content .sub-text{
  font-size: 15px;
  padding-top: 8px;
}

.content .icon-box * {
  transition: all 0.1s ease-out;
  position: relative;
}
.content .icon-box.space {
  margin-bottom: 1.25em;
}
.content .icon-box.flat {height: 1.5em;margin-bottom: 0.5em;}
.content .icon, .content .text {
  float: left;
  color: #6f7680;
  /* max-width: 290px; */
}

.content .icon {
  color: #363F4A;
  font-size: 1.25em;
  margin: 0 1em 0 0;
}
.content .icon-box {
  cursor: pointer;
}
.content .icon-box {
  float: left;
  width: 100%;
  margin: 0;
  height: 4em;
  row-gap: 0;
  line-height: 1em;
}

.content .icon-box .text i {
  clip-path: inset(0 100% 0 0);
  font-size: 0.75em;
  position: relative;
  top: -1px;
}


/* Landing Page */ 
/* Homepage */

.headline-wrapper {
  padding: 0px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  /* margin: auto; */
  /* min-height:100vh; */
  /* align-items: center; */
}

.headline{
  flex:1.75 1 0%;
  /* margin-right: 20px; */
  text-align: left;
  align-self: center;
}

.headline-text h2{
  font-family: Inter;
  font-size: 50px;
  font-weight: bold !important;
  line-height: 1.29;
  text-align: center;
  color: #243141;
  margin: auto;

}

.headline-text p{
  margin: 20px 0 0 0;
  font-family: Inter;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  /* color: #2e2c2c; */
  color: #6f7680;
}

.tool-cover{
  flex:3 1 0%;
  margin-right: -20px;
  margin-top:-20px
}

.tool-cover img{
  display: block;
  /* max-width: 550px; */
  margin: auto;
  /* max-width:1654px;
  max-height:100vh; */
  width: 100%;
  height: auto;
  
}

.cta-btn {
  padding-top: 40px;
  display: block;
}

.cta-btn a{
  width: 100%;
  padding: 15px 25px;
  text-decoration: none !important;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-align: center;
  border-radius: 10px;
 }

 .cta-btn p{
  padding-top: 38px;
  color: #6f7680;
 }

 .cta-btn #videoLink{
  padding: 0px;
  color: #e49d4d;
  font-weight: 500;
 }

 .cta-btn #videoLink:hover{
  color: #e49d4d;
  text-decoration: underline !important;
 }

 /* .cta-btn a:hover{
  background: #f1f1f1;
  color: black;
}  */

.btn-trial{
  background: #e49d4d;
  color: #ffffff !important;
}

.btn-trial:hover{
  background: #dd8929;
}

.btn-demo{
  margin-left: 18px;
  background: #ffffff;
  color: #e49d4d !important;
  border: 2px solid #e49d4d;
}

.btn-demo:hover{
  background: #e49d4d;
  color: #ffffff !important;
}

/* Demo Video */
.mfp-hide{
  display: none !important;
}

.cta-btn .button .fa{
  margin-left: 8px;
  font-size: 20px;
  vertical-align: middle;
}

#videoStory{
  width: 75%;
  margin: 0 auto;
}

#videoStory iframe{
  width:80%;
  margin:0 auto;
}

iframe{
  margin-left: 10% !important;
}

button.mfp-close {            
  overflow: visible !important;
  cursor: pointer !important;
  background: white !important;
  border:0;
  -webkit-appearance: none;
  display: block !important;
  outline: 0 !important;
  padding: 0 !important;
  z-index: 1046 !important;
  box-shadow:none !important;
}

.mfp-close{
  width: 44px;
  height: 44px;
  border-radius: 50px;
  line-height: 44px;
  position: absolute;
  right: 120px !important;
}  


.headline-value{
  padding: 0px 60px;
  display: flex;
  width: 100%;
  justify-content: space-around;
  gap: 3rem;
}

.value-container{
  text-align: center;
  font-weight: 600;
  max-width: 270px;
}

.value-container p{
  color: #243141;
}

.value-container img{
  height: 83px;
  margin-bottom: 20px;
}

/* stakes */

/* .bg-purple-50 {
  --tw-bg-opacity: 1;
  background-color: rgba(245,243,255,var(--tw-bg-opacity));
} */

.stakes-wrapper .jumbotron-header p{
  font-size: 18px;
}

.jumbotron-stakes p,
.jumbotron-header p{
  color: #6f7680;
}


.jumbotron-stakes h3{
  color: #333333;
}

.jumbotron-header h3{
  font-size: 24px;
  line-height: 2.5rem;
}


.jumbotron-stakes{
  /* background: linear-gradient(90.74deg, rgba(247, 238, 231, 0.8) -20.09%, rgba(247, 238, 231, 0) 118.5%); */
 }
 
 .stakes-cta-btn{
   /* display: block; */
   text-align: left;
   padding-top: 25px;
   /* margin-top: 20px; */
 }

 .stakes-cta-btn a{
  padding: 15px 25px;
  width: 100%;
  text-decoration: none !important;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-align: center;
  border-radius: 10px;
  font-size: 14px;
 }

 .stakes-box-area{
  margin: auto;
  display: flex;
  width: 100%;
  border-radius: 16px 16px 16px 16px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #C2C2C2;
  margin-top: 50px;
  margin-bottom: 96px;
  padding: 0px 0px 0px 0px;
 }

 .stakes-wrapper h2{
  font-family: Inter;
  font-size: 38px;
  font-weight: bold;
  line-height: 1.29;
  letter-spacing: normal;
  color: #243141;
  padding-bottom: 30px;
 }

 .stakes-container{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3.4rem;
  margin-top: 25px;
 }

 .stakes-grid{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
 }

 .stakes-left-col{
  /* max-width: 470px;
  min-width: 470px; */
  flex:1
 }

 .stakes-right-col{
  /* width: 60%; */
  /* min-width: 70%; */
  padding-top: 65px;
  padding-bottom: 65px;
  padding-right: 4%;
  padding-left: 4%;
  border-radius: 10px;
  background-color: rgb(248, 249, 250);
  flex:1
 }



 .stakes-widget-container{
   background-color: white;
   border-radius: 10px;
   justify-content: flex-start;
   /* height: 65px; */
   margin-bottom: 20px;
   color: #6F7680;
 }

 .stakes-widget-container ul{
  list-style: none;
  margin-bottom: 0px;
  text-align: left;
  padding: 15px 10px;
 }

 .xmark li:before {    
  font-family: 'FontAwesome';
  font-size: 12px;
  content: "\f00d";
  margin:0 0px 0 0px;
  /* color: #00b44d; */
  color:#eba452;
  background-color: #FDF5ED;
  /* background-color: #d6f4e3; */
  border-radius: 50%;
  padding: 3px;
  margin-left: -1.2rem;
  }

  .xmark li{
    margin-left: 1.9rem;
  }


 
 .stakes-grid-left,
 .stakes-grid-right{
   flex: 1;
 }


.jumbotron-header{
  text-align: center;
}

.jumbotron-header h2,
.jumbotron-header h3,
.jumbotron-header p{
  text-align: left;
}

.section-header{
  display: inline-flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-size: 20px;
  color:  #eba452;
  background:#FDF5ED;
  border-radius: 8px;
  padding: 9px 20px;
  font-weight: bold;
  margin-bottom: 50px;
}
 


/* benefits */

.jumbotron-header{
  margin: 0px;
}

.jumbotron-benefits{
  /* background-color: #f7f8fa; */
}

 .stakes-wrapper,
 .benefits-container{
  padding: 125px 0px;
  margin-bottom: 0px;
 }

 .benefits-container h2,
 .jumbotron-features h2,
 .featurespage-container h2,
 .news-container h2{
    /* width: 730px; */
    /* margin:auto; */
    font-family: Inter;
    font-size: 52px;
    font-weight: bold;
    line-height: 1.29;
    letter-spacing: normal;
    text-align: center;
    color: #243141;
    padding-bottom: 30px;
 }

 .container-testimonials h2{
  padding-bottom: 40px;
  font-family: Inter;
  font-size: 52px;
  font-weight: bold;
  line-height: 1.29;
  letter-spacing: normal;
  text-align: center;
  color: #243141;
}
 
 .box-area{
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  justify-content: space-around;
  margin: 0 60px;
  gap: 3rem;
}

 .benefits-box{
  position: relative;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 381px;
  height: 410px;
  margin: 116px 0px 1px 0;
  padding: 70px 64px 73px;
  border-radius: 10px;
  /* box-shadow: 0 17px 41px -1px rgba(134, 134, 134, 0.25); */
  /* background-color: #FDF5ED; */
  background-color: #f8f9fa;
  transition: .3s;
}

.benefits-box img{
  height: 55px;
}

 .benefits-box .title{
  font-family: Inter;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.66;
  letter-spacing: 0.6px;
  text-align: center;
  color: #243141;
 }
 
 .benefits-box .sub-text{
  font-family: Inter;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.77;
  letter-spacing: normal;
  text-align: center;
  /* color: rgba(36, 31, 71, 0.8); */
  color: #6f7680;
 }

 .benefits-box img{
   margin-bottom: 19px;
 }

/* product features */
.jumbotron-features .section-title,
.featurespage-container .section-title{
  font-family: Inter;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.29;
  letter-spacing: normal;
  text-align: center;
  /* color: #602132; */
  color:#eba452;
  margin-bottom: 30px;
}

.jumbotron-features,
.featurespage-container{
  padding: 125px 0px;
}

.features-wrapper{
  display: flex;
  align-items: center;
}

.features-column {
  flex:1;
}

.features-first-box{
  height: 570px;
}

.features-third-box{
  margin-top: 45px;
}

.features-second-box,
.features-third-box{
  /* height: 740px; */
}


.features-wrapper .text-left{
  padding-left: 60px;
  flex: 0.5;
}

.features-wrapper .text-right{
  padding-right: 60px;
  flex: 0.5;
  padding-top:70px;
}

.feature-wrapper .img-right,
.feature-wrapper .img-left{
  flex: 1.5;
}

.features-wrapper img { 
  width: 100%; 
  height: auto; 
}

.features-second-box img{
  /* margin-top: 120px;
  margin-left: -6%; */
}

.features-third-box img{
  /* margin-top: 110px; */
}

.features-column .title{
  font-family: Inter;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.29;
  letter-spacing: normal;
  text-align: left;
  /* color: #cc584b; */
  /* color: #F25D55; */
  color: #eba452;
}

.features-column h3{
  font-family: Inter;
  font-size: 42px;
  font-weight: bold;
  line-height: 1.38;
  letter-spacing: normal;
  text-align: left;
  color: #243141;
}

.features-column p{
  font-family: Inter;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.59;
  letter-spacing: 0.8;
  text-align: left;
  /* color: rgba(36, 31, 71, 0.8); */
  color: #6f7680;
  margin-top: 25px;
}

.features-column ul{
  list-style-type: none;
  margin: 0;
  padding: 0px 0px 0px 0.8em;
  margin-top: 35px;
}

.features-column li{
  font-size: 16px;
  font-weight: normal;
  line-height: 1.59;
  color: #6f7680;
  margin-top: 10px;
  margin-left: 1.2rem;
  
}

/* .checkmark li:before {    
  font-family: 'FontAwesome';
  font-size: 12px;
  content: "\f00c";
  margin:0 10px 0 -28px;
  color:#eba452;
  background-color: #FDF5ED;
  border-radius: 50%;
  padding: 3px;
  }
   */

/* .features-column span{
  left:-0.3em;
} */


/* in the news */
.news-container{
  padding: 150px 60px 182px 60px;
}

.carousel-inner{
  margin-top: 3%;
  max-width: 69%;  
  margin: auto;
}

.carousel-item h4{
  font-family: Inter;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: normal;
  text-align: center;
  /* color: rgba(36, 31, 71, 0.8); */
  color: #6f7680;
}

#carouselContent .carousel-indicators {
  /* max-width: 69% !important;  */
  max-width: 90% !important; 
  margin-top: 5%;
  margin-left: auto;
  margin-right: auto;
  overflow: auto;
  position: relative;
  text-align: left;
  white-space: nowrap;
  width: 100%; 
  display: flex;
  justify-content: space-between !important;
  gap:1rem;
  align-items: center !important;
}

#carouselContent .carousel-indicators li {
  background-color: transparent;
  -webkit-border-radius: 0;
  border-radius: 0;
  height: auto;
  width: auto;
}

#carouselContent .carousel-indicators li img {
  display: block;
  opacity: 0.2;
  height: 100px;
}

#carouselContent .carousel-indicators li.active img {
  opacity: 0.99;
}
#carouselContent .carousel-indicators li:hover img {
  opacity: 0.85;
}

#carouselContent .carousel-control-prev,
#carouselContent .carousel-control-next{
  margin-top: 45px;
  align-items: center;
  height: 50px;
  width: 50px;
  border: 3px solid #C4C4C4;
  border-radius: 50%;
  position: absolute;
} 

.carousel-control-prev, 
.carousel-control-next{
  font-size: 18px;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev{
    display:block;
}

/* Trusted by */
.news-container .brand-logos {
  padding: 0;
}

.news-container ul {
  list-style-type: none;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: stretch;
  justify-content: space-evenly;
  align-items: center;
}

.news-container .brand-logos li {
  display: inline-block;
  /* padding: 28px 38px 0; */
  padding: 28px 50px 10px 0;
  display: inline block;
  text-align: center;
}


/* cta-banner */

.banner-bg{
  background-image: url(../img/LandingPage/cta-banner-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 376px;
  width: 100%;
  background-position: top center;
  overflow: hidden;
  border-radius: 8px;
}

.left-shape{
  position:absolute;
  background-repeat: no-repeat;
  left: -5px;
  bottom:-10px
}

.right-shape{
  position:absolute;
  right: 0px;
  top: 0px;
}
.banner-container{
  padding: 90px 60px 167px 60px;
}

.banner-container .text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2 !important;
}

.banner-container .text p{
  font-size: 18px;
}

.banner-container .text h3{
  font-size: 40px;
  width: 810px;
}

.banner-container .cta-banner-btn{
  padding: 15px 25px;
  margin: 0 auto;
  margin-top: 22px;
  background-color: #eba452;
}

.banner-container .cta-banner-btn a{
  text-decoration: none;
}

.banner-container .cta-banner-btn:hover{
  background-color: #dd8929;
}

/* footer */
footer{
  /* padding: 171px 85px 31px 85px; */
  padding: 0px 60px 31px 60px;
  color: #000000;
}

.footer-container{
  /* margin: auto; */
  /* padding: 0 20px; */
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.column-group{
  display: flex;
  justify-content: space-around;
  flex: 0.9;
  padding-right: 5%;
  /* flex:1.5,; */
  /* justify-content: space-around; */
}

 .footer-container .column-1{
  /* flex: 1.1; */
  padding-right: 5%;
  max-width: 24%;
}

/*
.footer-container .column-2,
.footer-container .column-3{
  flex: 0.7;
} */

.footer-container h4{
  font-family: Inter;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.41;
  letter-spacing: normal;
  text-align: left;
  color: #243141;
  padding-bottom: 19px;
}

.footer-container h3{
  font-family: Inter;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.41;
  letter-spacing: normal;
  text-align: left;
  color: #243141;
  padding-top: 10px;
}

.footer-container a,
.footer-container p{
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.41;
  letter-spacing: normal;
  text-align: left;
  color: #6f7680;
}

.footer-container a:hover,
.footer-bottom a:hover{
  color:#243141;
  text-decoration: none;
}

.social-media{
  margin:20px 0;
}

.social-media a{
  /* color: #3a352f; */
  margin-right:13px;
  font-size: 32px;
  text-decoration: none;
  transition: .3s linear;
}


.newsletter-form{
  padding-top: 19px;
  display:flex;
  flex-wrap: wrap;
  color: #3a352f;
}

.txtb_name{
  flex: 1;
  padding: 13px 16px;
  margin-right: 10px;
  font-family: Inter;
  font-size: 16px;
  color: #243141 !important;
  background-color: #f3f3f5;
  border: none;
  font-weight: 500;
  outline: none;
  border-radius: 3px; 
  width: 175px;
}

.form-inline{
  flex: 1;
}

.txtb{
  padding: 13px 16px;
  font-size: 16px;
  color: #293043;
  background: #f3f3f5;
  border: none;
  font-weight: 500;
  outline: none;
  border-radius: 2px;
  width: 245px;
  margin-top:0px;
  margin-right: 10px;
}

.btn-footer{
  padding: 13px 12px;
  font-size: 16px;
  color:white;
  background: #eba452;
  border: none;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: opacity .3s linear;
  width: 105px;
  height: 48px;
  border-radius: 4px;
}

.btn-footer:hover{
  background-color: #dd8929;;
}

.signup-btn:hover{
  background-color: #dd8929;
}

.footer-bottom{
  display: flex;
  margin-top: 100px;
}

.footer-bottom p,
.footer-bottom a{
  padding-right: 9px;
  color: #6f7680;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.41;
  letter-spacing: normal;
  text-align: left;
}

.swal-title {
  margin: 0px;
  font-size: 32px !important;
  margin-bottom: 0px;
  /* box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.21); */
  /* margin-bottom: 28px; */
}

.swal-text {
  padding: 17px;
  display: block;
  /* margin: 22px; */
  text-align: center;
  color: #443d3b;
  line-height: 1.5em;
  font-size: 16px;
}

.swal-button {
  padding: 7px 19px;
  border-radius: 2px;
  background-color: #f3c67a;
  font-size: 12px;
  border: none;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.3);
}

.swal-button--cancel{
  color:white;
  background-color: #b9b9b9 !important;
}

/* how it works */

.howitworks-container h2,
.pricing-container h2{
  font-family: Inter;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.29;
  letter-spacing: normal;
  text-align: center;
  color: #243141;
}

/*===== Vertical Timeline =====*/
#conference-timeline {
  position: relative;
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
}

#conference-timeline .conference-center-line {
  position: absolute;
  width: 1.5px;
  height: 68%;
  top: 48%;
  left: 50%;
  /* margin-left: -8px; */
  background:#f7ce94;
  z-index: -1;
}
#conference-timeline .conference-timeline-content {
  padding-top: 82px;
  /* padding-bottom: 156px; */
}
.timeline-article {
  width: 100%;
  height: 100%;
  position: relative;
  display: inline-block;
  /* overflow: visible; */
  /* margin: 20px 0; */
}
.timeline-article .content-left-container,
.timeline-article .content-right-container {
  max-width: 44%;
  width: 100%;
}

.timeline-article img{
 -webkit-filter: drop-shadow(0px 30px 100px rgba(247, 206, 148, 0.08)) drop-shadow(0px 7px 4px rgba(70, 70, 70, 0.07));
 filter: drop-shadow(0px 30px 100px rgba(247, 206, 148, 0.08)) drop-shadow(0px 7px 4px rgba(70, 70, 70, 0.07));
 max-height: 100%;
 max-width: 100%;
}

/* .timeline-article .img-step2{
  margin-top: 0%;
}

.timeline-article .img-step3{
  margin-top: 0%;
} */

.timeline-article .content-left,
.timeline-article .content-right {
  position: relative;
  width: auto;
  padding: 27px 43px;
}

.timeline-article h4{
  font-family: Inter;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.29;
  letter-spacing: normal;
  color: #243141;
  padding-bottom: 10px;
}

.timeline-article p {
  padding: 0;
  position: relative;
  font-family: Inter;
  font-size: 18px;
  font-weight: normal;
  line-height: 155%;
  letter-spacing: normal;
  text-align: left;
  color: #6f7680;
}

.timeline-article .content-left-container {
  float: left;
}
.timeline-article .content-right-container {
  float: right;
}

.timeline-article .meta-step {
  position: absolute;
  top: 0%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-left: -23px;
  color: #fff;
  border-radius: 100%;
  background:  #f7ce94;
  margin-top: 6%;
}
.timeline-article .meta-step .step {
  display: block;
  text-align: center;
  font-weight: 800;
  font-size: 25px;
  line-height: 1.9;
}


/* FAQ Section */

.faq-container {
  margin-bottom: 182px;
}

.faq-container h2{
  font-family: Inter;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.29;
  letter-spacing: normal;
  text-align: center;
  color: #243141;
  padding-bottom: 3%;
}

.faq-container li,
.faq-container ul,
.faq-container p,
.faq-contact{
  font-weight: normal !important;
}

.faq-container h4{
  padding-top: 3%;
  text-align:center; 
  font-family: Inter;
  font-size: 32px;
  font-weight: normal;
  line-height: 1.29;
  letter-spacing: normal;
  color: #243141;
}

.pricing-container h4{
  padding-top: 5.5%;
  text-align:center; 
  font-family: Inter;
  font-size: 32px;
  font-weight: normal;
  line-height: 1.29;
  letter-spacing: normal;
  color: #243141;
}
.faq-contact a,
.faq-container .faq-contact a {
  text-decoration: none;
  color: #6F7680 !important;
  font-weight: 500;
}

.faq-text{
  margin-top: 3%; 
  width: 34%;
  margin: auto;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.77;
  text-align: center;
  color: #6F7680;
}

.faq-container .accordion {
  list-style: none;
  width: 62%;
  margin: 0 auto;
 
}

.faq-container .accordion-item {
  border-radius: 10px;
  border: solid 1px #e5e5e5;
  background-color: #ffffff;
  margin-bottom: 25px;
}

.faq-container .accordion-item h3{
  font-family: Inter;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.29;
  letter-spacing: normal;
  color: #243141;
}

/* Thumb */
.faq-container .accordion-thumb {
  margin: 0;
  padding: 31px 30px;
  cursor: pointer;
  font-weight: normal;
  font-family: 'Inter', sans-serif;
  text-align: left;
  background: white;
  border-radius: 10px;
}

/* .faq-container .accordion-break::after{
  position: relative;
  top: -16px !important;
} */

.faq-container .accordion-thumb::after {
  /* content: '\002B';
  float: right;
  display: inline-block;
  font-size: 16px;
  color: #848592;
  -webkit-transition: -webkit-transform .2s ease-out;
  transition: -webkit-transform .2s ease-out;
  transition: transform .2s ease-out;
  transition: transform .2s ease-out, -webkit-transform .2s ease-out; */
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-right-style: solid;
  border-right-width: 2px;
  content: "";
  display: inline-block;
  height: 8px;
  width: 8px;
  color: #6F7680;
  float: right;
  /* left: 0;
  top: 0;
  position: relative; */

}

/* Panel */
.faq-container .accordion-panel {
  margin: 0;
  display: none;
  font-size: 18px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  line-height: 1.6 ;
  background: white;
  margin-top: -15px;
  padding: 18px 3.2rem 1.3rem 2rem;
  /* color:rgba(36, 31, 71, 0.8); */
  color:#6f7680;
}

.faq-container .accordion-panel a{
  text-decoration: none;
  color:#6f7680;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.faq-container .accordion-panel a:hover{
  color: #626870;
}


.faq-container .accordion-panel li{
  list-style-type:disc;
}

/* Active */
.faq-container .accordion-item.is-active .accordion-thumb::after {
  /* content: '-'; */
  /* color: #eba452; */
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-right-style: solid;
  border-right-width: 2px;
  content: "";
  display: inline-block;
  height: 8px;
  width: 8px;
  color: #6F7680;
  float: right;
  will-change: transform;
  -webkit-transition: transform 0.1s;
  transition: transform 0.1s;


}

/* Pricing Card */
.xpo-price-btn-container {
  margin: 50px auto 20px;
  display: flex;
  align-items: center;
  width: 330px;
  background-color: #ddd;
  border-radius: 20px;
  position: relative;
  height: 40px;
  justify-content: center;
  transition: all 0.2s ease-out;
}
.xpo-price-btnshape {
  /* background-color: #6f47ec; */
  background-color: #eba452;
  position: absolute;
  width: 165px;
  height: 38px;
  left: 0px;
  /* transform:translate(75px); */
  transform: translate(0px);
  border-radius: 20px 20px 20px 20px;
  transition: all 0.2s ease-out;
}

.xpo-price-btn-container button {
  width: 165px;
  height: 40px;
  border: none;
  cursor: pointer;
  background-color: transparent;
  z-index: 0;
  text-align: center;
  transition: all 0.2s ease-out;
  color: #888;
  font-size: 16px;
  letter-spacing: 1px;
}

#xpo-month-pack {
  border-radius: 20px 20px 20px 20px;
  color: #fff;
}

.xpo-price-btn-container button:focus{
    outline: 0;
}

.xpo-discount{
    display: inline-block;
    font-size: 10px;
    line-height: 2;
    color: #fff;
    padding: 0 4px;
    background-color: #854242;
    /* background-color: #ffe87a; */
    border-radius: 4px;
    white-space: nowrap;
    font-weight: 700;
}



/* Press */
.howitworks-container, .pricing-container,
.press-container,
.about-container,
.insights-container{
  padding: 140px 60px 96px 60px;
}

.press-container .press-header,
.about-container .about-header,
.insights-container .insights-header{
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: #eba452;
}

.press-container h2,
.about-header h2,
.insights-header h2{
  font-family: Inter;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.29;
  letter-spacing: normal;
  text-align: center;
  color: #243141;
  margin-top: 32px;
  /* width: 50%; */
  margin: auto;
}

.press-container .press-subtext,
.about-container .about-subtext,
.insights-container .insights-subtext{
  padding: 23px 0px 71px 0px;
  /* width: 59%; */
  margin: auto;
  font-family: Inter;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.78;
  letter-spacing: normal;
  text-align: center;
  /* color: #241f47; */
  color: #6F7680;
}

.press-content img{
  /* align-items:baseline; */
  /* align-items: baseline; */
  height: 50px;
}

.press-content{
  display: flex;
  justify-content: space-between;
  /* padding: 0px 85px; */
  font-family: Inter;
  /* align-items: baseline; */
}

.press-left, .press-middle, .press-right {
  flex: 1;
  padding: 25px;
  border: 0.5px solid rgba(229, 229, 229, 0.9);
  box-shadow: 0px 20px 24px rgba(216, 216, 216, 0.15);
  border-radius: 10px;
  margin-right: 29px;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  position: relative;
  top: 0; 
  text-align: left;
}

.press-left:hover,
.press-middle:hover,
.press-right:hover{
  -webkit-box-shadow: 0 4px 20px -5px #7c7874;
  box-shadow: 0 4px 20px -5px #7c7874;
  top: -7px; 
  opacity: 0.9;}

.press-content .publication-date{
  padding-top: 21px;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.09;
  color: #6f7680;
}

.press-content .article-title{
  font-size: 20px;
  font-weight: 600;
  line-height: 1.64;
  color: #243141;
  padding-bottom: 34px;
}

.press-content a{
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #eba452;
  text-decoration: none;
  position:absolute;
  bottom:22px;
}

.press-content a:hover{
  color: #dd8929;
}

/* About */
.about-mission .mission-header{
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #eba452;
}

.about-para h2{
  font-family: Inter;
  font-size: 46px;
  font-weight: bold;
  line-height: 1.29;
  text-align: left;
  color: #243141;
  padding-bottom: 16px;
  max-width: 672px;
}

.about-para p{
  font-size: 18px;
  font-weight: normal;
  line-height: 1.78;
  text-align: left;
  color: #6f7680;
  max-width: 672px;
}
.mission-container{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.headshot-container{
  background-image: url(../img/AboutPage/headshot-group-l.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  display: block;
  max-width:533px;
  max-height:494px;
  width: 100%;
  height: auto;
  margin-left: 50px;
  float: right;
  flex: 1;
}

.about-mission{
  margin-top: 96px;
  flex: 1;
}

/* .about-team, */
.about-advisor{
  margin-top: 96px;
}



.jumbotron-solution{
  /* margin-top: 180px; */
  margin-bottom: 0px;
  padding: 96px 0px 96px 0px;
  background: linear-gradient(90.74deg, rgba(247, 238, 231, 0.8) -20.09%, rgba(247, 238, 231, 0) 118.5%);
 }

 .solution-container {
   display: flex;
   padding: 0px 60px 0px 60px;
 }

 .solution-area {
   flex: 1;
 }

 .problem-area{
   padding-right: 170px;
   flex: 1;
 }

 .solution-container h4{
  font-family: Inter;
  font-style: normal;
  font-weight: bold;
  font-size: 28px;
  line-height: 129%;
  padding-bottom: 44px;
  color: #243141;
 }

 .problem-box .title,
 .solution-box .title{
  font-family: Inter;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 129%;
  color: #243141;
 }

 .problem-box .sub-text,
 .solution-box .sub-text{
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 147%;
  color: #363f4a;
  padding-bottom: 26px;
 }

 .solution-box a{
  color: #eba452;
  text-decoration: none;
  font-size: 18px;
 }

 .solution-box a:hover{
  color: #dd8929;
 }

 /* Team */

 .team-container{
   padding: 96px 60px 167px 60px;
 }
 
 .team-flex{
   display: flex;
   justify-content: space-between;

 }
  
 .avatar > img {
   border-radius: 15px;
   width: 278px;
   height: 336px;
   object-fit: cover;
 }

 .mid-teamCol{
   margin-left: 10px;
   margin-right: 10px;
 }
 
 .teamCol,
 .advisorCol{
   flex: 1;
   padding-top: 70px;
   border-radius: 10px; 
   max-width: 300px;
 }
  
 .member-name h3{
  padding-top: 38px;
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  color: #243141;
 }
  
 .member-org{
   color:#2e2c2c;
 }
 
 .member-info{
   color: #2e2c2c;
   margin-top: 16px;
 }
 
.teamContainer p,
.advisorContainer p{
  margin: 0;
  margin-top: -5px;
  font-size: 14px;
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  color: #243141;
}
 
 .social-listing{
   display: flex;
   list-style: none;
   margin-top: 5px;
   font-size: 13px;
 }
 
 .social-listing > li {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 26px;
   height: 26px;
   background: #000000;
   border-radius: 5px;
   margin: 15px 15px 0px 0px;
 }

 
 .social-listing a{
   color:#FFFFFF;
 }
 
 .social-listing a:hover{
   color: #e7e7e7;
 }


 /* Contact form */

 .form-control{
  color: #243141 !important;
}

input:-webkit-autofill {
  /* -webkit-box-shadow:0 0 0 50px white inset;  */
  -webkit-text-fill-color: #243141 !important;
}

 .contact-section{
   width: 80%;
   margin: auto;
   max-width: 960px;
 }

 .contact-section label{
   color: #5f6875 !important;
 }

 .contact-section input,
 .contact-section textarea{
  border-radius: 0.25rem !important;
  border: 1px solid rgb(236, 237, 243);
 }

 .contact-section input[type="submit"] {
  position:relative;
  cursor:pointer;
  background: #a9a9a9;
  color: #fff;
  border: none;
  max-width: 150px;
  padding: 12px;
  margin-top: 20px;
  float: right;
  
}

.contact-section input[type="submit"]:hover {
  /* background: #8d8b8c; */
  background: #5f6875;
}

.contact-sheet{
  margin-top: 82px;
}

textarea:focus, 
input:focus{
  /* border: 1px solid green !important; */
  box-shadow: none !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
}


.form-group label{
  font-size: 16px;
  font-weight: 500;
}

.row {
  margin-right: 0px;
  margin-left: 0px;
}




/* feature page */
.product-feature-header{
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: #eba452;
}

.feature-para .features-header{
  font-size: 18px;
  font-weight: 600;
  color: #243141;
  margin-bottom: 5px;
}

.features-subtext{
  font-size: 16px;
  color: #6f7680;
}

.progressBar {
  background: #e7e9f5;
  border-radius: 1px;
  height: 2px;
  width: 100%;
  margin-top: 16px;
}

.show-more a{
  color: #eba452;
  text-decoration: none;
}

/* insights page */

.genderbias-intro h3, .genderbias-container h4,
.racialbias-container h3, .racialbias-container h4, 
.racialbias-container h5, .racialbias-container a{
  color: #243141;
}
.genderbias-container p, .racialbias-container p{
  color: #6f7680;
}

.btn-report:hover,
#btn-report-download:hover{
  background-color: #dd8929;
}

.btn:focus{
  box-shadow: none !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

#report-download-form label{
  color: #5f6875;
}

button.close:focus{
  outline:none;
}

/* select2 */
.select2-container .select2-selection--single{
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
}

.select2-container .select2-selection--single .select2-selection__rendered{
  padding-left: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
top: 5px
}

.select2-container--default .select2-selection--single{
  border: 1px solid #ced4da;
}

.select2-container--default .select2-selection--single .select2-selection__rendered{
  line-height: 1.5;
}

.select2-container--default .select2-search--dropdown .select2-search__field{
  border: 1px solid rgb(206, 212, 218) !important;
  border: none;
  border-radius: 0.25rem;
}

.select2-search input:focus,
.select2-container--default .select2-search--dropdown .select2-search__field:focus{
  border: none !important;
}

.select2-results__option{
  padding: 6px 6px 6px 10px
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active
{
 -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.newsletter-form input:-webkit-autofill,
.newsletter-form input:-webkit-autofill:hover, 
.newsletter-form input:-webkit-autofill:focus, 
.newsletter-form input:-webkit-autofill:active{
  -webkit-box-shadow: 0 0 0 30px #f3f3f5 inset !important;
}


.content-partner .content-partnertxt a{
  color: #6f7680;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.content-partner .content-partnertxt a:hover{
  text-decoration: none;
  color: #626870;
}

/* Book a Demo */
.demo-text{
  /* margin-top: 96px; */
  flex: 0.4;
}

.demo-schedule{
  flex: 0.55;
}

.book-demo-container{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.book-demo-container iframe{
  margin-left: 5% !important;
  margin-top: 0%;
}

.book-demo-container .demo-text .card-block .list-group li:before,
.pricing-card-container .monthly-pricing-card .card-block .list-group li:before{
  background-color: #eba452;
}

.calendly-inline-widget{
  height: 700px;
  min-width: 500px;
  overflow: hidden;
}

/* testimonial */

.container-testimonials {
  color: #243141;
  display: grid;
  justify-content: center;
  align-items: center;
  padding-bottom: 60px;
}
/* .container-testimonials img {
  max-width: 100%;
  vertical-align: bottom;
} */

.fa-quote-left{
color: #eba452;
font-family:'Times New Roman', Times, serif;
}
.testimonial {
  background-color: #fafafb;
  border-radius: 10px;
  padding: 35px 25px 25px;
  flex-grow: 1;
  flex-basis: 280px;
  max-width: 360px;
  position: relative;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}

.testimonial__text {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.77;
  margin-bottom: 1.5625rem;
  font-family: inter;
}
.testimonial__job {
  font-weight: normal;
  font-size: 14px;
  line-height: 1.77;
  letter-spacing: 0.5px;
  font-family: inter;
}
.testimonial__name {
  font-weight: bold;
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  font-family: inter;
}
/* .testimonial__img {
  display: inline-block;
  width: 30px;
  margin-right: 10px;
}
.testimonial__img img {
  vertical-align: bottom;
  border-radius: 50%;
} */
.testimonial__info {
  display: inline-block;
}

.testimonial .fa-quote-left{
  margin-bottom: 7%;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}


.testimonial-wrapper{
  display: flex;
  flex-wrap: wrap;
  gap: 25px 40px;
  justify-content: center;
  /* padding: 45px 45px 90px; */
}

/* @media (min-width: 78.125em) {
  .container-testimonials {
    padding: 0;
    max-width: 1160px;
  }
} */




@media only screen and (max-width: 576px){

  /* xs - partner */
  .content-partner .partner-logo{
    margin-bottom: 25px;
    text-align: center;
  }
  
  .content-partner .content-partnertxt{
    text-align: center;
  }
  
  }

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

  /* xs - homepage */
  .headline-wrapper{
    display: block;
    padding: 86px 27px 96px 27px;
  }

 
  .headline-text h2{
    font-size: 32px;
    text-align: center;
  }

  .headline-text p{
    font-size: 18px;
    padding-right: 40px;
    text-align: center;
  }

  .tool-cover{
    margin: 0;
    padding: 60px 0px 0px 0px;
  }

  .cta-btn {
    /* display: flex;
    flex-direction: column; */
    align-items: flex-end;
    padding-top: 30px;
    text-align: center;
  }
 
    .cta-btn a{
    padding: 15.75px 22.5px;
    font-size: 14px;
   }

  .btn-demo{
    margin-top: 20px;
  }

  .tool-cover img{
    display: block;
    max-width: 532px;
    /* max-width:1654px;
    max-height:1071px; */
    width: 100%;
    height: auto;
  }

  .headline-value{
    padding: 0px 27px 96px 27px;
    flex-direction: column;
    align-items: center;
  }

  .value-container{
    font-size: 16px;
    }

/* xs - stakes */
.stakes-wrapper h2{
  margin:auto;
  font-family: Inter;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.29;
  color: #243141;
  padding-bottom: 30px;
  word-break:normal;
}


.stakes-container{
  display: flex;
  flex-direction: column;
}

.jumbotron-header h2, .jumbotron-header h3, .jumbotron-header p {
  text-align: center
}

.stakes-left-col {
  max-width: 100%;
}

.stakes-wrapper .jumbotron-header p,
.stakes-wrapper .jumbotron-header p{
  /* max-width: 720px; */
  font-size: 16px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}


.stakes-cta-btn{
  text-align: center;
}

.stakes-grid{
  flex-direction: column;
  gap:0rem;
}

.stakes-widget-container{
  max-width: 452px;
}

  /* xs - benefit */
  
  .jumbotron-stakes{
    /* background: linear-gradient(176.45deg, rgba(247, 238, 231, 0.8) 3.26%, rgba(247, 238, 231, 0) 97.08%);; */
   }

  .stakes-wrapper,
  .benefits-container{
    padding: 96px 27px;
    margin-bottom: 0px;
  }

  .benefits-container .jumbotron-header p{
    margin-bottom: 10px;
  }

  .benefits-container h2{
    margin:auto;
    font-family: Inter;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.29;
    text-align: center;
    color: #243141;
    padding-bottom: 30px;
    word-break:normal;
    max-width: 455px;
  }

  .benefits-container p{
    max-width: 370px;
    margin: 0px;
    margin-left: auto;
    margin-right: auto;
  }

  .box-area{
    margin: 0 0px;
    gap: 0rem;
  }
  
   .benefits-box{
    width: 290px;
    height: 311px;
    margin: 28px 0px 0px 0;
    padding: 20px 29px;
  }
  
   .benefits-box .title{
    font-size: 20px;
    font-weight: 500;
   }
   
   .benefits-box .sub-text{
    font-size: 14px;
   }  

   /* xs - product features */

   .features-header{
    text-align: center;
  }
   .jumbotron-features{
     padding: 86px 27px 36px 27px;
     margin-bottom: 0px;
     /* overflow: hidden; */
     margin-left: auto;
     margin-right: auto;
   }

   .featurespage-container{
    padding: 86px 27px 0px 27px;
    margin-bottom: 0px;
    /* overflow: hidden; */
    margin-left: auto;
    margin-right: auto;
  }

  .jumbotron-features h2,
  .featurespage-container h2{
    margin:auto;
    font-family: Inter;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.29;
    text-align: center;
    color: #000000;
    padding-bottom: 30px;
    word-break:normal;
    max-width: 460px;
  }

  .jumbotron-features .section-title,
  .featurespage-container .section-title{
    font-size: 14px;
  }

  .features-wrapper{
    display: flex;
    flex-direction: column;
    padding: 0px;
  }

  .features-wrapper .text-left{
    padding-left: 0px;
    flex: 1;
    max-width: 485px;
    margin: auto;
  }

  .features-column .title{
    font-size: 16px;
    text-align: center;
  }

  .features-column h3{
    font-size: 26px;
    text-align: center;
  }

  .features-column li{
    font-size: 14px;
  }

  .features-column p{
    font-size: 16px;
    text-align: center;
    margin-top: 16px;
  }

  .show-more{
    margin-top: 16px;
    margin-bottom: 16px;
    justify-content: center;
  }
  .link-title{
    font-size: 16px !important;
  }

  .features-second-box{
    flex-direction: column-reverse;
    align-items: center;
  }

  .features-wrapper .text-right{
    padding-right: 0px;
    padding-top: 0px;
    flex: 1;
    max-width: 485px;
    margin: auto;
  }

  .features-first-box{
    height: 100%;
    align-items: self-end;
  }

  

  .features-first-box .img-right img{
    /* max-height: 340px; */
    margin-top: 25px;
    margin-bottom: 60px;
    width: 100%;
  }

  .features-second-box img,
  .features-third-box img{
    /* max-height: 420px; */
    margin-bottom: 60px;
    width: 100%;
  }


  .features-third-box{
    margin-top: 0px;
    align-items: center;
  }

  .feature-wrapper .img-right,
  .feature-wrapper .img-left{
    flex: 1;
}


 /* xs - in the news */

.news-container{
  padding: 0px 27px;
}

.news-container h2{
   width: 100%;
   margin:auto;
   font-size: 32px;
   padding-bottom: 30px;
}

.news-container .brand-logos li {
  padding: 18px 28px 0px;
}

.carousel-item h4{
  font-size: 16px;
  /* color: rgba(36, 31, 71, 0.8); */
  color: #6f7680;
}

#carouselContent .carousel-control-prev,
#carouselContent .carousel-control-next{
  margin-top: 83px;
  height: 25px;
  width: 25px;
} 

.carousel-control-prev, 
.carousel-control-next{
  font-size: 12px;
}

.carousel-inner{
  margin-top: 0%;
  max-width: 90%;  
  margin: auto;
}

#carouselContent .carousel-indicators li img {
  height: 40px;
}

.itk-news{
  height: 26px !important;
}

/* xs - supported-by */

.supported-container {
  padding-top: 96px;
}

.brand-logos-wrapper .brand-logos img {
  max-height: 26px !important;
}


/* xs - testimonial */

.container-testimonials {
  padding-top: 96px;
}

.container-testimonials h2{
  padding-bottom: 40px;
  font-size: 32px;
}

.container-testimonials{
  padding-top: 96px;
  padding-bottom: 0px;
}


/* xs-cta-banner */
.banner-bg{
  background-image: url(../img/LandingPage/cta-banner-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 310px;
  width: 100%;
  background-position: top center;
  overflow: hidden;
  border-radius: 8px;
}

.left-shape{
  position:absolute;
  background-repeat: no-repeat;
  left: -150px;
  bottom:-50px;
}

.right-shape{
  position:absolute;
  right: 0px;
  top: -50px;
}
.banner-container{
  padding: 86px 27px 86px 27px;
}

.banner-container .text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner-container .text p{
  font-family: Inter;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.28;
  letter-spacing: normal;
  color: #1b232e;
  text-align: center;
}

.banner-container .text h3{
  font-family: Inter;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.38;
  letter-spacing: normal;
  color: #1b232e;
  word-wrap: break-word;
  text-align: center;
  width: 280px;
  margin:auto;
}

.banner-container .cta-banner-btn{
  padding: 10px 8px;
  max-width: 125px;
  align-items: center;
  border-radius: 10px;
  /* background-color: #d69256; */
  
  margin: 0 auto;
  margin-top: 22px;
  text-align: center;
  font-size: 14px;
}

.banner-container .cta-banner-btn a{
  color: white;
  text-decoration: none;
}


/* xs-footer */

footer{
  padding: 0px 27px 31px 27px !important;
}

.footer-container{
  justify-self: center;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.column-group{
  display: inline-flex;
  justify-content: space-around;
  text-align: left;
}

.footer-container .column-1{
  padding-right: 0%;
  text-align: center;
  max-width: 340px;
  margin: auto;
}

.footer-container h3{
  text-align: center;
}

.footer-container h4{
  padding-bottom: 3px;
}

.footer-container .column-4{
  padding-top: 40px;
}

.footer-container .column-4 p,
.footer-container .column-4 h4{
  text-align: center;
  margin: auto;
}

.footer-container a,
.footer-container p{
  margin-bottom: 5px;
}

.social-media{
  margin:20px 0 40px 0;
}

.footer-bottom p,
.footer-bottom a{
  text-align: left;
}

.newsletter-form{
  padding-top: 30px;
  justify-content: center;
}

.newsletter-form .form-group{
  margin-bottom: 8px;
}


.txtb_name{
  width: 100%;
  margin-right: 0px;
  margin-top: 8px;
}

.txtb{
  margin-right: 0px;
  width: 100%;
}
.btn-footer{
  width: 100%;
  margin-top: 8px;
}

.footer-bottom{
  display: flex;
  margin-top: 60px;
  justify-content: space-around
}

.footer-bottom p, 
.footer-bottom a{
padding-right: 0px;
font-size: 14px;
text-align: center;
}

/* xs - howitworks */

/* xs - timeline */
#conference-timeline .conference-center-line {
  top:11.5% !important;
  margin-left: 0px ;
  left: 20px ;
}

.timeline-article .meta-step {
  margin-left: 0px ;
  left: 0px ;
}

.timeline-article .content-left,
.timeline-article .content-right {
    padding: 10px 0px ;
    min-height: 65px;
  }

.timeline-article .content-left-container, 
.timeline-article .content-right-container {
  margin-left: 80px ;
}


.timeline-article h4{
  font-size: 18px;
}

.timeline-article p{
  font-size: 16px;
}

.howitworks-container h2,
.pricing-container h2{
  font-size: 36px;
}

/* xs-faq */
.faq-container h2{
  font-size: 36px;
}

.pricing-container h4,
.faq-container h4{
  font-size: 26px;
}

.morph-dropdown-wrapper{
  z-index: 999;
}

.faq-container{
  margin: 0px 27px 0px 27px;
}

.faq-text{
  font-size: 16px;
  width: 75%;
}

.faq-container .accordion{
  width: 100%;
}

.faq-container .accordion-item h3 {
  font-size: 16px;
  /* text-align: justify; */
}

.faq-container .accordion-panel{
  font-size: 16px;
  /* text-align: justify; */
  padding: 18px 2.5rem 1.3rem 26px;
}

.faq-container .accordion-thumb {
  padding: 31px 2.5rem 31px 26px;
  /* padding: 21px 45px 21px 21px; */
}

.faq-text {
  /* width: 60%; */
  width: 245px;
}

.faq-container .accordion-thumb::after{
  margin-right: -25px;
  /* margin-top: -20px; */
  vertical-align: middle;
}

/* xs - press */
.howitworks-container, .pricing-container,
.press-container, .about-container,
.insights-container {
  padding: 86px 27px 86px 27px;
}

.press-container h2{
  width: 85%;
  max-width: 608px;
  margin: auto;
}
.press-container .press-subtext{
  width: 94%;
  padding: 23px 0px 30px 0px;
  max-width: 608px;
  margin: auto;
}

.press-container h2, .about-header h2,
.insights-header h2 ,  .product-feature-header h2{
  font-size: 36px;
}

.press-container .press-subtext, .about-container .about-subtext, .insights-container .insights-subtext{
  font-size: 18px;
}

.press-content {
  display: flex;
  flex-direction: column;
}

.press-left, .press-middle, .press-right {
  margin-right: 0px;
  margin-bottom: 20px;
}

.press-content .article-title,
.press-content a {
  font-size: 18px
} 


/* xs - contactus */
.contact-section {
  width: 90%;
}

/* xs - about */
.about-header h2,
.insights-header h2  {
  font-size: 36px;
  max-width: 810px;
}

.about-container .about-subtext, .insights-container .insights-subtext{
  padding: 23px 0px 30px 0px;
  max-width: 920px;
}

.about-para h2{
  font-size: 34px;
}

.solution-container{
  display: flex;
  flex-direction: column;
  padding: 0 27px;
}

.solution-container h4{
  font-size: 28px;
}

.solution-area h4{
  padding-top: 20px;
}

.problem-area{
  padding-right: 0px;
}

.team-flex{
  flex-direction: column;
}

.teamCol, .advisorCol {
  padding-top: 60px;
  align-self: center;
  text-align: center;
}

.team-container{
  padding: 86px 27px 86px 27px;
}

.about-team h2,
.about-team p,
.about-advisor p,
.about-advisor h2{
  text-align: center;
}

.social-listing{
  justify-content: center;
}


.mission-container{
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  height: 670px;
  align-items: flex-end;
}

.headshot-container{
  background-image: url(../img/AboutPage/headshot-group-l.png);
  background-position: right;
  display: block;
  max-width:533px;
  max-height:494px;
  width: 100%;
  height: auto;
  margin-left: 0px;
  flex: 1;
}


.about-mission{
  flex: 1;
  margin-top: 25px;
}

/* xs - terms & privacy */
.wrapper-container{
  padding: 86px 27px 96px 27px;
}
#terms-wrapper{
  padding: 54px 25px 80px 25px;
}


/* xs - insights page */

.genderbias-intro{
  margin-bottom: 80px;
  margin-top: 40px;
  line-height: 2rem;
  text-align: center;
  max-width: 688px;
  margin-left: auto;
  margin-right: auto;
}

.genderbias-intro h3,
.racialbias-container h3{
  font-weight: 700;
  font-size: 36px;
  line-height: 1.29;
  margin-bottom: 18px;
}

.genderbias-container .chart-wrapper h3{
  line-height: 1.29;
  text-align: center;
  font-size: 22px;
}

.racialbias-container h5{
  line-height: 1.59;
  text-align: center;
  max-width: 770px;
  margin-left: auto;
  margin-right: auto;
}

.genderbias-container .analysis,
.frequency-chart-left,
.racialbias-container h4,
.variance-chart-left{
  max-width: 752px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.genderbias-container p{
  line-height: 1.59;
}


.genderbias-container .analysis p{
  margin-bottom: 30px;
}

.genderbias-container h4{
  font-weight: 600;
  font-size: 28px;
  line-height: 1.29;
  margin-bottom: 20px;
}

.racialbias-container h4{
  font-weight: 600;
  font-size: 28px;
  line-height: 1.29;
  margin-bottom: 30px;
}

.chart-one img,
.chart-eight img{
  /* width: 70%; */
  max-width: 320px;
  display: block;
  margin:auto;

}

.chart-eleven img{
  max-width: 300px;
  display: block;
  margin:auto;
  margin-left: 11% !important;
}

.chart-four img{
  /* width: 30%; */
  max-height: 200px;
  
}

.chart-one .chart-subtext,
.chart-four .chart-subtext,
.chart-eight .chart-subtext{
  /* max-width: 520px; */
  display: inline-block;
  line-height: 1.6;
}

.frequency-chart-wrapper .frequency-chart-right img{
  max-width: 320px;
  display: block;
  margin:auto;
}

.variance-chart-right img{
  max-width: 360px;
  display: block;
  margin:auto;
}

.chart-wrapper{
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2rem;
  margin-bottom: 80px;
  text-align: center;

}

.stats-wrapper{
  display: flex;
  flex-direction: row;
}

.chart-wrapper span{
  font-size: 12px;
  color: #6f7680;
  font-weight: 500;
}

.frequency-chart-wrapper{
  margin-bottom: 80px;
  line-height: 1.78;

}
.variance-chart-wrapper{
  line-height: 1.59;
  margin-bottom: 80px;
}

.racialbias-intro{
  margin-bottom: 80px;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.59;
  text-align: center;
  max-width: 714px;

}

.btn-report{
  padding: 12px 22px;
  border-radius: 10px;
  background-color: #eba452;
  color: #ffffff !important;
  text-decoration: none;
  font-size: 14px;
  font-family: Inter;
  font-weight: 500;
  vertical-align:text-bottom;
} 

/* xs - report download */

.racialbias-container .modal-content{
  border: none;
}

.modal-backdrop.show {
 opacity: 0.7;
}

.racialbias-container button.close{
 position: absolute;
 right: 12px;
 top: 10px;
}

#report-download h5{
 font-size: 26px;
 margin-bottom: 8px;
 font-weight: 600;
 line-height: 1.5;
}

#report-download p{
 margin-bottom: 25px;
}

#report-download .modal-dialog{
 min-width: auto;
}

#report-download .modal-body,
#report-download .form-group label{
 font-size: 14px !important;
}

#report-download .modal-body{
 line-height: 1.79;
 padding: 40px 25px 25px 25px;
}

#report-download .form-control{
 font-size: 14px !important;
 text-align: center;
}

#report-download .form-name{
 display: flex;
 flex-direction: column;
}

#report-download .form-name .form-group{
 width: 100%;
}

#report-download .select2-container .select2-selection--single,
#report-download .select2-results__option{ 
 font-size: 14px !important;
}

.select2-container--default {
 font-size: 14px !important;
}

#btn-report-download{
 width: 100%;
 padding: 7px 21px 7px 21px;
 border-radius: 10px;
 border: none;
 background-color: #eba452;
 color: white;
 font-weight: 500;

}

#usecase1Choice2,
#usecase2Choice2{
 margin-left: 15px;
}



/* xs - feature page */

.feature-para{
  text-align: center;
}

.feature-para .features-header{
  font-size: 18px;
  font-weight: 600;
  color: black;
  margin-bottom: 5px;
}

.featurespage-container .features-wrapper{
  margin-bottom: 80px;
}

.featurespage-container .features-second-box{
  flex-direction: column;
}

.featurespage-container .features-second-box img, 
.featurespage-container .features-third-box img{
  margin-bottom: 15px;
}

.featurespage-container .features-first-box img{
  margin-bottom: 15px;
}

.featurespage-container .features-first-box{
  flex-direction: column-reverse;
}

/* xs - book a demo */
.demo-text{
  flex: 0.4;
  margin-top: 25px;
}

.demo-schedule{
  flex:0.55;
}

.book-demo-container{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* height: 670px; */
  align-items: flex-end;
}

.book-demo-container h2{
  text-align: center !important;
}

.book-demo-container iframe{
  margin-left: 0% !important;
  margin-top: 18% !important;
}

.calendly-inline-widget{
  height: 900px;
  min-width: 290px !important;
}



}




/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

/* s - homepage */

.headline-wrapper{
  display: block;
  padding: 86px 27px 96px 27px;
}

.headline-text h2{
  font-size: 42px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  
}

.headline-text p{
  font-size: 18px;
  padding-right: 40px;
  text-align: center;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.tool-cover{
  margin: 0;
  padding: 60px 0px 0px 0px;
}

.tool-cover img{
  max-width: 600px;
}

.cta-btn {
  /* display: flex;
  flex-direction: column; */
  align-items: flex-end;
  padding-top: 30px;
  text-align: center;
}

.cta-btn a{
  padding: 15.75px 22.5px;
  font-size: 14px;
 }

 .btn-demo{
  margin-top: 20px;
}

.headline-value{
  padding: 0px 27px 96px 27px;
  flex-direction: column;
  align-items: center;
}

.value-container{
  font-size: 16px;
}


/* s - stakes */


.stakes-wrapper .jumbotron-header p{
  font-size: 18px;
}

.stakes-wrapper h2{
  margin:auto;
  font-size: 38px;
  word-break:normal;
  padding-bottom: 30px;
}

.stakes-wrapper .jumbotron-header p{
  font-size: 18px;
}

.stakes-container{
  display: flex;
  flex-direction: column;
}

.jumbotron-header h2, .jumbotron-header h3, .jumbotron-header p {
  text-align: center
}

.stakes-left-col {
  max-width: 680px;
}

.stakes-wrapper .jumbotron-header p,
.stakes-wrapper .jumbotron-header p{
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.stakes-cta-btn{
  text-align: center;
}


/* s - benefit */
.jumbotron-stakes{
  /* background: linear-gradient(176.45deg, rgba(247, 238, 231, 0.8) 3.26%, rgba(247, 238, 231, 0) 97.08%);; */
}

.stakes-wrapper,
.benefits-container{
padding: 96px 27px;
margin-bottom: 0px;
}

.benefits-container h2{
margin:auto;
font-size: 40px;
padding-bottom: 30px;
word-break:normal;
max-width: 580px;

}

.benefits-container p{
  max-width: 520px;
  margin: auto;
  font-size: 18px;
}

.box-area{
  margin: 0 0px;
  gap: 1.2rem;
}
.benefits-container .jumbotron-header p {
  margin-bottom: 10px;
}

.benefits-box{
  width: 331px;
  height: 340px;
  margin: 20px 0px 0px 0;
  padding: 40px 35px;
}

/* s - product features */

.features-header{
  text-align: center;
}

.featurespage-container{
  padding: 96px 27px 0px 27px;
  margin-bottom: 0px;
  /* overflow: hidden; */
  /* max-width: 680px; */
  margin-left: auto;
  margin-right: auto;
}
.jumbotron-features{
  padding: 96px 27px 36px 27px;
  margin-bottom: 0px;
  overflow: hidden;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.jumbotron-features .section-title,
.featurespage-container .section-title{
  font-size: 16px;
}


.featurespage-container h2{
  font-size: 40px;
  padding-bottom: 30px;
  /* max-width: 572px; */
  margin: auto;
}

.jumbotron-features h2{
  font-size: 40px;
  padding-bottom: 30px;
  max-width: 572px;
  margin: auto;
}

.features-wrapper{
  display: flex;
  flex-direction: column;
  padding: 0px;
}

.features-wrapper .text-left{
  padding-left: 0px;
  flex: 1;
  max-width: 650px;
  /* max-width: 550px; */
  margin:auto;
}

.features-column .title{
  font-size: 18px;
  text-align: center;
}

.features-column h3{
  font-size: 34px;
  text-align: center;
}

.features-column p{
  font-size: 16px;
  text-align: center;
  margin-top: 22px;
}

.show-more{
  margin-top: 22px;
  margin-bottom: 16px;
 justify-content: center;
}
.link-title{
  font-size: 16px !important;
}

.features-second-box{
  flex-direction: column-reverse;
}

.features-first-box{
  height: 100%;
  /* align-items: flex-end; */
  align-items: center;
  
}

.features-first-box .img-right img{
  margin-top: 25px;
  margin-bottom: 60px;
  width: 100%;
  max-width: 555px;
}

.features-second-box img,
.features-third-box img{
  margin-bottom: 60px;
  width: 100%;
  max-width: 555px;
}

.features-second-box img,
.features-third-box img{
  max-height: 520px;
}

.features-third-box{
  margin-top: 0px;
}


.features-wrapper .text-right{
  padding-right: 0px;
  padding-top: 0px;
  flex: 1;
  max-width: 550px;
}

.features-column li{
  font-size: 14px;
}

/* s - in the news */

.news-container{
  padding: 0px 27px;
}

.news-container h2{
   width: 100%;
   margin:auto;
   font-size: 40px;
   padding-bottom: 30px;
}

.news-container .brand-logos li {
  padding: 28px 28px 0px;
}

.carousel-item h4{
  font-size: 16px;
  color: #6f7680;
}

#carouselContent .carousel-control-prev,
#carouselContent .carousel-control-next{
  margin-top: 83px;
  height: 35px;
  width: 35px;
} 

.carousel-control-prev, 
.carousel-control-next{
  font-size: 18px;
}

.carousel-inner{
  margin-top: 0%;
  max-width: 90%;  
  margin: auto;
}

#carouselContent .carousel-indicators li img {
  height: 55px;
}

.itk-news{
  height: 36px !important;
}

/* s - supported-by */

.supported-container {
  padding-top: 96px;
}

.brand-logos-wrapper .brand-logos img {
  max-height: 36px !important;
}

/* s - testimonial */

.container-testimonials{
  padding-top: 96px;
  padding-bottom: 0px;
}

.container-testimonials h2{
  padding-bottom: 40px;
}

/* s - footer */
.footer-container{
  justify-self: center;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.column-group{
  display: inline-flex;
  justify-content: space-around;
  text-align: left;
}

.footer-container .column-1{
  padding-right: 0%;
  text-align: center;
  max-width: 340px;
  margin: auto;
}

.footer-container h3{
  text-align: center;
}

.footer-container h4{
  padding-bottom: 3px;
}

.footer-container .column-4{
  padding-top: 40px;
}

.footer-container .column-4 p,
.footer-container .column-4 h4{
  text-align: center;
  margin: auto;
}

.footer-container a,
.footer-container p{
  margin-bottom: 5px;
}

.social-media{
  margin:20px 0 40px 0;
}

.footer-bottom p,
.footer-bottom a{
  text-align: left;
}

.newsletter-form{
  padding-top: 30px;
  justify-content: center;
}

.newsletter-form .form-group{
  margin-bottom: 8px;
}


.txtb_name{
  width: 100%;
  margin-right: 0px;
  margin-top: 8px;
}

.txtb{
  margin-right: 0px;
  width: 100%;
}
.btn-footer{
  width: 100%;
  margin-top: 8px;
}

.footer-bottom{
  display: flex;
  margin-top: 60px;
  justify-content: space-around
}

.footer-bottom p, 
.footer-bottom a{
padding-right: 0px;
font-size: 14px;
text-align: center;
}

.newsletter-form{
  padding-top: 30px;
  justify-content: center;
}


/* s - howitworks */

.morph-dropdown-wrapper{
  z-index: 999;
}

.howitworks-container h2,
.pricing-container h2{
  font-size: 42px;
} 

/* s - timeline */
.timeline-article h4{
  font-size: 18px;
}

.timeline-article p{
  font-size: 16px;
}

/* s - faq */

.faq-container h2{
  font-size: 42px;
}

.faq-container .accordion{
  /* width: 85%; */
  width: 100%;
}

.faq-container{
  margin: 0px 27px 0px 27px;
}

.faq-text {
  width: 245px;
} 

.faq-container .accordion-item h3 {
  font-size: 16px;
  /* text-align: justify; */
}

.faq-container .accordion-panel{
  font-size: 16px;
  /* text-align: justify; */
  padding: 18px 2.5rem 1.3rem 26px;
}

.faq-container .accordion-thumb {
  padding: 31px 2.5rem 31px 26px;
}

.faq-container .accordion-thumb::after {
  margin-right: -25px;
}

/* s - press */
.howitworks-container, .pricing-container{
  padding: 86px 27px 86px 27px;
}

.press-container .press-subtext, .about-container .about-subtext, .insights-container .insights-subtext{
  width: 94%;
  padding: 23px 0px 30px 0px;
}

.press-container h2{
  font-size: 42px;
  max-width: 608px;
  margin: auto;
  width: 85%;
}

.press-container .press-subtext{
  font-size: 18px;
  max-width: 608px;
  margin: auto;
}

.press-content {
  display: flex;
  flex-direction: column;
}

.press-left, .press-middle, .press-right {
  margin-right: 0px;
  margin-bottom: 20px;
}

.press-content .article-title,
.press-content a {
  font-size: 18px
}

.press-container, .about-container,
.insights-container {
  padding: 86px 27px 86px 27px;
}

/* s - about */
.about-header h2,
.insights-header h2  {
  /* width: 85%; */
  font-size: 42px;
  max-width: 810px;
}

.about-container .about-subtext, .insights-container .insights-subtext{
  font-size: 18px;
  max-width: 920px;
}

.about-para h2{
  font-size: 40px;
}

.problem-area{
  padding-right: 0px;
}

.team-flex{
  flex-direction: column;
}

.about-team h2,
.about-team p,
.about-advisor p,
.about-advisor h2{
  text-align: center;
}

.teamCol, .advisorCol {
  padding-top: 60px;
  align-self: center;
  text-align: center;
}

.social-listing{
  justify-content: center;
}

.solution-container{
  padding: 0 27px;
  display: flex;
  flex-direction: column;
}

.team-container{
  padding: 86px 27px 86px 27px;
}

.solution-area h4{
  padding-top: 20px;
}


.mission-container{
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  height: 670px;
   align-items: flex-end;
}

.headshot-container{
  background-image: url(../img/AboutPage/headshot-group-l.png);
  background-position: right;
  display: block;
  max-width:533px;
  max-height:494px;
  width: 100%;
  height: auto;
  margin-left: 0px;
  flex: 1;
}


.about-mission{
  flex: 1;
  margin-top: 25px;
}

/* s - terms & privacy */

.wrapper-container{
  padding: 86px 27px 86px 27px;
}

#terms-wrapper{
  padding: 54px 25px 80px 25px;
}

/* s-cta */

.banner-container{
  padding: 86px 27px 86px 27px;
}

.banner-bg{
  background-image: url(../img/LandingPage/cta-banner-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 376px;
  width: 100%;
  background-position: top center;
  overflow: hidden;
  border-radius: 8px;
}

.left-shape{
  position:absolute;
  background-repeat: no-repeat;
  left: -70px;
  bottom:-28px;
}

.right-shape{
  position:absolute;
  right: 0px;
  top: -10px;
}

.banner-container .text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner-container .text p{
  font-family: Inter;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.28;
  letter-spacing: normal;
  color: #1b232e;
  text-align: center;
}

.banner-container .text h3{
  font-family: Inter;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.38;
  letter-spacing: normal;
  color: #1b232e;
  word-wrap: break-word;
  text-align: center;
  width: 420px;
  margin:auto;
}

.banner-container .cta-banner-btn{
  padding: 10px 8px;
  max-width: 125px;
  align-items: center;
  border-radius: 10px;
  background-color: #eba452;
  margin: 0 auto;
  margin-top: 22px;
  text-align: center;
  font-size: 14px;
}

.banner-container .cta-banner-btn a{
  color: white;
  text-decoration: none;
}

/* s - insights page */


.genderbias-intro{
  margin-bottom: 100px;
  margin-top: 40px;
  line-height: 2rem;
  text-align: center;
  max-width: 688px;
  margin-left: auto;
  margin-right: auto;
}

.genderbias-intro h3,
.racialbias-container h3{
  font-weight: 700;
  font-size: 42px;
  line-height: 3.5rem;
  margin-bottom: 18px;
}

.genderbias-container .chart-wrapper h3{
  line-height: 2.5rem;
  text-align: center;
  font-size: 32px;
}

.racialbias-container h5{
  line-height: 2.5rem;
  text-align: center;
  max-width: 770px;
  margin-left: auto;
  margin-right: auto;
}

.genderbias-container .analysis,
.frequency-chart-left,
.racialbias-container h4,
.variance-chart-left{
  max-width: 752px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.genderbias-container p{
  line-height: 2rem;
}


.genderbias-container .analysis p{
  margin-bottom: 30px;
}

.genderbias-container h4{
  font-weight: 600;
  font-size: 32px;
  line-height: 2.8rem;
  margin-bottom: 20px;
}

.racialbias-container h4{
  font-weight: 600;
  font-size: 32px;
  line-height: 2.8rem;
  margin-bottom: 30px;
}

.chart-one img,
.chart-eight img,
.chart-eleven img{
  /* width: 70%; */
  max-width: 480px;
  display: block;
  margin:auto;

}

.chart-four img{
  /* width: 30%; */
  max-height: 280px;
  
}

.chart-one .chart-subtext,
.chart-four .chart-subtext,
.chart-eight .chart-subtext{
  /* max-width: 520px; */
  display: inline-block;
  line-height: 1.6;
}

.frequency-chart-wrapper .frequency-chart-right img{
  max-width: 540px;
  display: block;
  margin:auto;
}

.variance-chart-right img{
  max-width: 500px;
  display: block;
  margin:auto;
}

.chart-wrapper{
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2rem;
  margin-bottom: 100px;
  text-align: center;

}

.stats-wrapper{
  display: flex;
  flex-direction: row;
}

.chart-wrapper span{
  font-size: 12px;
  color: #6f7680;
  font-weight: 500;
}

.frequency-chart-wrapper{
  margin-bottom: 100px;
  line-height: 1.78;

}
.variance-chart-wrapper{
  line-height: 1.78;
  margin-bottom: 100px;
}

.racialbias-intro{
  margin-bottom: 100px;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  line-height: 2rem;
  text-align: center;
  max-width: 714px;

}

.btn-report{
  padding: 12px 22px;
  border-radius: 10px;
  background-color: #eba452;
  color: #ffffff !important;
  text-decoration: none;
  font-size: 14px;
  font-family: Inter;
  font-weight: 500;
  vertical-align:text-bottom;
} 

/* s - report download */

.racialbias-container .modal-content{
  border: none;
}

.modal-backdrop.show {
 opacity: 0.7;
}

.racialbias-container button.close{
 position: absolute;
 right: 12px;
 top: 10px;
}

#report-download h5{
 font-size: 26px;
 margin-bottom: 8px;
 font-weight: 600;
 line-height: 1.5;
}

#report-download p{
 margin-bottom: 25px;
}

#report-download .modal-dialog{
 min-width: auto;
}

#report-download .modal-body,
#report-download .form-group label{
 font-size: 14px !important;
}

#report-download .modal-body{
 line-height: 1.79;
 padding: 40px 25px 25px 25px;
}

#report-download .form-control{
 font-size: 14px !important;
 text-align: center;
}



#report-download .form-name{
 display: flex;
 flex-direction: column;
}

#report-download .form-name .form-group{
 width: 100%;
}

#report-download .select2-container .select2-selection--single,
#report-download .select2-results__option{ 
 font-size: 14px !important;
}

.select2-container--default {
 font-size: 14px !important;
}

#btn-report-download{
 width: 100%;
 padding: 7px 21px 7px 21px;
 border-radius: 10px;
 border: none;
 background-color: #eba452;
 color: white;
 font-weight: 500;

}

#usecase1Choice2,
#usecase2Choice2{
 margin-left: 15px;
}

/* s - feature page */
.feature-para{
  text-align: center;
}

.feature-para .features-header{
  font-size: 18px;
  font-weight: 600;
  color: black;
  margin-bottom: 5px;
}

.featurespage-container .features-wrapper{
  margin-bottom: 80px;
}

.featurespage-container .features-second-box{
  flex-direction: column;
}

.featurespage-container .features-second-box img, 
.featurespage-container .features-third-box img{
  margin-bottom: 15px;
}

.featurespage-container .features-first-box img{
  margin-bottom: 15px;
}

.featurespage-container .features-first-box{
  flex-direction: column-reverse;
}

/* s - book a demo */
.demo-text{
  flex: 0.4;
  margin-top: 25px;
}

.demo-schedule{
  flex: 0.55;
}

.book-demo-container h2{
  text-align: center !important;
}

.book-demo-container{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* height: 670px; */
   align-items: flex-end;
}

.calendly-inline-widget{
  height: 900px;
  min-width: 620px !important;
}

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  
/* m - homepage */
.headline-wrapper{
  padding: 86px 40px 96px 40px;
  align-items: center;
}

.headline-text h2 {
  font-size: 42px;
  max-width: 650px;
}

.headline-text p {
  font-size: 18px;
  padding-right: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.headline-value{
  padding: 0px 60px 96px 60px;
  flex-direction: row;
}

.value-container{
  font-size: 16px;
  }

  .tool-cover img{
    max-width: 600px;
}

/* m - stakes */
.stakes-wrapper h2{
  margin:auto;
  font-size: 38px;
  word-break:normal;
  padding-bottom: 30px;
}

.stakes-wrapper .jumbotron-header p{
  font-size: 18px;
}

.stakes-container{
  display: flex;
  flex-direction: column;
}

.jumbotron-header h2, .jumbotron-header h3, .jumbotron-header p {
  text-align: center
}

.stakes-left-col,
.stakes-right-col {
  max-width: 680px;
}

.stakes-wrapper .jumbotron-header p,
.stakes-wrapper .jumbotron-header p{
  /* max-width: 720px; */
  margin-left: auto;
  margin-right: auto;
}

.stakes-cta-btn{
  text-align: center;
}

/* m- benefit */

.jumbotron-stakes{
  /* background: linear-gradient(175.66deg, rgba(247, 238, 231, 0.8) 2.8%, rgba(247, 238, 231, 0) 96.87%); */
 }

.stakes-wrapper,
.benefits-container{
  padding: 96px 40px;
  margin-bottom: 0px;
}

.benefits-container h2 {
  margin:auto;
  font-size: 44px;
  word-break:normal;
  padding-bottom: 30px;
  max-width: 680px;
}

.benefits-container p{
  max-width: 580px;
  margin: auto;
  font-size: 18px;
}

.featurespage-container h2{
   margin:auto;
   font-size: 44px;
   word-break:normal;
   padding-bottom: 50px;
   /* max-width: 692px; */
}

.jumbotron-features h2{
  margin:auto;
  font-size: 44px;
  word-break:normal;
  padding-bottom: 50px;
  max-width: 692px;
}


.benefits-box{
  /* width: 331px;
  height: 350px; */
  /* padding: 26px 35px; */
  width: 338px;
  height: 365px;
  padding: 50px 35px 30px 35px;
  justify-content: space-around;
 }

/* m-product features */

.jumbotron-features,
.featurespage-container{
  padding: 96px 40px 36px 40px;
  margin-bottom: 0px;
}

.features-header{
  text-align: center;
}

.features-column h3{
  font-size: 38px;
  text-align: center;
 }

.features-column p {
  font-size: 18px;
  text-align: center;
}

.show-more{
  margin-top: 22px;
  margin-bottom: 16px;
 justify-content: center;
}

.link-title{
  font-size: 18px !important;
}

.features-column .title {
  text-align: center;
}

.features-second-box,
.features-third-box{
height: 100% ;
}

.section-header{}

.features-column li{
  font-size: 16px;
}


/* .features-first-box{
  align-items: flex-end;
} */

/* .features-column {
  flex:1;
  justify-content: space-between;
} */

/* .features-wrapper{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
 
} */

/* .features-column p{
  font-size: 18px;
  text-align: left;
} */

/* .features-first-box .img-right {
  max-width: 100%;
}

.features-first-box .img-right img{
  width: 100%;
  max-width: 600px;
} */

/* .features-second-box .img-left{
  width: 100%;
}

.features-second-box img{
  margin-left: -25px;
} */

/* .features-second-box img,
.features-third-box img{
  width: 100%;
  max-height: none;
}  */


 /* .features-first-box{
  margin-bottom: 80px;
} 

.features-second-box{
  margin-bottom: 60px
}

.features-wrapper .text-left {
  margin:0;
} */

/* m - in the news */

.news-container{
  padding: 0px 40px 0px 40px;
}

.news-container h2,
.container-testimonials h2{
   font-size: 44px;
}

 .carousel-item h4{
  font-size: 18px;
}

#carouselContent .carousel-control-prev,
#carouselContent .carousel-control-next{
  margin-top: 66px;
  height: 40px;
  width: 40px;
} 

.carousel-inner{
  margin-top: 0%;
  max-width: 78%;  
}

.carousel-control-prev, 
.carousel-control-next{
  font-size: 17px;
}

#carouselContent .carousel-indicators li img {
  height: 65px;
} 

.itk-news{
  height: 46px !important;
}

/* m - supported-by */

.supported-container {
  padding-top: 96px;
}

.brand-logos-wrapper .brand-logos img {
  max-height: 45px !important;
}

/* m - testimonial */

.container-testimonials{
  padding-top: 96px;
}

/* m - cta-banner */

.banner-bg{
  background-image: url(../img/LandingPage/cta-banner-bg.png);
  height: 376px;
  width: 100%;
}

.left-shape{
  left: -5px;
  bottom:-10px;
}

.right-shape{
  right: 0px;
  top: 0px;
}

.banner-container{
  padding: 80px 40px 167px 40px;
}

.banner-container .text p{
  font-size: 18px;
}

.banner-container .text h3{
  font-size: 32px;
  width: 680px;
}

.banner-container .cta-banner-btn{
  padding: 15px 25px;
  max-width: 145px;
  align-items: center;
  border-radius: 10px;
  background-color: #eba452;
  margin: 0 auto;
  margin-top: 22px;
  text-align: center;
}

.banner-container .cta-banner-btn a{
  color: white;
  text-decoration: none;
  font-size: 16px;
}


/* m-footer */

footer{
  padding: 0px 40px 31px 40px;
}

.footer-container{
  flex-wrap: nowrap;
  display: flex;
  flex-direction: row;
  justify-content:  space-between;
}

.footer-container .column-1{
  padding-right: 3%;
  max-width: 245px;
  text-align: left;
  margin: 0;
}

.footer-container h3 {
  text-align: left;
}

.footer-container .column-4{
  padding-top: 0px;
  max-width: 314px;
}

.footer-container h4{
  padding-bottom: 19px;
}

.footer-container .column-4 p, .footer-container .column-4 h4 {
  text-align: left;
}

.social-media{
  margin: 20px 0;
}

.txtb_name{
  width: 100%;
  margin-right: 0px;
  margin-top: 8px;
}

.txtb{
  margin-right: 0px;
  width: 100%;
}

.newsletter-form{
  padding-top: 19px;
}

.newsletter-form .form-group{
  margin-bottom: 8px;
}

.btn-footer{
  width: 100%;
  margin-top: 8px;
}

.column-group{
  justify-content: space-around;
  padding-right: 3%;
}

.column-2{
  padding-right: 15px;
}

.footer-bottom {
  margin-top: 100px;
  justify-content:left;
}

.footer-bottom p, .footer-bottom a {
  padding-right: 9px;
  font-size: 16px;
}

/* m - howitworks */
.howitworks-container h2,
.pricing-container h2 {
  font-size: 48px;
}

.morph-dropdown-wrapper{
  z-index: 999;
}

/* m - timeline */
.timeline-article h4{
  font-size: 20px;
}

.timeline-article p{
  font-size: 18px;
}

/* m - faq */
.faq-container{
  margin: 0px 40px 0px 40px;
}

.faq-container h2{
  font-size: 48px;
}

.faq-container .accordion{
  width: 85%;
}

.faq-text {
  /* width: 34%; */
  width: 590px;
  font-size: 18px;
} 

.howitworks-container,
.pricing-container{
  padding: 86px 40px 96px 40px;
}

.faq-container .accordion-panel,
.faq-container .accordion-item h3 {
  font-size: 18px;
}

.faq-container .accordion-thumb::after{
  /* margin-right: -2%; */
}


/* m - press */

.press-container, .about-container,
.insights-container{
  padding: 86px 40px 167px 40px;
}

.press-container h2{
  width: 80%;
  max-width: 608px;
  margin: auto;
  font-size: 48px;
}
.press-container .press-subtext{
  width: 89%;
  max-width: 608px;
  margin: auto;
}

/* m - about */
.about-header h2,
.insights-header h2  {
  /* width: 86%; */
  font-size: 48px;
  max-width: 810px;
}

.about-container .about-subtext, .insights-container .insights-subtext{
  /* width: 82%; */
  max-width: 920px;
  font-size: 20px;
}

.about-para h2{
  font-size: 46px;
}

.solution-container{
  padding: 0px 40px;
}

.problem-area{
  padding-right: 50px;
}
.avatar > img {
  width: 100%;
  height: auto;
}

.member-name h3{
  padding-top: 20px;
}

.team-flex{
  flex-direction: row;
}


.team-container {
  padding: 96px 40px 167px 40px
}

.teamCol, .advisorCol {
  padding-top: 40px;
}

.social-listing {
  margin-top: 0px
}

.about-team h2,
.about-team p,
.about-advisor p,
.about-advisor h2{
  text-align: left;
}

.teamCol, .advisorCol {
  /* padding-top: 60px; */
  align-self:baseline;
  text-align: left;
}

.social-listing{
  justify-content:left;
}

.mission-container{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-height: 470px;
  align-items:initial;
}

.headshot-container{
  background-image: url(../img/AboutPage/headshot-group-l.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  display: block;
  max-width:533px;
  max-height:494px;
  width: 100%;
  height: auto;
  margin-left: 50px;
  float: right;
  flex: 1;
}


.about-mission{
  flex: 1;
}

/* m - terms & privacy */
.wrapper-container{
  padding: 86px 40px 167px 40px;
}

/* m - insights page */

.frequency-chart-wrapper .frequency-chart-right img{
  max-width: 730px;
}

.variance-chart-right img{
  max-width: 600px;
}

/* m - book a demo */
.demo-text{
  flex: 0.4;
}

.demo-schedule{
  flex: 0.55;
}

.book-demo-container h2{
  text-align: left !important;
  font-size: 38px;
}

.book-demo-container .card-block .list-group-item{
  font-size: 16px;
  line-height: 1.8;
}

.book-demo-container{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  /* max-height: 470px; */
  align-items:initial;
}

.book-demo-container iframe{
  margin-left: 5% !important;
  overflow: hidden !important;
}

.calendly-inline-widget{
  height: 900px;
  min-width: 400px !important;
}

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {



/* l - homepage */
body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.headline-wrapper {
  padding: 140px 60px 96px 60px;
  display: inline-flex;
  align-items: center;
  margin: auto;
}

.headline{
  flex:1;
  max-width: 470px;
 
}

.headline-text h2{
  font-size: 42px;
  text-align: left;
}

.headline-text p {
  text-align: left;
}

.tool-cover img{
  padding: 0px;
  display: block;
  height: auto;
  /* max-width: 532px; */
}

.tool-cover{
  flex:1;
  padding: 0px;
}


.cta-btn{
  display: block;
  margin-top: 20px;
  text-align: left;
}

.cta-btn a{
  width: 100%;
  padding: 13px 23px;
  font-size: 14px;
  text-decoration: none !important;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-align: center;
  border-radius: 10px;
 }

.headline-value{
  padding: 0px 140px 96px 140px;
}

.value-container{
  font-size: 16px;
}

/* l - stakes */
.stakes-left-col{
  max-width: 487px;
  min-width: 487px;
}

.stakes-right-col{
  /* width: 60%; */
  min-width: 70%;
  padding-top: 65px;
  padding-bottom: 65px;
  padding-right: 4%;
  padding-left: 4%;
  border-radius: 10px;
  background-color: rgb(248, 249, 250);
  flex:1
 }

 .stakes-right-col h2{
  min-width: 450px;
 }

.stakes-left-col h2,
.stakes-left-col p {
  text-align: left
}

.stakes-container{
  display: flex;
  flex-direction: row;
}

.stakes-cta-btn{
  text-align: left;
}


/* l - benefits */

.jumbotron-stakes{
  /* background: linear-gradient(90.74deg, rgba(247, 238, 231, 0.8) -20.09%, rgba(247, 238, 231, 0) 118.5%); */

 }


 .stakes-wrapper,
.benefits-container{
  padding: 96px 60px;
}


.benefits-container h2 {
  font-size: 44px;
  max-width: 975px;
}

.benefits-container p{
font-size: 20px;
text-align: center;
max-width: 850px;
margin: auto;
}

 .benefits-box{
  /* width: 331px;
  height: 350px; */
  /* padding: 26px 35px; */
  width: 338px;
  height: 365px;
  padding: 50px 35px 30px 35px;
  justify-content: space-around;
 }

 .benefits-container .jumbotron-header p{
   margin-bottom: 30px;
 }

/* l-product features */



.featurespage-container h2 {
  /* max-width: 692px; */
  max-width: 810px;
}

.jumbotron-features h2{
  max-width: 710px;
}

.jumbotron-features{
  padding: 96px 60px 96px 60px;
  text-align: center;
  max-width: 100%
}

.featurespage-container{
  padding: 96px 60px 0px 60px;
  text-align: center;
  max-width: 100%
}

.features-column .title{
  font-size: 18px;
  text-align: left;
}

.features-column h3{
  font-size: 38px;
  text-align: left;
}

.features-column {
  flex:1;
  justify-content: space-between;
}

.features-wrapper{
  display: flex;
  flex-direction: row;
  gap: 3rem;
  align-items:center; 
}

.features-column p{
  font-size: 18px;
  text-align: left;
}

.show-more{
 justify-content: left;
}

.link-title{
  font-size: 18px !important;
}

.features-first-box .img-right {
  max-width: 100%;
}

.features-first-box .img-right img{
  width: 100%;
  margin-bottom: 0px;
}

.features-wrapper .text-left{
  padding-right: 20px;
  max-width: 500px;
  margin: 0;
}

.features-second-box .img-left{
  width: 100%;
}

.features-second-box img{
  /* margin-left: -25px; */
  max-height: auto;
}


.features-wrapper .text-right{
  padding-left: 20px;
  margin: 0;
}

.features-second-box img,
.features-third-box img{
  width: 100%;
  margin-bottom: 0px;
} 


 .features-first-box{
  margin-bottom: 180px;
} 

.features-second-box{
  margin-bottom: 180px;

}




/* l-in the news */
.news-container {
  padding: 96px 60px 96px 60px;
}

.carousel-inner{
  margin-top: 3%;
  max-width: 69%;  
  margin: auto;
}

#carouselContent .carousel-indicators {
  /* max-width: 69% !important;  */
  max-width: 90% !important; 
  margin-top: 5%;
  gap:1rem;
 
}

#carouselContent .carousel-control-prev,
#carouselContent .carousel-control-next{
  margin-top: 45px;
  height: 50px;
  width: 50px;
} 

.carousel-control-prev, 
.carousel-control-next{
  font-size: 18px;
}

#carouselContent .carousel-indicators li img{
  height: 83px;
}

.itk-news{
  height: 53px !important;
}

/* l - supported-by */

.supported-container {
  padding-top: 150px;
}

.brand-logos-wrapper .brand-logos img{
  max-height: 75px !important;
}

/* l - testimonial */

.container-testimonials{
  padding-top: 55px;
}

/* l - cta-banner */
.banner-bg{
  background-image: url(../img/LandingPage/cta-banner-bg.png);
  height: 376px;
  width: 100%;
}

.left-shape{
  position:absolute;
  background-repeat: no-repeat;
  left: -5px;
  bottom:-10px
}

.right-shape{
  position:absolute;
  right: 0px;
  top: 0px;
}

.banner-container{
  padding: 90px 60px 167px 60px;
}

.banner-container .text h3{
  font-size: 36px;
  width: 680px;
}


/* l - footer */
footer{
  padding: 0px 60px 31px 60px;
}

.newsletter-form{
  display:flex;
  flex-wrap: wrap;
}

.footer-container .column-4 {
  max-width: 365px;
  min-width: 364px;
}
.column-group{
  padding-right: 3%;
  flex: 0.9;
}
.txtb_name{
  flex: 1;
  width: 175px;
}

.txtb_first{
  margin-right: 6px;
}

.form-inline{
  flex: 1;
}

.txtb{
  width: 245px;
  margin-right: 10px; 
}

.btn-footer{
  width: 105px;
  height: 48px;
  margin-top:0px
}

/* l - howitworks */


.morph-dropdown-wrapper{
  z-index: 999;
}

.faq-container .accordion-thumb {
  /* padding: 31px 32px; */
  padding: 31px 2.5rem 31px 26px;
}

.faq-container{
  margin-bottom: 0px;
}
.faq-text {
  /* width: 34%; */
  width: 590px;
  font-size: 18px;
} 

.faq-container .accordion-thumb::after{
  margin-right: -1%;
}

.faq-container .accordion-panel {
  /* padding: 0rem 2.5rem 1.3rem 32px; */
  padding: 18px 2.5rem 1.3rem 26px;
}

.faq-container .accordion{
  width: 75%;
}
.faq-container .accordion-thumb::after {
  margin-right: -25px;
}

/* l - press */
.howitworks-container, .press-container, .about-container, .insights-container, .pricing-container{
  padding: 140px 60px 167px 60px;
}

.press-container h2 {
  width: 70%;
  max-width: 608px;
  margin: auto;
}
.press-container .press-subtext{
  width: 79%;
  padding: 23px 0px 60px 0px;
  max-width: 608px;
  margin: auto;
}

.press-content{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.press-left, .press-middle{
  margin-right: 25px
}

.press-content-bottom{
  justify-content: left !important;
}

.press-content-bottom .press-left, 
.press-content-bottom .press-middle{
  max-width: 326.67px;
}

/* l - about */
.about-header h2,
.insights-header h2 {
  /* width: 86%; */
  max-width: 810px;
  font-size: 48px;
}

.about-container .about-subtext, .insights-container .insights-subtext{
  /* width: 82%; */
  padding: 23px 0px 60px 0px;
  font-size: 20px;
  max-width: 920px;
}

.problem-area{
  padding-right: 170px;
}

.avatar > img {
  border-radius: 15px;
  width: 278px;
  height: 336px;
  object-fit: cover;
}

.solution-container{
  padding: 0px 60px;
}

.member-name h3{
  padding-top: 38px;
}

.team-container {
  padding: 96px 60px 167px 60px
}

.teamCol, .advisorCol {
  padding-top: 70px;
}

.social-listing {
  margin-top: 5px
}

.team-flex{
  flex-direction: row;
}

.solution-container {
  display: flex;
  flex-direction: row;
  padding: 0px 60px 0px 60px;

}

.solution-area {
  flex: 1;
}

.problem-area{
  padding-right: 90px;
  flex: 1;
}

.solution-container h4{
  padding-top: 0px;
}

.mission-container{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-height: 470px;
}
.headshot-container{
  background-image: url(../img/AboutPage/headshot-group-l.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  display: block;
  max-width:533px;
  max-height:494px;
  width: 100%;
  height: auto;
  margin-left: 50px;
  float: right;
  flex: 1;
}

.about-mission{
  flex: 1;
}

/* l - terms & privacy */
.wrapper-container{
  padding: 86px 60px 167px 60px;
}

/* l - insights page */

.genderbias-intro{
  gap: 3rem;
  display: flex;
  flex-direction: row;
  /* line-height: 1.78; */
  align-items : center;
  margin-bottom: 120px;
  /* margin-bottom: 40px; */
  margin-top: 40px;
  line-height: 2rem;
  text-align: left;
  max-width: 100%;
}

.genderbias-intro .intro-left,
.racialbias-intro .intro-left{
  flex: 0.5;
}

.genderbias-intro .intro-right,
.racialbias-intro .intro-right{
  flex: 0.5;
}

.genderbias-container .analysis,
.frequency-chart-left,
.racialbias-container h4,
.variance-chart-left{
  text-align: left;
  margin-left: 0;
  margin-right:0;
}

.chart-wrapper .chart-left,
.chart-wrapper .chart-right{
  flex: 1;
}

.chart-wrapper{
  display: flex;
  flex-direction: row;
  line-height: 1;
  gap: 4rem;
  margin-bottom: 120px;
  text-align: left;
}

.frequency-chart-wrapper .frequency-chart-left{
  flex: 0.3;
}
.frequency-chart-wrapper .frequency-chart-right{
  flex: 0.7;
}

.frequency-chart-wrapper .frequency-chart-right img,
.variance-chart-right img{
  width: 100%;
  margin:0;
}

.chart-wrapper span{
  font-size: 12px;
  color: #6f7680;
  font-weight: 500;
}

.chart-wrapper .chart-subtext{
  display: inline-block;  
  width: 92%; 
  line-height: 1.6;
}

.chart-four .chart-subtext{
  width: 66%;
}

.chart-four img{
    max-height: 100%;
}

.chart-one img,
.chart-eight img{
  width: 85%;
  margin:0;
}

.chart-eleven img{
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.chart-four img{
  width: 50%;
}


.frequency-chart-wrapper{
  display: flex;
  flex-direction: row;
  line-height: 1.78;
  gap: 2.8rem;
  margin-bottom: 120px;
  align-items: center;
}

.variance-chart-wrapper{
  display: flex;
  flex-direction: row;
  line-height: 1.78;
  gap: 2.8rem;
  margin-bottom: 120px;
  align-items: flex-end;
}

.variance-chart-wrapper .variance-chart-left{
  flex: 0.4;
}
.variance-chart-wrapper .variance-chart-right{
  flex: 0.6;
}

.racialbias-intro{
  gap: 3rem;
  display: flex;
  flex-direction: row;
  align-items :center;
  margin-bottom: 120px;
  margin-top: 120px;
  line-height: 2rem;
  text-align: left;
  max-width: 100%;
}


.genderbias-intro h3,
.racialbias-container h3{
  font-weight: 700;
  font-size: 42px;
  line-height: 3.5rem;
}

.genderbias-container .chart-wrapper h3,
.racialbias-container h5{
  line-height: 2.5rem;
  text-align: left;
  max-width: 100%;
  margin:0;
}

.genderbias-container .analysis p{
  margin-bottom: 30px;
}

.genderbias-container .analysis,
.frequency-chart-left{
  width: 100%;
}

.genderbias-container h4,
.racialbias-container h4{
  font-weight: 600;
  font-size: 32px;
  line-height: 2.8rem;
  margin-bottom: 20px;
  
}

.racialbias-container h4{
  font-weight: 600;
  font-size: 32px;
  line-height: 2.8rem;
  margin-bottom: 30px;
}


.genderbias-container p{
  line-height: 2rem;
}

.genderbias-container .analysis,
.frequency-chart-left,
.racialbias-container h4,
.variance-chart-left{
  max-width: 822px;
}



.btn-report{
  padding: 12px 22px;
  border-radius: 10px;
  background-color: #eba452;
  color: #ffffff !important;
  text-decoration: none;
  font-size: 14px;
  font-family: Inter;
  font-weight: 500;
  vertical-align:text-bottom;
}

/* report download */

.racialbias-container .modal-content{
   border: none;
}

.modal-backdrop.show {
  opacity: 0.7;
}

.racialbias-container button.close{
  position: absolute;
  right: 32px;
  top: 22px;
}

#report-download h5{
  font-size: 30px;
  margin-bottom: 8px;
  font-weight: 600;
}

#report-download p{
  margin-bottom: 25px;
}

#report-download .modal-dialog{
  min-width: 650px !important;
}

#report-download .modal-body,
#report-download .form-group label{
  font-size: 14px !important;
}

#report-download .modal-body{
  line-height: 1.79;
  padding: 50px;
}

#report-download .form-control{
  font-size: 14px !important;
  text-align: left;
}

#report-download .form-name{
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: space-between;
}

#report-download .form-name .form-group{
  flex: 1 0 auto; 
  width: 50%;
}

#report-download .select2-container .select2-selection--single,
#report-download .select2-results__option{ 
  font-size: 14px !important;
}

.select2-container--default {
  font-size: 14px !important;
}

#btn-report-download{
  width: auto;
  padding: 7px 21px 7px 21px;
  border-radius: 10px;
  border: none;
  background-color: #eba452;
  color: white;
  font-weight: 500;
  float: right;
}

#usecase1Choice2,
#usecase2Choice2{
  margin-left: 15px;
}

/* l - feature page */

.product-feature-header{
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: #eba452;
}

.feature-para{
  text-align: left;
}

.feature-para .features-header{
  font-size: 18px;
  font-weight: 600;
  color: black;
  margin-bottom: 5px;
}

.features-subtext{
  font-size: 16px;
}

.progressBar {
  background: #e7e9f5;
  border-radius: 1px;
  height: 2px;
  width: 100%;
  margin-top: 16px;
}

.show-more a{
  color: #eba452;
  text-decoration: none;
}

/* // */
.featurespage-container .features-wrapper{
  margin-bottom: 120px;
}

.featurespage-container .features-second-box{
  flex-direction: row;
}

.featurespage-container .features-second-box img, 
.featurespage-container .features-third-box img{
  margin-bottom: 0px;
}

.featurespage-container .features-first-box img{
  margin-bottom: 0px;
}

.featurespage-container .features-first-box{
  flex-direction: row;
}

/* l - book a demo */
.demo-text{
  flex: 0.4;
  padding-top: 60px;
}

.demo-schedule{
  flex: 0.55;
}

.book-demo-container{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  /* max-height: 470px; */
}




}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

  /* xl - homepage */

  .headline-wrapper{
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    display: flex;
  }
  .headline{
    flex:1.2;
    max-width: 560px;
    min-width: 560px;
  }

  .headline-text h2{
    font-size: 50px;
  }

  .headline-text p {
    font-size: 20px;
  }

  .tool-cover img{
    display: block;
    max-width: 700px;
    width: 100%;
    height: auto;
  }

  .cta-btn a{
    width: 100%;
    padding: 15px 25px;
    text-decoration: none !important;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-align: center;
    border-radius: 10px;
   }
   
   .value-container{
    font-size: 18px;
    }

  
  /* xl - stakes */


  /* xl - benefits */
  .benefits-container h2,
  .jumbotron-features h2,
  .featurespage-container h2{
    font-size: 48px;
  }

  .features-column h3{
    font-size: 42px;
    text-align: left;
  }
  



  .headline-value, .stakes-wrapper, .benefits-container,
  .headline-wrapper, .jumbotron-features, .featurespage-container ,.news-container,
  .banner-container, footer, 
  .cd-morph-dropdown,
  .faq-container,
  .about-container, .solution-container, .team-container,
  .press-container, .howitworks-container , .pricing-container, .insights-container{
    max-width: 1280px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .features-first-box .img-right img{
    width: 100%;
    margin-left: 0px;
    max-height: none;
    /* margin-left: 20%; */
    /* max-width: 590px; */
  }
  


  .features-second-box img{
    margin-top: 0px;
    max-width: 640px;
    height: auto;
    /* width: 100%;
    height: auto; */
  }

  .features-third-box img {
    margin-top: 0px;
    width: 100%;
    height: auto;
  }

  .features-wrapper .text-right{
    margin-left: 20px;
    /* margin-top: -40px; */
  }

  .features-third-box .text-left{
    margin-top: -60px;
  }

  /* xl - footer */
  .footer-container .column-1{
    max-width: 330px;
  }

  /* xl - how it works */
  .faq-text {
    width: 590px;
    font-size: 18px;
  } 

  .faq-container .accordion{
    width: 75%;
  }

  /* xl - in the news */
  .news-container h2,
  .container-testimonials h2{
    font-size: 48px;
 }

  /* xl - press */
  .press-container h2{
    width: 50%;
    max-width: 608px;
    margin: auto;
  }
  .press-container .press-subtext{
    width: 59%;
    padding: 23px 0px 60px 0px;
    max-width: 608px;
    margin: auto;
  }

  .howitworks-container, .pricing-container,
  .press-container, .about-container , .insights-container{
    padding: 140px 60px 167px 60px;
  }

  .press-content{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    max-width: 1030px;
    margin: auto;
  }

  .press-left, .press-middle{
    margin-right: 25px
  }

  /* xl - about  */

  .about-header h2,
  .insights-header h2  {
    /* width: 70%; */
    font-size: 48px;
    margin: auto;
    max-width: 810px;
  }

  .about-container .about-subtext, .insights-container .insights-subtext{
    /* width: 89%; */
    padding: 23px 0px 60px 0px;
    font-size: 20px;
    margin: auto;
    max-width: 920px;
  }

  .problem-area{
    padding-right: 90px;
    flex: 1;
  }

  .avatar > img {
    border-radius: 15px;
    width: 278px;
    height: 336px;
    object-fit: cover;
  }

  .team-flex{
    flex-direction: row;
  }

  .mission-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-height: 470px;
  }
  .headshot-container{
    background-image: url(../img/AboutPage/headshot-group-l.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    display: block;
    max-width:533px;
    max-height:494px;
    width: 100%;
    height: auto;
    margin-left: 50px;
    float: right;
    flex: 1;
  }
  
  .about-mission{
    flex: 1;
  }

  /* xl - cta-banner */

  .banner-bg{
    background-image: url(../img/LandingPage/cta-banner-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    height: 376px;
    width: 100%;
    background-position: top center;
    overflow: hidden;
    border-radius: 8px;
  }
  
  .left-shape{
    position:absolute;
    background-repeat: no-repeat;
    left: -5px;
    bottom:-10px
  }

  .right-shape{
    position:absolute;
    right: 0px;
    top: 0px;
  }
  .banner-container{
    padding: 90px 60px 167px 60px;
  }

  .banner-container .text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .banner-container .text p{
    font-size: 18px;
  }
  
  .banner-container .text h3{
    font-size: 40px;
    width: 810px;
  }

  .banner-container .cta-banner-btn{
    padding: 15px 25px;
    margin: 0 auto;
    margin-top: 22px;
  }
  
  .banner-container .cta-banner-btn a{
    color: white;
    text-decoration: none;
  }
  
  /* xl - Insights Page */
  
  /* xl - book a demo */
    
  .demo-text{
    flex: 0.4;
  }

  .book-demo-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* max-height: 470px; */
  }

  .demo-schedule{
    flex: 0.6;
  }

  .calendly-inline-widget{
    height: 900px;
    min-width: 320px !important;
  }

  
}

@media only screen and (min-width: 1280px) {
  /* /to be worked on/ */
  .morph-dropdown-wrapper{
   left: calc(100vw - (101vw))!important;
  }
}

@media only screen and (min-width: 1650px) {
  /* /to be worked on/ */
  .morph-dropdown-wrapper{
   /* left: calc(100vw - 115vw)!important; */
   left: calc(100vw - (112vw))!important;
  }
}








/*===== Responsive Vertical Timeline =====*/
@media only screen and (max-width: 992px) {

  #conference-timeline .conference-center-line {
    margin-left: 0;
    left: 50px;
    height: 96%;
    top: 18%;
    
  }
  .timeline-article .meta-step {
    top: 0%;
    margin-left: 7px;
    left: 20px;
  }
  .timeline-article .content-left-container,
  .timeline-article .content-right-container {
    max-width: 100%;
    width: auto;
    float: none;
    margin-left: 110px;
    min-height: 53px;
  }
  .timeline-article .content-left-container {
    margin-bottom: 20px;
  }
  .timeline-article .content-left,
  .timeline-article .content-right {
    padding: 10px 25px;
    min-height: 65px;
  }

  .timeline-article .img-step2{
    margin-top: 0%;
  }
  
  .timeline-article .img-step3{
    margin-top: 0%;
  }

  .second-step {
      display: -webkit-box;
      display: -moz-box;
      display: box;
      -webkit-box-orient: vertical;
      -moz-box-orient: vertical;
      box-orient: vertical;
  }
  .second-step .content-left-container {
      -webkit-box-ordinal-group: 2;
      -moz-box-ordinal-group: 2;
      box-ordinal-group: 2;
  }
  .second-step .content-right-container{
      -webkit-box-ordinal-group: 1;
      -moz-box-ordinal-group: 1;
      box-ordinal-group: 1;
  }

  /* navbar (mobile) - login */

  .navbar-login{
    margin-bottom: 24px;
    display:block;
  }

  .login-btn{
    display: flex;
    width: 100%;
    margin-top: 30px;
    border-radius: 10px;
    background-color: rgba(237, 227, 215, 0.25);
    text-align: center;
    margin-bottom: 24px !important;
  }

  .login-btn a{
    color: #2e2c2c !important;
    font-size: 15px;
    font-family: Inter;
    font-weight: 500;
    text-decoration: none;
  }

  .login-btn:hover{
    background-color: rgba(228, 215, 199, 0.25);
  }

  .signup-btn{
    display: flex;
    width: 100%;
    text-align: center;
  }

  .signup-btn a{
    font-size: 15px;
  }

  .book-a-demo-btn{
    display: inline-block;
    width: 100%;
    border-radius: 10px;
    background-color: #FFFFFF;
    text-align: center;
    border: 2px solid #e49d4d;

  }

  .book-a-demo-btn a{
    color:#eba452;
    font-size: 15px;
    font-weight: 500;
  }

  .book-a-demo-btn:hover a{
    color:#ffffff;
    background-color: #eba452;
  }

  .book-a-demo-btn:hover{
    background-color: #eba452;

  }


}

@media only screen and (max-width: 400px) {
  .timeline-article p {
    margin: 0;
  }
  
}
/*===== Responsive Vertical Timeline =====*/



[data-aos="new-fade-up"] {
  opacity: 0;
  transition-property: transform, opacity;
  transform: translateY(20px);
}
[data-aos="new-fade-up"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="new-fade-left"] {
  opacity: 0;
  transition-property: transform, opacity;
  transform: translateX(20px);
}
[data-aos="new-fade-left"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="new-fade-right"] {
  opacity: 0;
  transition-property: transform, opacity;
  transform: translateX(-20px);
}
[data-aos="new-fade-right"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="new-zoom-in"] {
  opacity: 0;
  transition-property: transform, opacity;
  transform: scale(.9);
}

[data-aos="new-zoom-in"].aos-animate {
  transform:scale(1);
  opacity: 1;
}

