@import url(https://fonts.googleapis.com/css2?family=Fira+Sans:wght@100&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
/* Slick Slider Base Styles */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

.slick-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Custom styling for slider arrows */
.agents{
  .slick-prev,
  .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(120, 15, 158, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    z-index: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:0;
    border:none;
  }
  
  .slick-prev {
    left: -5px;
  }
  
  .slick-next {
    right: -5px;
  }
  
  .slick-prev:before,
  .slick-next:before {
    content: '\21FD';
    font-size: 28px;
    color: #fff;
  }
  
  .slick-next:before {
    content: '\21FE'; 
  }
  
  /* Custom styling for dots */
  .slick-dots {
    bottom: 10px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 0;
    list-style: none;
  }
  
  .slick-dots li {
    margin: 0 5px;
  }
  
  .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    padding: 0;
    cursor: pointer;
  }
  
  .slick-dots li.slick-active button {
    background-color: #9600BF;
  }
}

/* Custom card styles */
.testimonials{
  margin: 0 auto 50px;
}
.daily-3-agents{
  margin-bottom:100px;
}
.agent-card {
  /* border-radius: 10px; */
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  padding: 20px;
  margin: 10px 20px;
  transition: transform 0.3s;
  /* display: flex; */
  /* border-left:5px solid #780F9E; */
  border-top:3px solid #780F9E;
  border-radius: 10px;
  height:250px;
  cursor:pointer;
  background: #FFF;
}
.agent-top{
  display: flex;
}
.card:hover {
  transform: translateY(-10px);
}



.agent-photo {
  width: 120px;
  height: 120px;
  
  min-width: 120px;
  margin-right:10px;
  background-size:cover;
  border-radius: 50%;
  background-position: center top;
}
.agent-photo img{
  border-radius: 50%;
}

.agent-container{
  text-align: left;
    margin-top:12px;
}

.agent-text {
  font-style: italic;
  font-size:1rem;
  line-height: 1.3rem;
  min-height:40px;
  margin-bottom:5px;
  min-height:80px;
  p{
    margin-bottom:10px;
  }
  ul{
    font-size:1rem;
    line-height: 1.3rem;
    li{
      list-style: inside;
      margin-bottom:10px;
      margin-left:10px;
    }
  }
}
.agent-subtext{
  font-style: italic;
  text-align: right;
}
.agent-title {
  color: #555;
  font-weight:400;
  margin-top:3px;
  font-size:.9rem;
  line-height:1.2em;
}
.agent-title.company{
  margin-top:8px;
  line-height:1.2em;
  font-weight:300;
  font-size:1rem;
  text-transform: uppercase;
}

.agent-name {
  font-weight: 700;
  color: #333;
  font-size:1.25rem;
}
.agent-contract{
  margin-top:20px;
  position: relative;
  .agent-contract-type{
    font-size:1em;
    font-weight:500;
    margin-bottom:5px;
  }
  .agent-contract-amt{
    font-size:1.2rem;
    font-weight:700;
  }
  .agent-contract-date{
    font-weight:300;
  }
  .agent-contract-link{
    position:absolute;
    right:0px;
    bottom:0px;
  }
}
.title {
  color: #777;
  font-size: 0.8em;
}
.testimonials .desktop-hide{
  display:none;
}
@media only screen and (max-width: 767px) {
  
  .testimonials .mobile-hide{
    display:none;
  }
  .testimonials .desktop-hide{
    display:block;
  }
  
}

html {
  scroll-behavior: auto !important;
} 
*,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  text-decoration: none;
}
a,
a:hover {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
body {
  font-family: "Montserrat", sans-serif;
}
p {
  font-weight: 500;
  color: #363347;
}
ul {
  font-size: 0;
}
ul li {
  list-style: none;
}
:focus {
  outline: none;
  box-shadow: none;
}
input:focus::placeholder {
  color: transparent;
}
/* article excerpt */
figcaption {
  margin-top: 5px;
  margin-bottom: 5px;
}
.content-sec figure {
  padding-top: 5px;
}
.content-sec figure em {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  color: #5c6178;
  font-size: 14;
}
.content-sec div figure img,
.content-sec div figure figcaption {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.content-sec figure em a {
  color: #9600bf;
  font-weight: 500;
}
.content-sec p a {
  color: #9600bf;
  font-weight: 600;
}
.content-sec h2 {
  /* Heading 2 */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 24px;
  color: #363347;
  padding-top: 12px;
}
figure {
  margin: 0;
}
/* top header */

header a {
  cursor: pointer;
}
.top-header {
  border-bottom: 1px solid #d1d6e0;
  max-height: 53px;
  min-height: 53px;
}
.top-header ul {
  display: block;
  text-align: right;
}
.top-header ul li {
  display: inline-block;
  vertical-align: top;
}
.top-header ul li a {
  font-family: "Fira Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #363347;
  transition: 0.3s ease-in-out;
  padding: 10px 20px;
  display: flex;
  height: 53px;
  align-items: center;
}
.top-header ul li:hover a {
  background-color: rgba(163, 173, 194, 0.2);
}
.top-header .dropdown-ul i {
  margin-left: 5px;
}
.top-header .dropdown-ul {
  position: relative;
}
.top-header .dropdown-ul ul {
  position: absolute;
  left: 0;
  background-color: rgba(163, 173, 194, 1);
  top: 53px;
  display: none;
  width: 100%;
  text-align: center;
  z-index: 9;
  box-shadow: 0px 4px 7px rgb(0 0 0 / 30%);
}
.top-header .dropdown-ul:hover ul {
  display: block;
}
.top-header .dropdown-ul li {
  display: block;
}
.top-header .dropdown-ul li a {
  height: auto;
  padding: 10px;
  display: block;
}
.top-header .dropdown-ul li:hover a {
  background-color: #363347;
  color: #ffffff;
}

.navigation {
  padding: 10px 0px;
}
.navigation ul li a {
  font-family: "Fira Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #363347;
  transition: 0.3s ease-in-out;
}
.navigation ul li a:hover {
  color: #5c1f7a;
}
.navigation ul li {
  margin-left: 15px;
}
.login-btn {
  border: 2px solid #5c1f7a;
  border-radius: 5px;
  font-family: "Fira Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #5c1f7a;
  min-width: 120px;
  text-align: center;
  transition: 0.3s ease-in-out;
}
.login-btn:hover {
  background-color: #5c1f7a;
  color: #ffffff !important;
}

.gray-banner {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  vertical-align: middle;
  padding: 40px 0px 0px;
}
.gray-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #d9d9d9 0%, rgba(217, 217, 217, 0) 100%);
  opacity: 0.2;
}
.gray-banner h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 24px;
  text-transform: capitalize;
  color: #5c6178;
  width: 100%;
  margin-top: -25px;
}
.banner-search-section {
  width: 50%;
  margin: 0 auto;
  height: 60px;
  background: #ffffff;
  border: 1px solid #a7b2e3;
  box-shadow: 0px 4px 10px rgb(0 0 0 / 5%);
  border-radius: 5px;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
.gray-banner h3 {
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
  color: #5c6178;
  opacity: 0.6;
  font-family: "Fira Sans", sans-serif;
  text-align: left;
  width: 50%;
  margin: 10px auto 0;
}
.banner-search {
  display: flex;
  justify-content: space-around;
  align-items: center;
  vertical-align: middle;
  height: 60px;
  border-radius: 5px;
}
.banner-search input,
.ais-SearchBox-form input {
  border: none;
  height: 100%;
  width: 90%;
  font-family: "Fira Sans", sans-serif;
  /*font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: rgba(92, 97, 120, 0.6);*/

  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #5c6178;
  opacity: 0.6;
}
.banner-search input.form-control:focus {
  border-color: transparent;
  box-shadow: none;
}
.banner-search button,
.banner-search button:hover,
.banner-search button:focus {
  height: 100%;
  width: 10%;
  border: none;
  background: transparent;
}

.first-section {
  padding: 30px 0px 0px;
}
.wrap-div {
  margin-top: 20px;
}
.image-wrap {
  border-radius: 6px;
  overflow: hidden;
}
.img-featured {
  border-radius: 6px;
}
/* .other-lead-post {
  margin-left: 20px;
} */
.first-section h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  color: #363347;
}
.first-section .wrap-div h3 span {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #9600bf;
  display: block;
  padding-bottom: 10px;
}
.first-section .wrap-div h3 {
  font-style: normal;
  font-weight: 800;
  font-size: 36px;
  line-height: 40px;
  color: #363347;
}
.first-section .wrap-div p {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #363347;
  padding-top: 15px;
}
.first-section .wrap-div .content-section {
  margin-top: 30px;
}

.first-section h4 {
  font-family: "Fira Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #363347;
  text-align: right;
}
.first-section .card-sections {
  margin-top: 20px;
}
.first-section .card-sections h5 {
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 24px;
  color: #363347;
}
.first-section .author-details {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  color: #9600bf;
  margin-bottom: 15px;
}
.first-section .author-details span {
  display: inline-block;
  vertical-align: top;
  padding-left: 10px;
  margin-left: 10px;
  border-left: 1px solid #5c6178;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #5c6178;
}
.first-section .author-details a {
  color: #9600bf;
}
.first-section .card-sections .row {
  margin-bottom: 30px;
}
.first-section .card-sections .row:last-child {
  margin-bottom: 0px;
}

.third-section {
  padding: 80px 0px 0px;
}
.third-section h2 {
  font-family: "Fira Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  color: #363347;
}
.third-section h4 {
  font-family: "Fira Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #363347;
  text-align: right;
}
.third-section .content-section h3 {
  font-style: normal;
  font-weight: 800;
  font-size: 30px;
  line-height: 30px;
  color: #363347;
}
.third-section .content-section h3 span {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #9600bf;
  display: block;
  padding-bottom: 5px;
}
.third-section .content-section h3 a {
  color: #363347;
}
.third-section .content-section p {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #363347;
  padding-top: 5px;
}
.third-section .wrap-div .content-section {
  margin-top: 15px;
}
.third-section .card-sections {
  margin-top: 15px;
}
.third-section .author-details {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #9600bf;
  margin-bottom: 10px;
}
.third-section .author-details span {
  display: inline-block;
  vertical-align: top;
  padding-left: 10px;
  margin-left: 10px;
  border-left: 1px solid #5c6178;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #5c6178;
}
.third-section .author-details a {
  color: #9600bf;
}
.third-section .card-sections h5 {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #363347;
}
.cards-line {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.cards-line:last-child {
  border: none;
  padding: 0;
  margin: 0px;
}
.bottom-ad {
  margin-top: 60px;
}
.right-add-margin {
  margin-top: 30px;
}

.fourth-section {
  padding: 80px 0px 0px;
}
.right-side-add {
  margin-bottom: 30px;
  text-align: center;
}
.right-side-add:last-child {
  margin-bottom: 0;
}
.divider-sections {
  /* border-top: 1px dotted rgba(0, 0, 0, 0.2);
  padding-top: 15px;
  margin-top: 15px; */
}
.divider-sections h4 {
  font-style: normal;
  font-weight: 800;
  font-size: 22px;
  line-height: 26px;
  color: #363347;
}
.divider-sections p {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #363347;
  margin: 0;
  padding-top: 10px;
}
.fourth-section h2 {
  font-family: "Fira Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  color: #363347;
}
.class-categori h5 {
  font-style: normal;
  font-weight: 800;
  font-size: 32px;
  line-height: 36px;
  color: #363347;
}
.class-categori p {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #363347;
  margin: 0;
  padding-top: 15px;
}
.class-categori .tags {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #9600bf;
  margin-bottom: 15px;
}
.class-categori .tags a {
  color: #9600bf;
}
.class-categori .tags img {
  padding-left: 6px;
}

.class-categori {
  margin-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
}

.subscribe-footer {
  padding: 150px 0px 100px;
}
.subscribe-footer h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 54px;
  line-height: 60px;
  text-align: center;
}
.subscribe-footer h2 span {
  color: #9600bf;
}
.subscribe-option {
  width: 100%;
  margin: 0px auto;
}

.subscribe-heading hr {
  color: #acacac;
}

.subscribe-footer .subscribe-heading a {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 40px;
  text-transform: uppercase;
  color: #9600bf;
}
.subscribe-heading p {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  color: #5c6178;
  padding-top: 20px;
  padding-bottom: 20px;
  /* padding-left: 18%;
  padding-right: 18%; */
}
.subscribe-heading hr {
  margin: 40px 0px;
}
.subscribe-heading .for-update p {
  padding-top: 45px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #5c6178;
}
.subscribe-heading .for-update p span {
  color: #9402bd;
}
.checkbox-section p {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #5c6178;
  flex: none;
  order: 1;
  flex-grow: 0;

  text-align: left;
  padding: 8px 30px 0px 0px;
}
.checkbox-section label.cbx {
  position: relative;
  padding-left: 30px;
}
.cbx {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.cbx:not(:last-child) {
  margin-right: 6px;
}
.cbx span {
  float: left;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}
.cbx span:first-child {
  position: absolute;
  left: 2px;
  top: 7px;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  transform: scale(1);
  border: 1px solid #cccfdb;
  transition: all 0.2s ease;
  box-shadow: 0 1px 1px rgba(0, 16, 75, 0.05);
}
.cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #fff;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
  width: 20px;
  height: 16px;
}
.cbx span:last-child {
  padding-left: 8px;
  line-height: 18px;
}
.cbx:hover span:first-child {
  border-color: #9600bf;
}
.inp-cbx {
  position: absolute;
  visibility: hidden;
}
.inp-cbx:checked + .cbx span:first-child {
  background: #9600bf;
  border-color: #9600bf;
  animation: wave 0.4s ease;
}
.inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
  width: 20px;
  height: 16px;
}
.inline-svg {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  user-select: none;
}
.checkbox-section b {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  color: #363347;
}

@-moz-keyframes wave {
  50% {
    transform: scale(0.9);
  }
}
@-webkit-keyframes wave {
  50% {
    transform: scale(0.9);
  }
}
@-o-keyframes wave {
  50% {
    transform: scale(0.9);
  }
}
@keyframes wave {
  50% {
    transform: scale(0.9);
  }
}

.subsform {
  display: flex;
  justify-content: space-between;
  width: 70%;
  margin: 30px auto 0px;
}
.subsform input::after {
  border: 1px solid rgba(92, 97, 120, 0.6);
  box-shadow: 0px 37px 60px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
}
.div-subs {
  padding-right: 0;
  position: relative;
  padding-left: 50px;
  display: flex;
  align-items: center;
  vertical-align: middle;
}
input.form-control-subscribe {
  color: rgba(54, 51, 71, 0.6) !important;
  border: none !important;
  padding: 0;
  width: 76%;
  margin-left: 20px;
  height: 100%;
  background-color: transparent;
  box-shadow: none !important;
}
.img-input {
  position: absolute;
  left: 25px;
  top: 30%;
  width: 28px;
}
.subsform input {
  text-align: left;
  margin-right: 15px;

  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: rgba(54, 51, 71, 0.6);
  /* background: url("/svgs/sms-tracking.svg") no-repeat scroll 17px 17px;
  background-size: 24px;
  padding-left: 50px; */

  border: 1px solid rgba(92, 97, 120, 0.6);
  box-shadow: 0px 37px 60px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
}

.subsform button {
  background: #9600bf;
  /* background-color: #5c1f7a; */
  border: 1px solid #5c1f7a;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #ffffff;
  font-family: "Fira Sans", sans-serif;
  height: 60px;
  min-width: 162px;
  /* margin-left: -80px; */
}
/* .subsform input[type="text"] {
  width: 200px;
  height: 20px;
  padding-right: 50px;
}

.subsform input[type="submit"] {
  margin-left: -50px;
  height: 20px;
  width: 50px;
} */

footer {
  padding: 60px 0px 30px;
}
footer hr {
  color: #acacac;
}
.footer-navigation {
  padding-bottom: 30px;
}
.footer-navigation h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #363347;
}
.footer-navigation ul li a {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 30px;
  color: #5c6178;
  transition: 0.3s ease-in-out;
}
.footer-navigation ul li a:hover {
  color: #5c1f7a;
}
.footer-navigation ul li {
  margin-top: 15px;
}
.footer-social {
  margin-top: 25px;
}
.footer-social ul li{
  display: flex;
}
.footer-social ul li a {
  color: #000000;
  margin-right: 24px;
}
.footer-social .fas-fa-size, .footer-social .fa-brands {
  font-size: 36px;
  border-radius: 0px;
}

.copyright-section {
  padding-top: 30px;
  padding-bottom: 20px;
}
.copyright-section ul li {
  display: inline-block;
  vertical-align: top;
}
.copyright-section ul li a {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #5c6178;
  margin-right: 15px;
  transition: 0.3s ease-in-out;
}
.copyright-section ul li a:hover {
  color: #000000;
  margin-right: 10px;
}

.article-banner figure {
  text-align: center;
  margin: 0;
}
.article-banner {
  margin-top: 50px;
}
.article-section {
  padding-top: 50px;
}
.left-artical-section {
  padding-left: 80px;
  position: relative;
}
.lft-social {
  position: absolute;
  left: 0;
  top: 0;
}
.lft-social ul li {
  display: block;
  margin-bottom: 15px;
}

.left-margin {
  padding-left: 80px;
}
.related-section h2 {
  font-family: "Fira Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  color: #363347;
}
.related-section h3 {
  font-style: normal;
  font-weight: 800;
  font-size: 26px;
  line-height: 34px;
  color: #363347;
}
.related-section h3 span {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #9600bf;
  display: block;
  padding-bottom: 15px;
}
.related-section h3 a {
  text-decoration: none;
  color: #363347;
}
.related-section a {
  text-decoration: none;
  color: black;
}

.related-section {
  padding-top: 60px;
  padding-right: 18%;
}
.related-section .blocks {
  margin-top: 30px;
}
.related-section .blocks p {
  padding-top: 15px;
}
.related-section .blocks p a {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 26px;
  text-transform: uppercase;
  color: #363347;
  display: block;
  padding-top: 15px;
  transition: 0.3s ease-in-out;
}
.related-section .blocks p a:hover {
  color: #9600bf;
}
.article-content .content-sec p {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #363347;
  padding-top: 15px;
  margin-bottom: 15px;
}
.article-content h1 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  font-size: 36px;
  line-height: 40px;
  color: #363347;
  padding-top: 25px;
}
.article-content h1 span {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #9600bf;
}
.article-content hr {
  width: 60px;
  background-color: #5c6178;
  border-color: #5c6178;
}
.time-ul li {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: inherit;
  color: #5c6178;
  display: inline-block;
  vertical-align: top;
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid #5c6178;
}
.time-ul li:first-child {
  color: #9600bf;
}
.time-ul li:last-child {
  border: none;
  padding: 0;
  margin: 0;
}
.content-ul {
  padding-top: 30px;
}
.content-ul li {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #363347;
  position: relative;
  padding-left: 30px;
  padding-bottom: 30px;
}
.content-ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  background-color: #5c1f7a;
  width: 8px;
  height: 8px;
  border-radius: 100%;
}
.article-tag ul li {
  display: inline-block;
  vertical-align: top;
  margin-right: 15px;
}
.article-tag ul li a {
  border: 1px solid #8c5ca4;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #5c1f7a;
  background-color: #fcf0ff;
  border-radius: 50px;
  padding: 10px 15px;
  margin-top: 15px;
  display: block;
  transition: 0.3s ease-in-out;
  text-transform: capitalize;
}
.article-tag ul li a:hover {
  background-color: #8c5ca4;
  color: #ffffff;
}

.categori-page .card-sections .image-wrap img {
  width: 100%;
}
.loadmore {
  font-family: "Fira Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  color: #5c1f7a;
  border: 1px solid #5c1f7a;
  padding: 15px 30px;
  border-radius: 4px;
}
.loadmore-section {
  text-align: center;
  margin-top: 30px;
}
.per-div {
  margin-top: 30px !important;
}
.per-div:first-child {
  margin-top: 0;
}
.third-section.categori-page .card-sections {
  margin-top: 0;
}
.category-section h1 {
  font-style: normal;
  font-weight: 800;
  font-size: 56px;
  line-height: 68px;
  letter-spacing: -0.05em;
  color: #363347;
}
.category-section {
  padding: 60px 0px 0px;
  text-align: center;
}
.category-section p {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #5c6178;
  margin: 0;
}
.section-margin {
  margin-top: 30px;
}
.category-card {
  text-align: left;
  margin-top: 15px;
}
.categori-imgsec {
  height: 218px;
  overflow: hidden;
  border-radius: 4px;
  width: 100%;
}
.categori-imgsec img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.categori-consec {
  margin-top: 10px;
}
.categori-consec h2 {
  font-style: normal;
  font-weight: 800;
  font-size: 22px;
  line-height: 24px;
  color: #363347;
}
.categori-consec p {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #363347;
  padding-top: 5px;
}
.category-card:first-child {
  margin-top: 0;
}
.center-cate {
  text-align: left;
}
.categori-centerimgsec {
  width: 100%;
  height: 523px;
  overflow: hidden;
  border-radius: 4px;
}
.categori-centerimgsec img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.categori-centercont {
  margin-top: 15px;
}
.categori-centercont h2 {
  font-style: normal;
  font-weight: 800;
  font-size: 36px;
  line-height: 40px;
  color: #363347;
}
.categori-centercont p {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #363347;
  padding-top: 5px;
}
.categori-page {
  padding: 60px 0px 0px;
}
.categori-page h5 {
  font-style: normal;
  font-weight: 800;
  font-size: 32px;
  line-height: 36px;
  color: #363347;
  margin-top: 15px;
}
.categori-page p {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #363347;
  padding-top: 15px;
  margin: 0;
}
.categori-page .author-details {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #9600bf;
}
.categori-page .author-details span {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #5c6178;
  padding-left: 10px;
  margin-left: 10px;
  border-left: 1px solid #5c6178;
}
.categori-page .author-details a {
  color: #9600bf;
}
.right-add-margin img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.mobile-show-add,
.minimobile-show-add,
.subshow {
  display: none;
}


.sub-inner-bg {
  /* background-color: rgba(163, 173, 194, 0.1); */
  padding-top: 70px;
  padding-bottom: 40px;
  width: 95%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background-image: url("/svgs/Rectangle-307.svg");
}

.standalone-page .sub-inner-bg{
  background:none;
}

/* .sub-inner-bg:before {
  position: absolute;
  top: 0px;
  left: 0px;
  content: "";
  bottom: 0px;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, #5c6178 0%, rgba(217, 217, 217, 0) 100%);
  opacity: 0.05;
} */
.sub-divider {
  margin: 30px 0px;
}
.sub-divider img {
  max-width: 100%;
  height: auto;
}
.color-bg {
  background-color: rgba(163, 173, 194, 0.1);
  padding-top: 60px;
  padding-bottom: 60px;
  width: 95%;
  margin: 0 auto;
}
.for-mobile {
  display: none;
}

/*mobile menu*/

body.menuopen {
  position: fixed;
}
.mobile-header .navigation {
  padding: 10px 0px;
}
.mobile-header a.user-icon {
  float: right;
  /*margin-right: 50px;*/
}
.hamburger {
  /*position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;*/
  z-index: 1000;
  padding: 10px 15px 5px;
}
.mobile-header .hamburger {
  display: inline-block;
  vertical-align: top;
  padding: 0;
}
.mobile-header .hamburger .bars {
  height: auto;
}
.hamburger span {
  vertical-align: middle;
}
nav.navigation.open .bars img {
  display: none;
}
.hamburger .bars {
  display: block;
  position: relative;
  width: 40px;
  height: 5px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.open .hamburger .bars {
  background-color: transparent;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.open .hamburger .bars::before {
  position: absolute;
  content: " ";
  width: 24px;
  height: 3px;
  background-color: rgb(0 0 0 / 70%);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  top: 10px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.open .hamburger .bars::after {
  position: absolute;
  content: " ";
  width: 24px;
  height: 3px;
  background-color: rgb(0 0 0 / 70%);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  bottom: -13px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mobile-header .open .menu {
  overflow: auto;
}
.menu {
  width: 100%;
  height: 100%;
  padding: 15px;
  background-color: #ffffff;
  position: fixed;
  right: -100%;
  top: 47px;
  opacity: 0;
  z-index: 999;
  margin-top: 0;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.menu a {
  color: WhiteSmoke;
}
.menu a:hover {
  color: white;
}
.open .menu {
  right: 0;
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.menu:hover {
  overflow-y: auto;
}
.mobile-header {
  display: none;
}
.menu h2 {
  font-family: "Fira Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #5c6178;
}
.mobile-header ul li a {
  font-family: "Fira Sans", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
  color: #363347;
}
.mobile-header .sale-navigation li a {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-transform: capitalize;
  color: #9600bf;
  display: block;
}
.sale-navigation li {
  border-bottom: 0 !important;
  display: inline-block;
  vertical-align: middle;
  padding-right: 40px;
  padding-left: 40px;
  margin: 0 !important;
  position: relative;
  padding-bottom: 0 !important;
}
/* .sale-navigation {
  margin-top: 20px;
} */
.sale-navigation li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: rgba(92, 97, 120, 0.5);
}
.sale-navigation ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}
.sale-navigation li {
  /*border-top: 1px solid rgba(0, 0, 0, 0.1);
border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;*/
  padding: 15px !important;
  width: 100%;
  text-align: center;
}
.sale-navigation li:first-child {
  padding-left: 0;
}
.sale-navigation li:last-child {
  padding-right: 0;
}
.sale-navigation li:last-child::after {
  display: none;
}
.mobile-header ul li:first-child {
  margin-top: 0;
  /*border-bottom: 1px solid rgba(0, 0, 0, 0.1);*/
}
.product-divul {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.mobile-header ul li {
  margin-left: 0;
  margin-top: 20px;
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
  padding-bottom: 20px;
}
.mobile-header ul li ul li {
  padding-bottom: 0;
  border-bottom: none;
}
.mobile-header ul li ul li {
  display: block;
  vertical-align: top;
  box-sizing: border-box;
  padding: 15px 0px 0px;
  margin-top: 0px;
}

.full-menu {
  margin-top: 20px;
}
.full-menu ul {
  display: block;
  justify-content: inherit;
  align-items: inherit;
  text-align: center;
}
.full-menu ul li {
  display: inline-block;
  vertical-align: top;
  margin-top: 0;
  padding: 0px 10px;
  margin-right: 0;
  border-right: none;
  position: relative;
  width: auto;
}
/* .full-menu li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: rgba(92, 97, 120, 0.5);
} */
/* .full-menu li:first-child {
  padding-left: 0;
}
.full-menu li:last-child {
  padding-right: 0;
}
.full-menu li:last-child::after {
  display: none;
} */
/* .full-menu ul li:last-child {
  padding-right: 0px;
  margin-right: 0px;
  border-right: none;
} */
.full-menu ul li a {
  font-family: "Fira Sans", sans-serif;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 24px !important;
  text-transform: capitalize !important;
  color: #363347 !important;
  display: block;
  position: relative;
}
.full-menu ul li a::after {
  content: "";
  /* background-image: url(../images/arrow-down.png); */
  background-repeat: no-repeat;
  background-position: right center;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  right: 0;
}
.full-menu li {
  width: 100%;
  /* padding: 0px 10px; */
  padding-bottom: 0 !important;
  border-bottom: none !important;
  text-align: center;
}
/* .full-menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
} */

.mobile-header .login-section a {
  background: #9600bf;
  border: 2px solid #9600bf;
  border-radius: 5px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
  display: block;
  padding: 20px;
  text-align: center;
}
.login-section {
  margin-top: 20px;
}
.header-social {
  text-align: center;
  padding-bottom: 30px;
}
.header-social p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #5c6178;
}
.header-social ul li {
  border: none;
  padding: 0;
  margin-top: 20px !important;
  margin-bottom: 20px;
}
.header-social li a {
  margin-right: 15px !important;
  font-size: 18px !important;
}
.header-social li a:last-child {
  margin-right: 0px;
}
.header-social ul li i{
  font-size:30px;
}
.checked-area {
  border: 1px solid rgba(92, 97, 120, 0.2);
  padding: 15px;
  margin-top: 30px;
  border-radius: 5px;
}
.checked-area label.cbx {
  position: relative;
}
.checked-area .cbx span:last-child {
  height: 100%;
  position: relative;
  padding-bottom: 60px;
}
.buttons {
  position: absolute;
  bottom: 0;
  left: 0;
}
.match-height .checkbox-section b {
  display: block;
}
.readpreview-btn {
  background: #ffffff;
  border: 1px solid #5c6178;
  border-radius: 5px;
  font-style: normal;
  font-weight: 600;
  font-size: 10px;
  line-height: 14px;
  color: #5c6178;
  padding: 8px 10px;
  margin: 10px;
}
.subscriber-btn {
  background: #28c2ff;
  border: 1px solid #28c2ff;
  border-radius: 5px;
  font-style: normal;
  font-weight: 600;
  font-size: 10px;
  line-height: 14px;
  color: #ffffff;
  padding: 8px 10px;
}
.comingsoon-btn {
  background: #ffffff;
  border: 1px solid #9600bf;
  border-radius: 5px;
  font-style: normal;
  font-weight: 600;
  font-size: 10px;
  line-height: 14px;
  color: #9600bf;
  padding: 8px 10px;
}
.newsletter-page {
  padding: 50px 0px;
}
.newsletter-page h1 {
  font-style: normal;
  font-weight: 800;
  font-size: 56px;
  line-height: 68px;
  text-transform: capitalize;
  color: #363347;
  text-align: center;
}
.newsletter-page p {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #5c6178;
  text-align: center;
}
.newsletter-select {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.newsletter-select h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  color: #363347;
  display: inline-block;
  vertical-align: top;
  font-family: "Fira Sans", sans-serif;
}
.newsletter-select .checkbox-section {
  display: inline-block;
  vertical-align: top;
}
.checked-area p {
  text-align: left;
}

.visiblesection {
  display: none;
}
.hide-img {
  display: block;
}
.visible-img {
  display: none;
}
/*categori page*/
.ipad-hide {
  display: block;
}
.ipad-show {
  display: none;
}
.mobile-showimg {
  display: none;
}

.gap-right {
  padding-right: 42px;
}
.fullWidth-img {
  width: 100%;
  /* height: 500px; */
}
.half-height::before {
  content: "";
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, #000),
    to(rgba(0, 0, 0, 0))
  );
  background: linear-gradient(to right, #000 0, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6000000', endColorstr='#00000000', GradientType=1);
  width: 40%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
.half-height::after {
  content: "";
  background: linear-gradient(
    to right,
    rgb(0, 0, 0) 0px,
    rgba(0, 0, 0, 0) 100%
  );
  width: 40%;
  position: absolute;
  right: 0px;
  top: 0px;
  height: 100%;
  transform: rotate(180deg);
}
.half-height {
  /* height: 54vh; */
  overflow: hidden;
  text-align: center;
  position: relative;
  height: 450px;
  width: 100%;
}
.half-height img {
  height: 100%;
  width: 95%;
  object-fit: fill;
}
.img-bgs {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.lead-img {
  height: 400px;
}
.lead-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.trend-img {
  height: 280px;
}
.trend-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.anchore-relative-div {
  position: relative;
}
.anchore-absolate {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.content-sec .external-link {
  text-align: center;
}
.content-sec .external-link {
  margin: 40px 0px;
}
.content-sec .external-link a {
  font-family: "Fira Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  text-transform: uppercase;
  color: #5c1f7a;
  border: 1px solid #5c1f7a;
  padding: 20px 36px;
  border-radius: 4px;
  display: inline-block;
  vertical-align: top;
}
.category-name-color {
  color: "#9600bf";
}

/*header*/
.header {
  background: #ffffff;
  border-bottom: 1px solid rgba(92, 97, 120, 0.2);
  padding-top: 15px;
  padding-bottom: 25px;
}
.header .top-header-sec ul li a {
  font-family: "Fira Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 19px;
  color: #9600bf;
}
.header .top-header-sec .right-ul-header li a {
  color: #9600bf;
}
.header .top-header-sec {
  display: flex;
  justify-content: space-between;
  vertical-align: middle;
  align-items: center;
}
.header .top-header-sec .left-ul-header li {
  display: inline-block;
  vertical-align: top;
  padding-right: 15px;
}
.header .top-header-sec .left-ul-header li:last-child {
  padding-right: 0px;
}
.header .top-header-sec .middle-ul-header li a img {
  width: 240px;
}
.header .top-header-sec .right-ul-header li a {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  vertical-align: middle;
  justify-content: center;
}
.header .top-header-sec .right-ul-header li a img {
  margin-right: 5px;
}
.bottom-header-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.bottom-header-sec ul li a {
  font-family: "Fira Sans", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 22px;
  color: #363347;
  padding-right: 20px;
  display: inline-block;
  vertical-align: middle;
}
.bottom-header-sec ul li a:last-child {
  padding-right: 0px;
}
.bottom-header-sec ul li span {
  font-family: "Fira Sans", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: 16px;
  color: #5c6178;
  padding-right: 10px;
  display: inline-block;
  vertical-align: middle;
}
.bottom-header-sec ul li a.btn-header {
  background: #9600bf;
  border-radius: 5px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #ffffff !important;
  padding: 10px 20px !important;
  cursor: pointer;
}
@media only screen and (min-width: 992px) and (max-width: 1300px) {
  .bottom-header-sec ul li {
    white-space: nowrap;
  }
  .bottom-header-sec ul li a {
    font-size: 14px;
    padding-right: 12px;
  }
  .bottom-header-sec ul li span {
    font-size: 13px;
    padding-right: 8px;
  }
  .bottom-header-sec ul li a.btn-header {
    font-size: 13px;
    padding: 8px 12px !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1120px) {
  .bottom-header-sec ul li span {
    display: none;
  }
  .bottom-header-sec ul li a {
    font-size: 13px;
    padding-right: 10px;
  }
}

/*scroll menu*/
.navbar-scroll {
  background-color: #ffffff;
  width: 25%;
  height: 100vh;
  display: none;
  padding: 30px;
}
.navbar-scroll ul {
  overflow: hidden;
  list-style-type: none;
  padding-top: 5%;
  margin: 0;
}
.navbar-scroll li {
  display: block;
  margin: 0;
  padding: 15px 0px;
  width: 100%;
}
.navbar-scroll li a {
  font-family: "Fira Sans", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
  padding-right: 20px;
}
.hamburger-scroll {
  margin: 0;
  padding: 0;
  transition: opacity 0.3s;
  display: inline-block;
  vertical-align: middle;
}
.hamburger-scroll:hover {
  cursor: pointer;
  opacity: 1;
}
.hamburger-scroll .line {
  width: 18px;
  height: 2px;
  background: rgb(236, 66, 66);
  margin: 2px auto;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
}
.hamburger-scroll .line:nth-child(1) {
  background-color: #363347;
}
.hamburger-scroll .line:nth-child(2) {
  background-color: #363347;
}
.hamburger-scroll .line:nth-child(3) {
  background-color: #363347;
}
.hamburger-scroll.isactive .line:nth-child(2) {
  opacity: 0;
}
.hamburger-scroll.isactive .line:nth-child(1) {
  transform: translateY(13px) rotate(45deg);
  background-color: #ffffff;
  opacity: 0;
}
.hamburger-scroll.isactive .line:nth-child(3) {
  transform: translateY(5px) rotate(-45deg);
  background-color: #ffffff;
  opacity: 0;
}
.navbar-scroll {
  transition: all 2s ease-in-out;
}
.navbar-scroll.active {
  display: block;
  animation: fade 0.5s;
  left: 0;
  position: fixed;
  top: 0;
  overflow: auto;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.25);
}
.hamburger-scroll.isactive {
  z-index: 999;
  position: absolute;
  top: 33px;
  left: 20%;
  /* background-image: url(/svgs/close-square.svg); */
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
}
@keyframes fade {
  from {
    transform: translateX(-200px);
    opacity: 0;
  }
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}
header.scroll-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(92, 97, 120, 0.2);
  padding-top: 20px;
  padding-bottom: 20px;
  z-index: 9;
}
.menusec {
  display: flex;
  justify-content: space-between;
  vertical-align: middle;
  align-items: center;
}
.rgtmenusec ul li a {
  font-family: "Fira Sans", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #363347;
  padding-right: 20px;
}
.rgtmenusec ul li a:last-child {
  padding-right: 0px;
}
.rgtmenusec ul li span {
  font-family: "Fira Sans", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: 16px;
  color: #5c6178;
  padding-right: 20px;
}
.rgtmenusec ul li a.btn-header {
  background: #9600bf;
  border-radius: 5px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #ffffff !important;
  padding: 10px 20px !important;
  cursor: pointer;
  margin-right:20px;
}
.logoscroll {
  display: inline-block;
  width: 250px;
  margin-left: 20px;
}
.with-scroll {
  /* display: none; */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.without-scroll {
  position: relative;
}
.without-scroll::after {
  content: "";
  /* background: linear-gradient(180deg, #d9d9d9 0%, rgba(217, 217, 217, 0) 100%); */
  opacity: 0.3;
  height: 75px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -75px;
}
.hide-header-scroll .without-scroll {
  display: none;
}
.sidebar-div h2 {
  position: relative;
  height: 25px;
  margin-top: 40px;
}
.sidebar-div h2::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  top: 50%;
}
.sidebar-div h2 span {
  position: absolute;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #5c6178;
  font-family: "Fira Sans", sans-serif;
  background-color: #ffffff;
  padding: 2px 5px 2px 2px;
  display: inline-block;
  vertical-align: top;
  left: 0;
  top: 0;
  z-index: 1;
}
.sidebar-div ul li a {
  font-family: "Fira Sans", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #363347;
}
.searchcolor ul li a {
  color: #9600bf;
}
.search-input {
  font-family: "Fira Sans", sans-serif;
  background: #ffffff;
  /*border: 1px solid #5C6178;*/
  border-radius: 5px;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #5c6178;
  opacity: 0.5;
  /*padding: 10px 12px;
  width: 260px;*/
  padding: 0;
  width: 0;
  border: 0px solid #5c6178;
  transition-duration: 0.3s;
}
.search-close-click {
  display: none;
}
.showsearch-input {
  padding: 10px 12px;
  width: 260px;
  border: 1px solid #5c6178;
  transition-duration: 0.3s;
  font-family: "Fira Sans", sans-serif;
  background: #ffffff;
  border-radius: 5px;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #5c6178;
  opacity: 0.5;
}
.hideimg {
  display: none;
}
.showimg {
  margin-left: 10px;
  display: inherit;
}
/*scroll header end*/
.top-header-sec ul {
  width: 33.33%;
}
.middle-ul-header {
  text-align: center;
}
.header .top-header-sec .right-ul-header li a,
.header .top-header-sec .right-ul-header li div {
  justify-content: end;
}
.header .top-header-sec .right-ul-header .ul-drpdown{
  width:100%;
  max-width: 360px;
}
.first-section .wrap-div h3 a {
  display: inline-block;
  vertical-align: top;
}
.first-section .wrap-div h3 a span {
  padding: 0;
  margin: 0;
}
.h3-flexdiv .divider-author {
  display: inline-block !important;
  vertical-align: top;
  padding-left: 10px !important;
  margin-left: 10px;
  border-left: 1px solid #5c6178;
  font-style: normal !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  line-height: 17px !important;
  color: #5c6178 !important;
  padding: 0px 0px 0px 10px !important;
}
.h3-flexdiv {
  vertical-align: middle;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.padding0 {
  padding: 0px !important;
}
.margin15 {
  margin-bottom: 10px;
}

/*trial popup start*/
.request-btn {
  background: #9600bf;
  border-radius: 5px;
  width: 100%;
  border: none;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  color: #ffffff;
  padding: 16px;
  font-family: "Fira Sans", sans-serif;
}
.request-btn.gold{
  background: #FFD23F;
}
.request-btn.gold:hover{
  background: #FFD23F !important;
  opacity:.9;
}
#exampleModal .form-control {
  opacity: 0.5;
  border: 1px solid rgba(92, 97, 120, 0.5);
  border-radius: 5px;
  min-height: 60px;
}
#exampleModal .form-label {
  color: #5c6178 !important;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 5px;
}
#exampleModal .form-label span {
  color: #f53246 !important;
}
#exampleModal .modal-body {
  padding: 40px 50px;
}
h5.modal-title {
  font-style: normal;
  font-weight: 800;
  font-size: 36px;
  line-height: 40px;
  color: #363347;
}
#exampleModal h5 span {
  float: right;
  cursor: pointer;
}
#exampleModal h5 + p {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #5c6178;
  padding-top: 10px;
}
#exampleModal .mb-3 {
  margin-bottom: 30px !important;
}
.form-para {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  color: #5c6178;
  opacity: 0.7;
  padding-top: 15px;
  padding-bottom: 0;
  margin-bottom: 0;
}
.gold .form-para a{
  color:#FFD23F;
}
.form-para a {
  color: #9600bf;
}
#exampleModal .modal-content {
  min-width: 750px;
}
.display-popup {
  display: block;
}
/*trial popup end*/
.btn-header-mobile {
  font-family: "Fira Sans", sans-serif;
  background: #9600bf;
  border-radius: 3px;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
  color: #ffffff;
  padding: 10px 12px;
  float: right;
  margin-right: 17px;
  cursor: pointer;
}
.header-between-view {
  display: none;
}
.hidden-space {
  visibility: hidden;
  /* display: none; */
}

/* algolia search */
.algolia-search-section {
  width: 50%;
  margin: 0 auto;
  height: 60px;
  background: #ffffff;
  border: 1px solid #a7b2e3;
  box-shadow: 0px 4px 10px rgb(0 0 0 / 5%);
  border-radius: 5px;
  z-index: 1;
  position: relative;
}
.ais-SearchBox {
  align-items: center;
  vertical-align: middle;
  height: 75px;
  border-radius: 5px;
  width: 100%;
}
.ais-SearchBox-form {
  height: 100%;
  vertical-align: middle;
  padding-left: 10px;
}
/* .ais-SearchBox-form input {
  border: none;
  width: 90%;
  font-family: "Fira Sans", sans-serif;

  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #5c6178;
  opacity: 0.6;
} */
.ais-SearchBox-form input.form-control:focus {
  border-color: transparent;
  box-shadow: none;
}
.ais-SearchBox-form button,
.ais-SearchBox-form button:hover,
.ais-SearchBox-form button:focus {
  height: 100%;
  width: 10%;
  border: none;
  background: transparent;
}

.search-list-container {
  background-color: white;
  text-align: left;
  color: #000;
  border-radius: 5px;
  border-top: none;
  width: 100%;
  margin: 0 auto;
  z-index: 5;
  box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 20%),
    0px 8px 10px 1px rgb(0 0 0 / 14%), 0px 3px 14px 2px rgb(0 0 0 / 12%);
}

.c_search-results {
  color: #000;
  line-height: 1.5em;
  font-size: 14px;
  padding-bottom: 10px;
  text-transform: capitalize;
}

.c_search-results h5 {
  font-family: "Montserrat", sans-serif;
  padding: 8px 10px;
  background: #f5f7fa;
  margin-bottom: 10px;
  color: #363347;
  font-weight: 500;
}

.c_search-hit span {
  font-family: "Montserrat", sans-serif !important;
  color: black !important;
}

.c_search-hit {
  font-family: "Montserrat", sans-serif;
  padding: 3px 10px;
  cursor: pointer;
  display: flex;
}
.c_search-hit:hover {
  color: #000;
  background-color: #dbe0e8;
}

.c_search-hit-details {
  margin-left: auto;
  text-transform: capitalize;
  font-size: 11px !important;
  font-weight: 300 !important;
}
.hidden {
  display: none !important;
  visibility: hidden !important;
}
.search-list-container {
  max-height: 400px;
  overflow: auto;
}
.c_search-results .unit-type_badge {
  margin-left: 8px;
  border-radius: 10px;
  display: inline-block;
  padding: 2px 8px;
  font-size: 10px;
  color: #fff !important;
  background: #a3adc2 !important;
  line-height: 13px;
  font-weight: 300;
  vertical-align: top;
}
a#search {
  position: relative;
}
header .algolia-search-section {
  position: absolute;
  width: 500px;
  right: 0px;
  top: 50px;

  background: #fff;
  border-radius: 3px 3px 3px 3px;
  z-index: 9999;
  box-shadow: 0 3px 10px 0 rgb(0 0 0 / 20%);
  line-height: inherit;
  border: none;
}
header.scroll-header.with-scroll .algolia-search-section .c_search-hit {
  display: block;
  font-family: "Montserrat", sans-serif;
  color: #000;
  font-size: 12px;
}
header.scroll-header.with-scroll .algolia-search-section span.c_bldg {
  display: block;
  font-family: "Montserrat", sans-serif;
  color: #000;
}
header.scroll-header.with-scroll
  .algolia-search-section
  button.ais-SearchBox-submit {
  /* top: -7px;
  position: relative; */
}
header.scroll-header.with-scroll
  .algolia-search-section
  span.c_search-hit-details {
  display: block;
}
.relative-box {
  position: "relative";
}

/* landing page */
section.landing-page {
  padding: 75px 0px;
}
.banner-left-section h1 {
  font-style: normal;
  font-weight: 800;
  font-size: 70px;
  line-height: 80px;
  color: #363347;
  font-family: "Montserrat", sans-serif;
}
.banner-left-section h2 {
  font-style: normal;
  font-weight: 800;
  font-size: 60px;
  line-height: 80px;
  color: #363347;
  font-family: "Montserrat", sans-serif;
}
.banner-left-section p {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 44px;
  color: #363347;
  margin: 0;
  padding: 30px 0px 0px;
}
.banner-left-section .startbtn {
  background: #9600bf;
  border-radius: 5px;
  padding: 15px 30px;
  margin: 30px 0px 0px;
  font-family: "Fira Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
}
.notediv {
  text-align: center;
  /* padding-top: 112px; */
}
.notediv p {
  padding-top: 50px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  margin-top: 70px;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 34px;
  color: #363347;
}
.notediv p span {
  color: #9600bf;
}
.condo-section {
  width: 98%;
  margin: 0 auto;
  /* background-color: rgba(150, 0, 191, 0.08); */
  background: #F5F7FA;
  padding: 96px 0px;
}
.condo-section h2 {
  font-style: normal;
  font-weight: 800;
  font-size: 42px;
  line-height: 58px;
  text-transform: capitalize;
  color: #363347;
}
.banner-left-section,
section.condo-section h2 {
  position: relative;
}
section.condo-section h2 span {
  position: absolute;
  right: 28px;
  bottom: 0px;
  font-size: 16px;
  display: inline-block;
  vertical-align: top;
  line-height: 1;
  font-weight: 400;
  color: #5c6178;
}

section.condo-section h2 span:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  background-color: #5c6178;
  left: -25px;
  top: 7px;
}
section.condo-section h2 span::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  background-color: #000;
  right: -25px;
  top: 7px;
}
.white-card {
  background: #ffffff;
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  padding: 30px 33px;
  margin-top: 70px;
  width:100%;
}
.white-card p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 19px;
  line-height: 32px;
  color: #5c6178;
}
.white-card p span {
  color: #363347;
  font-weight: 700;
}
.white-card img {
  margin-top: 30px;
}
.get-section {
  padding: 120px 0px 0px 0px;
}
.get-section-about {
  width: 60%;
  margin: auto;
}
.get-section-about h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  text-align: center;
  text-transform: capitalize;
  color: #363347;
}
.get-section-about p {
  padding-top: 20px;
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #5c6178;
}

.margin-top-section {
  margin-top: 120px;
}

.get-section h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  text-align: center;
  text-transform: capitalize;
  color: #363347;
  font-family: "Montserrat", sans-serif;
}
.get-section p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: #5c6178;
  padding: 30px 0px 0px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}
.get-section h3 {
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
  color: #363347;
  font-family: "Montserrat", sans-serif;
}

.get-section h5 {
  margin-top: 25px;
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  color: #363347;
  font-family: "Montserrat", sans-serif;
}

.get-section .row p {
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 40px;
  color: #5c6178;
  font-family: "Montserrat", sans-serif;
  text-align: left;
}

.get-section a {
  margin-top: 42px;
  font-weight: 700;
  font-size: 20px;
  line-height: 40px;
  color: #9600bf;
}
.get-section .row {
  display: flex;
  align-items: center;
  vertical-align: middle;
}
.get-section .row:nth-child(even) {
  flex-direction: row-reverse;
}
.get-section .row:nth-child(odd) {
  flex-direction: row;
}

.feature-section {
  padding: 0px;
}
.feature-section-about {
  width: 60%;
  margin: auto;
}
.feature-section-about h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  text-align: center;
  text-transform: capitalize;
  color: #363347;
}
.feature-section-about p {
  padding-top: 20px;
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #5c6178;
}

.feature-section h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  text-align: center;
  text-transform: capitalize;
  color: #363347;
  font-family: "Montserrat", sans-serif;
}
.feature-section p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: #5c6178;
  padding: 30px 0px 0px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}
.feature-section h3 {
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
  color: #363347;
  font-family: "Montserrat", sans-serif;
}

.feature-section h5 {
  margin-top: 25px;
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  color: #363347;
  font-family: "Montserrat", sans-serif;
}

.feature-section .row p {
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 40px;
  color: #5c6178;
  font-family: "Montserrat", sans-serif;
  text-align: left;
  margin-bottom: 20px;
}

.feature-section a {
  margin-top: 42px;
  font-weight: 700;
  font-size: 20px;
  line-height: 40px;
  color: #9600bf;
}
.feature-section .row {
  display: flex;
  align-items: center;
  vertical-align: middle;
  /* margin: 0px 20px; */
}
/* .feature-section .row:nth-child(even) {
  flex-direction: row-reverse;
}
.feature-section .row:nth-child(odd) {
  flex-direction: row;
}
.feature-section .row:nth-child(even) .feature-padding {
  padding-left: 90px;
}
.feature-section .row:nth-child(odd) .feature-padding {
  padding-right: 90px;
} */
.feature-section-group-1 .row:nth-child(even),
.feature-section-group-2 .row:nth-child(even) {
  flex-direction: row-reverse;
}
.feature-section-group-1 .row:nth-child(odd),
.feature-section-group-2 .row:nth-child(odd) {
  flex-direction: row;
}

.sample-section {
  padding: 80px 0px 0px;
}
.sample-section h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 54px;
  line-height: 60px;
  text-align: center;
  color: #363347;
}
.sample-section h2 span {
  color: #9600bf;
}
.sample-bg {
  background-color: rgba(163, 173, 194, 0.1);
  padding-top: 70px;
  padding-bottom: 70px;
  width: 98%;
  margin: 0 auto;
}
.sample-heading {
  width: 80%;
  margin: 0 auto;
}
.sample-heading .sample-btn {
  width: 200px;
  margin: 0 auto;
  display: block;
  margin-top: 60px;
  align-items: center;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #ffffff;
  border: none;
  padding: 22px 38px;

  background: #9600bf;
  border-radius: 5px;
}

.trial-section {
  padding: 80px 0px;
}
.trial-bg {
  background-color: #5c6178;
  padding-top: 70px;
  padding-bottom: 70px;
  width: 98%;
  margin: 0 auto;
}
.trial-heading {
  width: 80%;
  margin: 0 auto;
}
.trial-heading h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 54px;
  line-height: 60px;
  text-align: center;
  color: #ffffff;
}
.trial-heading .trial-btn {
  width: auto;
  margin: 0 auto;
  display: block;
  margin-top: 30px;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  text-transform: uppercase;
  color: #ffffff;
  padding: 18px 34px;
  border-radius: 5px;
  background-color: #9600bf;
  border: none;
}

.header .top-header-sec .right-ul-header li a .dropdown-item {
  text-transform: none;
  display: block;
}
.header .top-header-sec .right-ul-header li a .dropdown-item span {
  text-transform: none;
  display: block;
  font-family: "Fira Sans", sans-serif;
}

.right-ul-header .navbar .navbar-nav .nav-link {
  padding: 0px;
}
.profile-login-dropddown {
  margin-left: 17px !important;
}
.logout-login-dropddown {
  margin-left: 13px !important;
}
/* .rgtmenusec ul li {
  display: inline-block;
  padding: 0px 2px;
} */
/* .rgtmenusec ul ul {
  left: -59px;
  right: auto;
} */
.visibility-hidden {
  visibility: hidden;
}
.countsection {
}
.countsection ul {
  position: relative;
  text-align: center;
}
.countsection ul::before {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  height: 1px;
  width: 20%;
  background-color: rgba(92, 97, 120, 0.2);
}
.countsection ul::after {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  height: 1px;
  width: 20%;
  background-color: rgba(92, 97, 120, 0.2);
}
.countsection ul li {
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 50px;
  color: #fb9501;

  /* color: #55d5c9; */
  display: inline-block;
  text-align: center;
  padding: -1px 50px;
  vertical-align: top;
  background-color: #ffffff;
  z-index: 1;
  position: relative;
}
.countsection ul li span {
  width: 99%;
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  color: #5c6178;
  padding-top: 10px;
}
.position-relative-only {
  position: relative !important;
}
.display-none-only {
  display: none !important;
}
.mobile-headermnu {
  display: flex;
  align-items: center;
  float: right;
}
.mobile-headermnu .btn-header-mobile {
  float: none;
}
.ul-drpdown {
  display: inline-block;
  vertical-align: top;
}
.right-ul-header {
  text-align: right;
}
section.aboutus-product {
  padding-top: 120px;
  width: 95%;
  margin: 0 auto;
}
.aboutus-product h4 {
  padding-top: 40px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
  text-align: center;
  text-transform: uppercase;
}
.aboutus-product p {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 40px;
  text-align: center;
}

/*responsive*/
@media only screen and (min-width: 1920px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1440px;
  }
  .image-wrap .img-fluid {
    width: 100%;
  }
  .gap-right {
    padding-right: 80px;
  }
}

@media only screen and (max-width: 1400px) {
  .container,
  .container-fluid {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 1286px;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
    max-width: 1286px;
  }

  .navigation ul li a {
    font-size: 15px;
  }
  .top-header ul li a {
    font-size: 12px;
  }
  .top-header ul li a {
    padding: 10px 16px;
  }
  .first-section .author-details {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .first-section .author-details span {
    font-size: 11px;
  }
  .first-section .card-sections h5 {
    font-size: 20px;
  }
  .first-section .wrap-div h3 {
    font-size: 28px;
    line-height: 30px;
  }
  .first-section .wrap-div h3 span {
    font-size: 14px;
    padding-bottom: 5px;
  }
  .third-section .content-section h3 {
    font-size: 25px;
    line-height: 25px;
  }
  .third-section .content-section p {
    font-size: 15px;
    line-height: 20px;
  }
  .third-section .content-section h3 span {
    font-size: 15px;
  }
  .third-section .author-details {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 5px;
  }
  .third-section .card-sections h5 {
    font-size: 17px;
    line-height: 20px;
  }
  .cards-line {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .class-categori h5 {
    font-size: 23px;
    line-height: 25px;
  }
  .class-categori p {
    font-size: 15px;
    line-height: 26px;
    padding-top: 5px;
  }
  .divider-sections h4 {
    font-size: 18px;
    line-height: 20px;
  }
  .class-categori .tags {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 10px;
  }
  .class-categori {
    margin-top: 20px;
    padding-bottom: 20px;
  }
  .subscribe-footer h2 {
    font-size: 40px;
    line-height: 50px;
  }
  .subscribe-heading {
    width: 70%;
  }
  .subscribe-heading p {
    font-size: 14px;
    line-height: 20px;
  }
  .checkbox-section p {
    font-size: 13px !important;
  }
  .checkbox-section b {
    font-size: 15px;
  }
  .cbx span:first-child {
    top: 10px;
    width: 20px;
    height: 20px;
  }
  .cbx span:first-child svg {
    top: 1px;
    left: 0;
  }
  .copyright-section ul li a {
    font-size: 12px;
  }
  .categori-consec h2 {
    font-size: 19px;
  }
  .categori-consec p {
    font-size: 13px;
    line-height: 18px;
  }
  .category-section h1 {
    font-size: 40px;
  }
  .category-section p {
    font-size: 14px;
  }
  .categori-centercont h2 {
    font-size: 32px;
    line-height: 36px;
  }
  .categori-centercont p {
    font-size: 16px;
    line-height: 23px;
  }
  .categori-page h5 {
    font-size: 25px;
    line-height: 26px;
    margin-top: 10px;
  }
  .categori-page p {
    font-size: 14px;
    line-height: 20px;
    padding-top: 10px;
  }
  .categori-page .author-details {
    font-size: 14px;
  }
  .mobile-header ul li a {
    font-size: 16px;
  }
  .checked-area {
    padding: 5px;
  }
  .readpreview-btn {
    margin: 10px 10px 0px 0px;
  }
  .checked-area label.cbx {
    padding-left: 20px;
  }
  .newsletter-page h1 {
    font-size: 30px;
  }
  .newsletter-page p {
    font-size: 14px;
    line-height: 14px;
  }
  .newsletter-select .cbx span:first-child {
    top: 6px;
  }

  /*article page*/
  .article-content h1 span {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
  }
  .article-content h1 {
    font-weight: 800;
    font-size: 36px;
    line-height: 40px;
  }
  .time-ul li {
    font-weight: 500;
    font-size: 14px;
    line-height: 36px;
    color: #5c6178;
  }
  .time-ul li:first-child {
    color: #9600bf;
    font-weight: 500;
    font-size: 14px;
    line-height: 36px;
  }
  .content-ul li {
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
  }
  .article-content .content-sec p {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
  }
  .related-section {
    padding-right: 0;
  }
  /*modal*/
  #exampleModal h5 {
    font-size: 25px;
    line-height: 32px;
  }
  #exampleModal h5 + p {
    font-size: 15px;
    padding-top: 10px;
  }
  #exampleModal .form-label {
    font-size: 12px;
  }
  #exampleModal .form-control {
    min-height: 50px;
  }
  #exampleModal .mb-3 {
    margin-bottom: 15px !important;
  }
  .request-btn {
    font-size: 15px;
    font-weight: 400;
  }
  #exampleModal .modal-body {
    padding: 30px 40px;
  }
  #exampleModal .modal-dialog {
    max-width: 600px;
  }
  #exampleModal .modal-content {
    min-width: 600px;
  }
  .form-para {
    font-size: 11px;
  }
}

@media only screen and (max-width: 1300px) {
  .gap-right {
    padding-right: 50px;
  }
  .first-section .card-sections .row {
    margin-bottom: 15px;
  }
  .first-section .wrap-div h3 {
    font-size: 36px;
    line-height: 40px;
  }
  .first-section .wrap-div p {
    font-size: 18px;
    line-height: 26px;
  }
  .first-section .card-sections h5 {
    font-size: 22px;
    line-height: 24px;
  }
  .first-section .author-details {
    font-size: 13px;
    line-height: 18px;
  }
  .first-section .author-details span {
    font-size: 12px;
    line-height: 17px;
  }
  .third-section .content-section h3 span {
    font-size: 18px;
    line-height: 22px;
  }
  .third-section .content-section h3 {
    font-size: 36px;
    line-height: 40px;
  }
  .third-section .content-section p {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 0;
    margin-top: 10px;
  }
  .third-section .author-details {
    font-size: 18px;
    line-height: 22px;
  }
  .third-section .card-sections h5 {
    font-size: 22px;
    line-height: 24px;
  }
  .class-categori .tags {
    font-size: 20px;
    line-height: 24px;
  }
  .class-categori h5 {
    font-size: 32px;
    line-height: 36px;
  }
  .class-categori p {
    font-size: 18px;
    line-height: 26px;
  }
  .divider-sections h4 {
    font-size: 22px;
    line-height: 26px;
  }
  .class-categori p {
    font-size: 18px;
    line-height: 26px;
  }
  .subscribe-footer h2 {
    font-size: 54px;
    line-height: 60px;
  }
  .subscribe-heading {
    width: 90%;
  }
  .subscribe-heading p {
    font-size: 18px;
    line-height: 26px;
  }
  .checkbox-section b {
    font-size: 18px;
    line-height: 26px;
  }
  .checkbox-section p {
    font-size: 18px !important;
    line-height: 26px;
    margin-bottom: 0;
  }
  .copyright-section ul li a {
    font-size: 14px;
    line-height: 17px;
  }
}

@media only screen and (max-width: 1180px) {
  .banner-left-section br {
    display: none;
  }
  section.landing-page {
    /* padding-top: 20px; */
    padding-bottom: 60px;
  }
  .landing-page .col-lg-5,
  .landing-page .col-lg-7 {
    width: 100%;
  }
  .landing-page .banner-left-section {
    text-align: center;
  }
  .landing-page .banner-left-section button {
    display: block;
    width: auto;
    margin: 30px auto;
  }
  .landing-page .notediv {
    /* padding-top: 62px; */
  }
  .condo-section {
    padding: 50px 0px;
  }
  .condo-section h2 {
    font-weight: 700;
    font-size: 42px;
    line-height: 54px;
  }
  .condo-section .white-card {
    margin-top: 50px;
  }
  .condo-section .white-card p {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
  }
  .get-section {
    padding: 60px 0px 0px 0px;
  }
  .get-section h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 34px;
  }
  .get-section p {
    font-size: 15px;
    line-height: 24px;
    padding: 20px 0px 0px;
  }
  .margin-top-section {
    margin-top: 80px;
  }
  .feature-section h3 {
    font-size: 44px;
    line-height: 50px;
  }
  .feature-section h5 {
    margin-top: 20px;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
  }
  .feature-section .row p {
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
  }
  .feature-section a {
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
  }
  .sample-section {
    padding: 70px 0px 0px;
  }
  .sample-section h2 {
    font-size: 42px;
    line-height: 50px;
  }
  .sample-heading .sample-btn {
    margin-top: 40px;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    padding: 20px 32px;
    border-radius: 3px;
  }
  .trial-section {
    padding: 50px 0px;
  }
  .trial-bg {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .trial-heading h2 {
    font-size: 42px;
    line-height: 50px;
  }
  .trial-heading .trial-btn {
    margin-top: 24px;
    font-size: 18px;
    line-height: 24px;
    padding: 15px 30px;
    border-radius: 4px;
  }
  .lead-img {
    height: auto;
  }
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-fluid {
    max-width: 95%;
  }
  .col-full-width {
    flex: 0 0 auto;
    width: 100%;
  }
  .first-section .wrap-div .image-wrap {
    /* height: 434px; */
    overflow: hidden;
    position: relative;
  }
  .first-section .wrap-div .image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }
  .first-section .card-sections .image-wrap {
    text-align: right;
  }
  .first-section .card-sections .row {
    margin-bottom: 30px;
  }
  .first-section .author-details {
    font-size: 18px;
    line-height: 18px;
  }
  .first-section .author-details span {
    font-size: 14px;
    line-height: 17px;
  }
  .col-margin-top {
    margin-top: 30px;
  }
  .mobile-hide-add {
    display: none;
  }
  .mobile-show-add {
    display: block;
  }
  .bottom-ad img {
    width: 100%;
  }
  .right-side-add {
    width: 33%;
    display: inline-block;
    vertical-align: top;
    margin-top: 30px;
    margin-bottom: 0;
    padding: 0px 15px;
  }
  .right-side-add img {
    width: 100%;
  }
  .img-right {
    text-align: right;
  }
  .cards-line {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .third-section .content-section h3 {
    font-size: 35px;
  }

  /*article page*/
  .hidesection {
    display: none;
  }
  .visiblesection {
    display: block;
  }
  .section-fullview {
    width: 100%;
  }
  .banner-search-section {
    width: 80%;
  }
  .algolia-search-section {
    width: 50%;
  }

  /*categori page*/
  .catefull-width {
    width: 100%;
  }
  .ipad-hide {
    display: none;
  }
  .ipad-show {
    display: block;
    width: 100%;
    margin-top: 30px;
  }
  .col-ipad-3 {
    width: 40%;
  }
  .col-ipad-5 {
    width: 59.666667%;
  }
  .subscribe-heading {
    width: 100%;
  }
}

@media only screen and (min-width: 1181px) and (max-width: 1919px) {
  .feature-section h3 {
    font-size: 50px;
    line-height: 60px;
  }
  .feature-section h5 {
    font-size: 28px;
    line-height: 40px;
  }
  .home-product .row h3 {
    font-size: 47px;
    line-height: 55px;
  }
  .banner-left-section h1 {
    font-weight: 700;
    font-size: 65px;
    line-height: 75px;
  }
  .banner-left-section h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 55px;
    line-height: 65px;
  }
  .banner-left-section p {
    font-size: 25px;
    line-height: 40px;
  }
  .banner-left-section .startbtn {
    margin: 24px 0px 0px;
    font-size: 18px;
    line-height: 16px;
  }
  .landing-page .padding-top {
    padding-top: 26px;
  }
}
/* tablet */

@media only screen and (max-width: 991px) {
  .countsection ul::before,
  .countsection ul::after {
    display: none;
  }
  .countsection ul li {
    padding: 0px 20px;
    font-size: 30px;
  }
  .countsection ul li span {
    font-size: 18px;
    line-height: 30px;
    color: #5c6178;
  }
  .gray-banner {
    padding: 80px 0px 0px;
  }
  section.landing-page {
    padding: 80px 0px 25px;
  }
  .landing-page .banner-left-section h1 {
    font-weight: 700;
    font-size: 50px;
    line-height: 50px;
  }
  .landing-page .banner-left-section h2 {
    font-weight: 600;
    font-size: 40px;
    line-height: 70px;
  }
  .landing-page .banner-left-section p {
    font-weight: 500;
    font-size: 18px;
    line-height: 36px;
  }
  .landing-page .banner-left-section button {
    display: block;
    width: auto;
    margin: 30px auto;
    font-size: 18px;
  }
  .landing-page .notediv {
    /* padding-top: 42px; */
  }
  .landing-page .notediv p {
    font-size: 18px;
    line-height: 24px;
  }
  .feature-section .row {
    display: flex;
    align-items: center;
    vertical-align: middle;
    margin: 0px 60px;
  }
  .condo-section .white-card img {
    margin-top: 20px;
  }
  .condo-section.mc-samples .white-card{
    width:100%;
    margin-top:10px;
  }
  .condo-section.mc-samples h2 span{
    position: relative;
    bottom: 0;
    text-align: center;
    left: 50%;
    right: 50%;
    /* width: 100%; */
    transform: translate(-50%, -50%);
    margin-top: 20px;
  }
  .condo-section.mc-samples .white-card .para{
    padding-bottom:0;
  }
  .condo-section.mc-samples .white-card p{
    text-align: center;
  }
  .condo-section.mc-samples .white-card img{
    position: inherit;
    height: 200px;
    width: 100%;
  }
  
  .get-section {
    padding: 40px 0px 0px 0px;
  }
  .get-section h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 30px;
  }
  .get-section p {
    font-size: 15px;
    line-height: 20px;
    padding: 20px 0px 0px;
  }
  .margin-top-section {
    margin-top: 70px;
  }
  .feature-section h3 {
    font-size: 34px;
    line-height: 40px;
  }

  .feature-section h5 {
    margin-top: 18px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
  }

  .feature-section .row p {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
  }
  .feature-section a {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
  }
  .feature-section .row .feature-img {
    display: block;
    width: auto;
    margin: auto;
  }
  .sample-section {
    padding: 50px 0px 0px;
  }
  .sample-bg {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .sample-section h2 {
    font-size: 36px;
    line-height: 40px;
  }
  .sample-heading .sample-btn {
    margin-top: 30px;
    font-weight: 600;
    font-size: 13px;
    line-height: 15px;
    padding: 18px 28px;
    border-radius: 3px;
  }
  .trial-section {
    padding: 30px 0px 0px 0px;
  }
  .trial-bg {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .trial-heading h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .trial-heading .trial-btn {
    margin-top: 18px;
    font-size: 16px;
    line-height: 20px;
    padding: 12px 24px;
    border-radius: 3px;
  }
  .article-section {
    padding-top: 30px;
  }
  .c_search-hit,
  .c_search-hit .c_bldg,
  .c_search-hit-details {
    display: block;
  }
  .with-scroll {
    display: none;
  }
  .gray-banner h3 {
    text-align: left;
    width: 100%;
  }
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-fluid {
    max-width: 100%;
    width: 100%;
  }
  .gray-banner .container {
    width: 70%;
  }
  .banner-search-section {
    width: 100%;
  }
  .algolia-search-section {
    width: 100%;
  }
  .first-section {
    padding: 30px 0px 0px;
  }
  .banner-search input,
  .ais-SearchBox-form input {
    font-size: 16px;
    /* padding: 15px; */
  }
  .first-section .wrap-div h3 span {
    padding-bottom: 26px;
  }
  .third-section .wrap-div .image-wrap img {
    width: 100%;
  }
  .third-section .wrap-div .content-section {
    margin-top: 30px;
  }
  .third-section .content-section h3 span {
    padding-bottom: 26px;
  }
  .margin-tp {
    margin-top: 30px;
  }
  .fourth-section .img-right {
    text-align: center;
    width: 100%;
    margin-top: 30px;
  }
  .right-side-add {
    width: 100%;
    margin-top: 30px;
    padding: 0;
  }
  .fourth-section .img-right img {
    width: 100%;
  }
  .footercol-margin-top {
    margin-top: 30px;
  }
  .related-section {
    padding-right: 0;
    padding-left: 0;
  }
  .left-artical-section {
    padding-left: 0;
  }
  .lft-social {
    display: none;
  }
  .for-mobile {
    display: block;
    position: inherit;
  }
  .lft-social ul li {
    display: inline-block;
    vertical-align: top;
    margin-bottom: 15px;
    margin-top: 15px;
    margin-right: 15px;
  }
  .lft-social ul li:last-child {
    margin-right: 0;
  }
  .mobile-header {
    display: block;
    height: 62px;
    line-height: 38px;
    position: fixed;
    top: 0px;
    width: 100%;
    background-color: white;
    border-bottom: 1px solid rgba(92, 97, 120, 0.2);
    z-index: 9;
  }
  .desktop-header {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .home-product .feature-img {
    position: relative !important;
    top: auto !important;
  }
  .mobile-menusec {
    vertical-align: middle;
  }
  .countsection ul li {
    padding: 15px;
    display: block;
  }
  .ais-SearchBox-form {
    padding-left: 10px;
    padding-right: 10px;
  }
  .algolia-search-section {
    height: 50px;
  }
  .ais-SearchBox-form {
    height: 80%;
  }
  .banner-search-section,
  .banner-search,
  .banner-search input,
  .ais-SearchBox-form input {
    height: 40px;
  }
  .gray-banner {
    /* padding: 30px 0px 0px; */
  }
  .gray-banner .container {
    width: 75%;
  }
  .banner-search button,
  .banner-search button:hover,
  .banner-search button:focus {
    width: 15%;
  }
  #exampleModal .modal-dialog {
    max-width: 100%;
  }
  #exampleModal .modal-content {
    min-width: 95%;
  }
  #exampleModal .modal-body {
    padding: 20px 20px;
  }
  .gap-right {
    padding-right: 30px;
  }
  .first-section .wrap-div .image-wrap {
    /* height: 158px; */
  }
  .first-section .card-sections .image-wrap {
    height: 100%;
  }
  .first-section .card-sections .image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }
  .first-section .author-details span {
    font-size: 12px;
    line-height: 15px;
  }
  .subscribe-heading {
    width: 100%;
    /* background-color: #5c6178; */
    text-align: left;
    padding: 30px;
    border-radius: 5px;
  }
  .subscribe-footer h2 {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    font-size: 34px;
    line-height: 40px;
    text-align: center;
    color: #363347;
    /* text-align: left; */
  }
  .subscribe-footer h2 span {
    color: #9600bf;
  }
  .subscribe-footer h2 br {
    display: none;
  }
  .subscribe-heading p {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
    opacity: 0.7;
    text-align: left;
    padding: 15px 0px 0px;
    margin: 0;
  }
  .checkbox-section b {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: #363347;
  }
  .cbx span:first-child {
    top: 12px;
  }
  .subsform {
    display: block;
    width: 100%;
    margin: 15px auto 0;
  }
  .subsform input {
    background: #ffffff;
    border: 1px solid #b4bfd8;
    border-radius: 5px;
    height: 62px;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    color: #5c6178;
  }
  .subsform button {
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 5px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    color: #363347;
    width: 100%;
    margin-top: 15px;
  }
  .minimobile-show-add {
    display: block;
  }
  .mobile-hide-add,
  .mobile-show-add {
    display: none;
  }
  .subhide {
    display: none;
  }
  .subshow {
    display: block;
  }
  .subscribe-heading p {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    /* text-align: center; */
    color: #5c6178;
  }
  .gray-banner h1 {
    font-size: 18px;
  }

  /*article page*/
  .hide-img {
    display: none;
  }
  .visible-img {
    display: block;
  }
  .article-content h1 span {
    font-weight: 700;
    font-size: 18px;
    padding-bottom: 15px;
    line-height: 22px;
  }
  .article-content h1 {
    font-weight: 800;
    font-size: 36px;
    line-height: 40px;
  }
  .article-content hr {
    margin: 15px 0px;
  }
  .time-ul li {
    font-weight: 500;
    font-size: 14px;
    line-height: 36px;
  }
  .article-section + .subscribe-footer {
    padding: 0;
  }
  .left-article-width {
    width: 60%;
  }
  .right-article-width {
    width: 40%;
  }
  .full-article-width {
    width: 100%;
  }

  /*categori page*/
  .category-section h1 {
    font-weight: 800;
    font-size: 36px;
    line-height: 40px;
  }
  .category-section {
    padding: 30px 0px 0px;
  }
  .category-section p {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    padding-top: 15px;
  }
  .col-ipad-3 {
    width: 100%;
  }
  .categori-consec h2 {
    font-weight: 800;
    font-size: 36px;
    line-height: 40px;
  }
  .category-section p {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
  }
  .category-card {
    margin-top: 30px;
  }
  .col-ipad-5 {
    width: 100%;
    margin-top: 30px;
  }
  .mobile-showimg {
    display: block;
    margin-top: 30px;
  }
  .ipad-show,
  .ipad-hide {
    display: none;
  }
  .categori-page h5 {
    font-weight: 800;
    font-size: 32px;
    line-height: 36px;
  }
  .categori-page .author-details {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
  }
  .categori-page p {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
  }
}
/* mobile */
@media (min-width: 576px) {
  #exampleModal .modal-dialog {
    max-width: 750px;
  }
}
@media only screen and (max-width: 480px) {
  section.landing-page {
    padding: 60px 0px;
  }

  .landing-page .banner-left-section h1 {
    font-weight: 700;
    font-size: 36px;
    line-height: 130%;
  }
  .landing-page .banner-left-section h2 {
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
  }
  .landing-page .banner-left-section p {
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    padding:20px 0;
  }
  .landing-page .banner-left-section button {
    display: block;
    margin: 20px auto;
    
    border-radius: 3px;
  }
  .landing-page .notediv {
    /* padding-top: 26px; */
  }
  .landing-page .notediv p {
    font-size: 15px;
    line-height: 20px;
  }
  .condo-section {
    padding: 25px 0px;
  }

  .condo-section h2 {
    font-weight: 600;
    font-size: 22px;
    line-height: 34px;
  }

  .condo-section .white-card {
    margin-top: 25px;
  }

  .condo-section .white-card p {
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
  }
  .condo-section .white-card img {
    margin-top: 10px;
  }
  .get-section {
    padding: 25px 0px 0px 0px;
  }
  .get-section h2 {
    font-weight: 700;
    font-size: 22px;
    line-height: 34px;
  }
  .get-section p {
    font-size: 12px;
    line-height: 16px;
    padding: 12px 0px 0px;
  }
  .margin-top-section {
    margin-top: 40px;
  }
  .feature-section .row {
    margin: 0px 5px;
  }

  .feature-section h3 {
    font-size: 24px;
    line-height: 30px;
  }

  .feature-section h5 {
    margin-top: 12px;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
  }
  .feature-section .row p {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    padding: 15px 0px 0px;
  }

  .feature-section a {
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    padding-top: 15px;
  }
  .sample-section {
    padding: 40px 0px 0px;
  }
  .sample-bg {
    padding-top: 20px;
    padding-bottom: 28px;
  }

  .sample-section h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .sample-heading .sample-btn {
    margin-top: 20px;
    font-size: 13px;
    line-height: 13px;
    padding: 16px 25px;
    border-radius: 3px;
  }
  .trial-section {
    padding: 15px 0px 0px 0px;
  }
  .trial-bg {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .trial-heading h2 {
    font-size: 24px;
    line-height: 30px;
  }
  .trial-heading .trial-btn {
    margin-top: 16px;
    font-size: 14px;
    line-height: 16px;
    padding: 10px 20px;
    border-radius: 3px;
  }
  .banner-search input,
  .ais-SearchBox-form input {
    font-size: 15px;
  }
  .mobile-header a.navbar-brand {
    width: 150px;
    display: inline-block;
  }
  .gray-banner .container {
    width: 100%;
  }
}

/*  table & desktop header  */
@media only screen and (min-width: 992px) and (max-width: 1280px) {
  section.landing-page {
    padding: 100px 0px;
  }
  .banner-search-section {
    display: none;
  }
  .gray-banner {
    display: none;
  }

  .article-section {
    padding-top: 134px;
  }
  .algolia-search-section {
    /* display: none; */
  }
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-fluid {
    max-width: 100%;
    width: 100%;
  }
  .header-full-view {
    display: none;
  }
  /* .header-between-view {
    display: block;
  } */
  .header-full {
    display: none;
  }
  .first-section {
    padding: 100px 0px 0px;
  }
  .lead-img {
    height: 560px;
  }
  .rgtmenusec ul li a {
    padding-right: 10px;
    vertical-align: middle;
  }
  .rgtmenusec ul li span {
    vertical-align: middle;
    display: inline-block;
  }
  .display-none-only {
    display: block !important;
    background: #ffffff;
    border-bottom: 1px solid rgba(92, 97, 120, 0.2);
    padding-top: 20px;
    padding-bottom: 20px;
    z-index: 9;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
}

@media only screen and (min-width: 992px) {
  .feature-section-group-1 .row:nth-child(even) .feature-padding,
  .feature-section-group-2 .row:nth-child(even) .feature-padding {
    padding-left: 30px;
  }
  .feature-section-group-1 .row:nth-child(odd) .feature-padding,
  .feature-section-group-2 .row:nth-child(odd) .feature-padding {
    padding-right: 30px;
  }
}
/* Banner.css */
.banner-container {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  background: #FFF;
  color: #000;
  cursor: pointer;
  padding: 20px 10px;
  border-radius: 40px;
  font-weight: 600;
  text-transform: uppercase;
  top: 050px;
  border: 1px solid #780F9E;
  padding-right: 50px;
  left: 25%;
  top: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow:0px 8px 10px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}
.banner-container:hover{
  background:#9600BF;
  color:#FFF;
}
.banner-container.gold{
  border: 1px solid #ffd23f;
}
.banner-container.gold:hover{
  background:#ffd23f;
}
.banner-container.gold .cal-button{
 background:#ffd23f;
}
.play-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #9600BF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
}

.play-button::after {
  content: "";
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #ffffff;
  display: block;
  position: relative;
  left: 2px;
}

.banner-text {
  font-size: 1.3rem;
  padding-left: 80px;
  text-align: center;
}
.banner-sub-text{
  font-size:.8rem;
  font-weight:300;
  text-transform: initial;
 
}
/* Responsive compact header: keep Products nav on one line at 992-1300px */
@media only screen and (min-width: 992px) and (max-width: 1300px) {
  .rgtmenusec ul li {
    white-space: nowrap;
  }
  .rgtmenusec ul li a {
    font-size: 15px;
    padding-right: 12px !important;
  }
  .rgtmenusec ul li span {
    font-size: 13px;
    padding-right: 10px;
  }
  .rgtmenusec ul li a.btn-header {
    font-size: 13px;
    padding: 8px 12px !important;
    margin-right: 10px;
  }
  .logoscroll {
    width: 200px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1120px) {
  .rgtmenusec ul li span {
    display: none !important;
  }
  .rgtmenusec ul li a {
    font-size: 14px;
    padding-right: 10px !important;
  }
  .logoscroll {
    width: 170px;
  }
}

body {
  font-family: "Montserrat", sans-serif;
  /* background-color: #f5f5f5; */
}
ul {
  padding: 0;
  margin: 0;
}
li {
  padding: 0;
  margin: 0;
}
a,
a:hover,
a:focus {
  outline: none;
  text-decoration: none;
  color:#9600bf;
}
a{
  color:#9600bf;
}
p {
  padding: 0;
  margin: 0;
}
svg {
  shape-rendering: optimizeSpeed;
}
.form-control::placeholder {
  color: #a2a2a2;
}
:focus {
  outline: none !important;
  box-shadow: none !important;
}
.btn-hvr:hover {
  background-color: #5c1f7a !important;
}
.btn-hvr-outline:hover {
  background-color: #fcf7ff !important;
}

::-webkit-scrollbar {
  width: 6px;
}
input:focus::placeholder {
  color: transparent !important;
}
label.error {
  color: red !important;
  font-weight: 600 !important;
  font-size: 10px !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}
.fa,
.fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-weight: 900;
}

.mar-banner {
  padding: 100px 0px 160px 0px;
  background-image: url("/svgs/dotted.svg");
  position: relative;
  z-index: 1;
  padding-top: 20vh;
  background-size: contain;
  background-position: top center;
  background-repeat: repeat;
  height: calc(100vh - 140px);
}
.mar-banner:before {
  position: absolute;
  content: "";
  bottom: 0px;
  width: 100%;
  height: 280px;
  z-index: -1;
  pointer-events: none;
  background: -moz-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%,
    rgba(255, 255, 255, 1) 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%,
    rgba(255, 255, 255, 1) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%,
    rgba(255, 255, 255, 0) 100%
  );
}
.banner-shadow {
  position: absolute;
  bottom: 0px;
}
.mar-banner h1 {
  color: #363347;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 58px;
  line-height: 70px;
  text-align: center;
}
/* .mar-banner form {
  margin-top: 30px;
} */
.mar-banner input {
  background: #ffffff;
  border: 2px solid #000000;
  border-radius: 5px;
  padding: 23px 28px;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #36334799;
  font-family: "Fira Sans", sans-serif;
  width: 741px;
}
.mar-banner input::placeholder {
  color: #36334799;
}
.mar-contestarea {
  margin-top: 30px;
}
.mar-bannercontent {
  text-align: center;
}
.mar-contestarea p {
  display: flex;
  justify-content: center;

  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 34px;
  color: #363347;
}
.mar-contestarea p a {
  color: #363347;
}
.mar-contestarea p span {
  font-weight: 600;
  color: #9600bf;
  /* display: block; */
  padding-right: 10px;
}
section.mar-asseensection {
  /* padding: 80px 0px 111px 0px; */
  text-align: center;
  width: 95%;
  margin: 0 auto;
}
.mar-cardbox {
  background: #ffffff;
  border-radius: 3px;
  padding: 30px 33px;
  cursor: pointer;
  margin-top: 56px;
  text-align: center;
}
.mar-cardbox p {
  font-weight: 600;
  font-size: 19px;
  line-height: 32px;
  text-align: center;
  color: #5c6178;
  cursor: pointer;
}
.mar-cardbox p span {
  /* font-size: 22px; */
  color: #363347;
}
.mar-cardbox img {
  margin-top: 32px;
  cursor: pointer;
  /* width: 186px; */
}
.mar-asseensection h4 {
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 40px;
  color: #5c6178;
}

section.home-product {
  padding-top: 65px;
  /* padding: 140px 0px; */
  width: 95%;
  margin: 0 auto;
  /* cursor: pointer; */
}
/* section.home-product .container {
  padding-top: 45px;
} */
.home-product hr {
  width: 28%;
  margin: 0 auto;
  opacity: 0.1;
  border: 1px solid #363347;
}
.home-product h4{
  padding-top: 40px;

  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
  text-align: center;
  text-transform: uppercase;
  /* color: #9600bf; */
}

.aboutus h4{
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
  text-transform: uppercase;
}

.home-product p {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 40px;
  text-align: center;
}

.home-product .home-product-row {
  margin-bottom: 50px;
}
.home-product-row .row-position {
  cursor: pointer;
}
.home-product .row h3 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
  color: #363347;
}

.home-product .row h5 {
  padding-top: 25px;
  padding-bottom: 30px;
  /* padding: 25px 54px 50px 0px; */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 29px;
  line-height: 40px;
  color: #363347;
}
.home-product .row a.more {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 40px;
  color: #9600bf;
  text-transform: uppercase;
}
.home-product .hp-dash-launcher{
  font-size:13px;
  color: #9600bf;
  margin-top:0px;
  text-transform: uppercase;
}


.home-testimonials {
  margin-top:180px;
  padding:80px 0 ;
 background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='800' preserveAspectRatio='none' viewBox='0 0 1440 800'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1022%26quot%3b)' fill='none'%3e%3crect width='1440' height='800' x='0' y='0' fill='rgba(245%2c 247%2c 250%2c 0.49)'/%3e%3cpath d='M0%2c369.813C99.061%2c390.848%2c201.283%2c500.488%2c287.414%2c447.224C372.949%2c394.329%2c312.755%2c252.69%2c343.984%2c157.092C370.247%2c76.695%2c453.675%2c19.169%2c454.872%2c-65.401C456.125%2c-153.907%2c402.622%2c-232.169%2c350.506%2c-303.715C294.625%2c-380.429%2c238.739%2c-481.598%2c144.366%2c-491.667C48.17%2c-501.93%2c-18.608%2c-398.722%2c-103.398%2c-352.143C-166.824%2c-317.3%2c-239.123%2c-302.566%2c-291.246%2c-252.366C-346.68%2c-198.977%2c-378.475%2c-129.706%2c-408.109%2c-58.677C-446.622%2c33.634%2c-532.865%2c133.405%2c-489.869%2c223.715C-446.687%2c314.416%2c-314.654%2c311.109%2c-218.388%2c339.819C-146.518%2c361.253%2c-73.362%2c354.235%2c0%2c369.813' fill='rgba(225%2c 230%2c 238%2c 0.49)'/%3e%3cpath d='M1440 1099.3020000000001C1514.473 1097.103 1585.087 1159.1100000000001 1655.899 1135.946 1730.7930000000001 1111.446 1787.9180000000001 1045.504 1821.856 974.388 1856.0720000000001 902.688 1859.902 819.747 1843.932 741.923 1828.525 666.847 1782.537 604.569 1733.8229999999999 545.4010000000001 1683.99 484.874 1636.763 403.416 1558.757 395.549 1479.826 387.589 1427.318 476.81 1353.996 507.097 1291.505 532.9100000000001 1209.8600000000001 511.32 1162.2559999999999 559.333 1114.324 607.6759999999999 1118.741 685.05 1110.548 752.632 1102.531 818.765 1097.998 883.994 1115.09 948.381 1134.6779999999999 1022.172 1146.507 1116.779 1215.749 1148.942 1286.62 1181.8609999999999 1361.891 1101.608 1440 1099.3020000000001' fill='rgba(240%2c 242%2c 245%2c 0.49)'/%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1022'%3e%3crect width='1440' height='800' fill='white'/%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e");
 background-size:cover;
 
  .section-title{
    padding-top: 40px;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 40px;
    text-align: center;
    text-transform: uppercase;
  }
  .sub-header{
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 40px;
    text-align: center;
  }
 
}

.home-left-content {
  padding-bottom: 80px;
}

.home-product .block-1 .home-left-content {
  padding-bottom: 180px;
}
.home-product .block-1 {
  padding: 69px 0px 0px 35px;
  background: rgba(1, 149, 135, 0.1);
  margin-top: 60px;
  margin-bottom: 200px;
  border-radius: 5px;
}


.home-product .block-3 {
  padding: 69px 0px 0px 35px;
  background: rgba(237, 222, 245, 0.2);
  margin-top: 60px;
  margin-bottom: 200px;
  border-radius: 5px;
}
.home-product .block-3 .new-callout{
  background:#FFF;
  border:1px solid #B070CC;
}
.home-product .block-3 .banner-container{
  top:60%;
}
.office-hours-banner{
  display: flex;
  align-items: center;
  margin-top: 50px;
  background: #F5F7FA;
  padding: 30px;
  border-radius: 25px;
  column-gap:20px;
}
.office-hours-banner .banner-text{
  padding-left:20px;
}
section.office-hours-bottom-section{
  background: #F5F7FA;
  padding:20px 0 50px;
}
.office-hours-desc-section{
  
  .float-img{
    float:left;
    width:100%;
    max-width: 350px;
    margin:0px 20px 20px 0;
    border-radius: 5px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding:15px;
    img{
      border-radius: 5px;
    }
  }
}
.topic-section{
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='450' preserveAspectRatio='none' viewBox='0 0 1440 450'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1030%26quot%3b)' fill='none'%3e%3crect width='1440' height='450' x='0' y='0' fill='rgba(245%2c 247%2c 250%2c 1)'/%3e%3cpath d='M36 450L486 0L601.5 0L151.5 450z' fill='url(%26quot%3b%23SvgjsLinearGradient1031%26quot%3b)'/%3e%3cpath d='M320.8 450L770.8 0L1217.8 0L767.8 450z' fill='url(%26quot%3b%23SvgjsLinearGradient1031%26quot%3b)'/%3e%3cpath d='M641.6 450L1091.6 0L1394.6 0L944.6 450z' fill='url(%26quot%3b%23SvgjsLinearGradient1031%26quot%3b)'/%3e%3cpath d='M1428 450L978 0L928.5 0L1378.5 450z' fill='url(%26quot%3b%23SvgjsLinearGradient1032%26quot%3b)'/%3e%3cpath d='M1071.2 450L621.2 0L249.2 0L699.2 450z' fill='url(%26quot%3b%23SvgjsLinearGradient1032%26quot%3b)'/%3e%3cpath d='M755.4 450L305.4 0L21.9 0L471.9 450z' fill='url(%26quot%3b%23SvgjsLinearGradient1032%26quot%3b)'/%3e%3cpath d='M1089.5095035652387 450L1440 99.50950356523862L1440 450z' fill='url(%26quot%3b%23SvgjsLinearGradient1031%26quot%3b)'/%3e%3cpath d='M0 450L350.4904964347614 450L0 99.50950356523862z' fill='url(%26quot%3b%23SvgjsLinearGradient1032%26quot%3b)'/%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1030'%3e%3crect width='1440' height='450' fill='white'/%3e%3c/mask%3e%3clinearGradient x1='0%25' y1='100%25' x2='100%25' y2='0%25' id='SvgjsLinearGradient1031'%3e%3cstop stop-color='rgba(225%2c 230%2c 238%2c .6)' offset='0'/%3e%3cstop stop-opacity='0' stop-color='rgba(225%2c 230%2c 238%2c 1)' offset='0.66'/%3e%3c/linearGradient%3e%3clinearGradient x1='100%25' y1='100%25' x2='0%25' y2='0%25' id='SvgjsLinearGradient1032'%3e%3cstop stop-color='rgba(225%2c 230%2c 238%2c .7)' offset='0'/%3e%3cstop stop-opacity='0' stop-color='rgba(225%2c 230%2c 238%2c 1)' offset='0.66'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e");

  background-size:cover;
  padding:40px 40px 100px 40px;
  h4{
    font-weight: 700;
    font-size: 28px;
    line-height: 40px;
    text-transform: uppercase;
    margin-bottom:40px;
  }
  .office-hour-topics{
    .topic-item{
      border-left: 3px solid #780F9E;
      padding:20px;
      margin-bottom:20px;
    }
    h6{
      font-size:22px;
      font-weight:700;
    }
    p{
      padding-top:10px;
      font-family: "Montserrat";
      font-style: normal;
      font-weight: 400;
      font-size: 22px;
      line-height: 36px;
      color: #5c6178;
    }
  }
}
.cal-button{
  background:#9600BF;
  width:60px;
  height:60px;
  min-width: 60px;
  text-align: center;
  border-radius: 50%;
  display:inline-block;
  padding-top:17px;
}
.cal-button i{
  font-size:26px;
  color:#FFF;
}
.office-hours-banner h6{
  font-weight:600;
  font-size:1.4em;
  line-height: 1.5em;
}
section.office-hours-bottom-section .office-hours-banner h6{
  text-align: right;
  min-width: 60%;
}
.office-hours-banner .banner-container{
  position: relative;
  transform:none;
  left:auto;
  max-width: 300px;
}
.home-product .block-3 .home-left-content{
  padding-bottom:50px;
}
.home-product .block-2 {
  margin-top: 120px;
  padding: 69px 0px 0px 49px;
  background: rgba(255, 151, 0, 0.1);
  border-radius: 5px;
}
.home-product .feature-img {
  position: absolute;
  top: -60px;
}
.col-position {
  position: relative;
}

section.home-about {
  padding: 80px 0px;
  width: 95%;
  margin: 0 auto;
}
.home-about .row {
  padding: 80px 0px;
}

.home-about .row h2 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 34px;
  text-transform: uppercase;
  color: #9600bf;
  text-align: center;
}

.home-about .row .home-about-image {
  padding-top: 26px;
}
section.why-marketproof {
  margin: 80px 0px 50px 0px;
}
.why-marketproof {
  background-image: url(/svgs/Frame.svg);
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: bottom right;
}

.why-marketproof-container {
  display: flex;
  vertical-align: middle;
  align-items: center;
  /* justify-content: space-around; */
}
.why-marketproof-content {
  padding-bottom: 50px;

  /* padding-right: 70px; */
}
.why-marketproof-content h2 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  color: #363347;
  font-size: 30px;
  line-height: 37px;
  /* identical to box height */

  /* text color */

  color: #363347;
}

.why-marketproof-content h5 {
  margin: 33px 0px;
  /* margin-top: 33px; */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600 !important;
  font-size: 50px !important;
  line-height: 68px !important;
  color: #363347;
}
.why-marketproof-content h5 span {
  color: #9600bf;
}

.why-marketproof-content p {
  padding-bottom: 33px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 44px;
  color: #5c6178;
}
.why-marketproof-content a {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
  color: #9600bf;
  font-size: 31px;
}
.why-marketproof-image {
  display: flex;
  justify-content: center;
  /* width: 100%;
  margin: auto; */
}

.algolia-search-section {
  margin-top: 48px;
  border: none;
  box-shadow: none;
  width: 76%;
}
.algolia-search {
  background: #ffffff;
  /* border: 1px solid rgba(92, 97, 120, 0.6); */
  box-shadow: 0px 37px 60px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}
.ais-SearchBox-form {
  padding-left: 0px;
}
.mar-banner input {
  background: #ffffff;
  border: 1px solid rgba(92, 97, 120, 0.6);
  box-shadow: 0px 37px 60px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  width: 100%;
  height: 100%;

  /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #a7b2e3; */
}
.ais-SearchBox-form input {
  background: url("/svgs/location.svg") no-repeat scroll 30px 24px;
  background-size: 26px;
  padding-left: 70px;
}

header.scroll-header .algolia-search-section {
  top: 6px;
}
header.scroll-header .ais-SearchBox-form input {
  width: 100%;
  /* padding: 0px 10px; */
}
.algolia-scroll .ais-SearchBox-form input {
  background: url(/svgs/location.svg) no-repeat scroll 16px 16px;
  background-size: 25px;
  padding-left: 48px;
}
.algolia-scroll .ais-SearchBox {
  height: 60px;
}
.algolia-scroll .ais-SearchBox-form input {
  font-size: 17px;
}
.ais-SearchBox-submit {
  cursor: none;
  display: none;
}
/* aboutus  */
.aboutus {
  margin-top: 100px;
  margin-bottom:100px;
}

.aboutus-container {
  display: flex;
  vertical-align: middle;
  align-items: center;
  /* justify-content: space-around; */
}
.aboutus-content {
  /* padding-right: 70px; */
}
.aboutus-content h2 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  color: #363347;
  font-size: 30px;
  line-height: 37px;
  color: #363347;
}

.aboutus-content h5 {
  margin: 33px 0px;

  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 62px;
  line-height: 78px;
  color: #363347;
}

.aboutus-content h5 span {
  color: #9600bf;
}

.aboutus-content p {
  padding-top: 33px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 36px;
  color: #5c6178;
}
.aboutus-content p span {
  font-style: normal;
  font-weight: 700;
}
.aboutus-content .headshots{
  display:flex;
  justify-content: space-between;
  margin-top:40px;
  margin-left:20px;
}
.aboutus-content .headshot {
  padding:12px 12px 20px 12px;
  box-shadow: 6px -5px 29px #e9e9ee;
  max-width:46%;
  background:#FFF;
}
.aboutus-content .headshot img{
  width:100%;
  border-radius: 5px;
}
.aboutus-content .headshot .info{
  display:flex;
  justify-content: space-between;
  
}
.aboutus-content .headshot .info h5{
  font-size:22px;
  line-height: 28px;
  font-weight:600;
  margin-bottom:5px;
}
.aboutus-content .headshot .info h6{
  color:#5C6178;
}
.aboutus-content .headshot .info a{
  align-self: flex-end;
}
.aboutus-content .headshot .info a:hover .fa-brands{
  color:#5c1f7a; 
}
.aboutus-content .headshot .info  .fa-brands{
  font-size:36px;
  color:#363347;
}
/* .banner-left-section img {
  position: absolute;
  top: -40px;
} */
.new-callout img{
  width:50px;
  margin-right:10px;
  margin-top:-10px;
  margin-bottom:-10px;
}
.new-callout{
  color:#000;
  font-weight:500;
  /* text-transform: uppercase; */
  margin-bottom:20px;
  background:#F5F7FA;
  border-radius:0 10px;
  padding:10px;
  text-align: left;
  display: flex;
  align-items: center;
  white-space:nowrap;
  min-width: 400px;
  /* width:420px; */
}
.landing-page .banner-left-section{
  min-height: 600px;
}

.banner-left-section,
section.condo-section h2 {
  position: relative;
}
section.condo-section h2 span {
  position: absolute;
  right: 28px;
  bottom: 0px;
  font-size: 22px;
  display: inline-block;
  vertical-align: top;
  line-height: 1;
  font-weight: 400;
  color: #5c6178;
}

section.condo-section h2 span:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  background-color: #5c6178;
  left: -25px;
  top: 12px;
}
section.condo-section h2 span::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  background-color: #000;
  right: -25px;
  top: 12px;
}

section.condo-section .see-sample{
  color: #9600bf;
  font-weight: 600;
  text-align: center;
  padding: 8px 15px;
  font-size: 13px;
  line-height: 22px;
  text-transform: uppercase;
  border-radius: 25px;
  border: 2px solid #9600bf;
  font-family: "Montserrat";
  width:70%;
  margin:0 auto;
  margin-top:20px;
  display:block;
}
section.condo-section .see-sample:hover{
  background:#F5F7FA;
}
section.mc-samples{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='800' preserveAspectRatio='none' viewBox='0 0 1440 800'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1030%26quot%3b)' fill='none'%3e%3crect width='1440' height='800' x='0' y='0' fill='rgba(240%2c 235%2c 243%2c 1)'%3e%3c/rect%3e%3cpath d='M0%2c369.813C99.061%2c390.848%2c201.283%2c500.488%2c287.414%2c447.224C372.949%2c394.329%2c312.755%2c252.69%2c343.984%2c157.092C370.247%2c76.695%2c453.675%2c19.169%2c454.872%2c-65.401C456.125%2c-153.907%2c402.622%2c-232.169%2c350.506%2c-303.715C294.625%2c-380.429%2c238.739%2c-481.598%2c144.366%2c-491.667C48.17%2c-501.93%2c-18.608%2c-398.722%2c-103.398%2c-352.143C-166.824%2c-317.3%2c-239.123%2c-302.566%2c-291.246%2c-252.366C-346.68%2c-198.977%2c-378.475%2c-129.706%2c-408.109%2c-58.677C-446.622%2c33.634%2c-532.865%2c133.405%2c-489.869%2c223.715C-446.687%2c314.416%2c-314.654%2c311.109%2c-218.388%2c339.819C-146.518%2c361.253%2c-73.362%2c354.235%2c0%2c369.813' fill='%23e5dcea'%3e%3c/path%3e%3cpath d='M1440 1099.3020000000001C1514.473 1097.103 1585.087 1159.1100000000001 1655.899 1135.946 1730.7930000000001 1111.446 1787.9180000000001 1045.504 1821.856 974.388 1856.0720000000001 902.688 1859.902 819.747 1843.932 741.923 1828.525 666.847 1782.537 604.569 1733.8229999999999 545.4010000000001 1683.99 484.874 1636.763 403.416 1558.757 395.549 1479.826 387.589 1427.318 476.81 1353.996 507.097 1291.505 532.9100000000001 1209.8600000000001 511.32 1162.2559999999999 559.333 1114.324 607.6759999999999 1118.741 685.05 1110.548 752.632 1102.531 818.765 1097.998 883.994 1115.09 948.381 1134.6779999999999 1022.172 1146.507 1116.779 1215.749 1148.942 1286.62 1181.8609999999999 1361.891 1101.608 1440 1099.3020000000001' fill='%23fbfafc'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1030'%3e%3crect width='1440' height='800' fill='white'%3e%3c/rect%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e");
  background-size:cover;
}

section.mc-samples .content-sample{
  width: 100%;
  height: 280px;
  background-size: contain;
  background-position: center center;
  background-size: 125%;
  border-radius: 5px;
  border: 10px solid #FFF;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, .1);
  margin-top:10px;
  display: block;
  transition: transform .2s;
}
section.mc-samples .content-sample:hover{
  opacity:.8;
}
section.mc-samples .white-card{
  border-top:5px solid #9600BF;
  border-radius: 5px;
  padding:30px 20px;
}
.white-card p i{
  font-weight:400;
  color:#111;
}

.boomberg-link {
  width: 55%;
}
.for-update p span {
  cursor: pointer;
}
.slick-slide img {
  margin: auto;
}

.mobile-slider,
.mobileshow-img {
  display: none;
}
.desktop-withoutslider,
.mobilehide-img {
  display: block;
}
.mobilesubs {
  /* border: 1px solid rgba(92, 97, 120, 0.6) !important;
  box-shadow: 0px 37px 60px rgb(0 0 0 / 5%) !important;
  border-radius: 5px; */
  width: 100%;
  margin: 0;
}
.mobilesubforms input {
  background-color: #ffffff;
  border: 1px solid rgba(92, 97, 120, 0.6) !important;
  box-shadow: 0px 37px 60px rgba(0, 0, 0, 0.05) !important;
  border-radius: 5px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #363347;
  /* opacity: 0.6; */
  width: 100%;
  margin-left: 0px;
  height: 62px;
}
.subbutons {
  background: rgb(150, 0, 191);
  border: 1px solid rgb(92, 31, 122);
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  font-family: "Fira Sans", sans-serif;
  height: 60px;
  min-width: 162px;
  margin: 30px auto;
  display: block;
}

section.advisory-service {
  /* padding-top: 65px; */
  margin: 160px auto 0px;
  width: 95%;
}
section.advisory-service.aboutus-page{
  margin: 30px auto 100px;
}
section.advisory-service.aboutus-page .advisory-header,
section.advisory-service.aboutus-page .advisory-subheader{
  display:none;
}
section.advisory-service.pipeline-landing {
  margin: 60px auto;
}

.advisory-service h4 {
  padding-top: 40px;

  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
  text-align: center;
  text-transform: uppercase;
  /* color: #9600bf; */
}

.advisory-service p {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 40px;
  text-align: center;
}
.advisory-cardbox, .tip-cardbox {
  border: 1px solid rgba(92, 97, 120, 0.1);
  border-radius: 5px;
  margin: 77px 20px 0px;
  cursor: pointer;
  position: relative;
}
.tip-cardbox{
  margin-left:0;
  margin-top:50px;
}
.tip-footer{
  color:#FFF;
  text-align: center;
  margin-top:30px;
  font-weight:300;
 
}
.tip-btn{
  max-width: 260px;
}
.tip-footer a{
  color:#FFF;
  text-decoration: underline;
}
.advisory-inner-box {
  padding: 60px 35px 75px;
}
.advisory-cardbox h3, .tip-cardbox h3 {
  /* padding-top: 30px; */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 38px;
  color: #363347;
}
.a-flex{display: flex;}
.advisory-cardbox p, .tip-cardbox p {
  padding-top: 30px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 40px;
  color: #5c6178;
  text-align: left;
}
.tip-cardbox .advisory-inner-box{
  padding:30px 35px; 
}
.tip-cardbox p:before{
  content:'\BB';
  color:#9600bf;
  margin-right:10px;
  margin-left:-26px;
  font-size:30px;
}
.tip-cardbox p{
  padding-left:26px;
  font-size:20px;
  line-height: 32px;
  padding-top:15px;
}
.advisory-cardbox p span, .tip-cardbox p span {
  font-weight: 600;
  font-size: 22px;
  color: #5c6178;
}
.advisory-cardbox span img {
  padding: 34px;
}

.aboutus-product-row .block {
  padding: 60px 60px 100px;
  border-radius: 5px;
  margin-top: 280px;
  position: relative;
}
.aboutus-product-row .feature-img {
  display: block;
  margin: 0px auto;
  width: 124%;
  max-width: initial;
  margin-left: -12%;
  bottom: 0;
  top: auto;
  position: relative;
  margin-top: -300px;
}
.aboutus-product-row h3 {
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
  color: #363347;
}
.aboutus-product-row h5 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 40px;
  color: #363347;
  margin-top: 20px;
}
.aboutus-product-row a {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 40px;
  text-transform: uppercase;
  color: #9600bf;
  display: block;
  position: absolute;
  bottom: 30px;
}
.aboutus-product-row .card-left {
  background: rgba(1, 149, 135, 0.1);
}
.aboutus-product-row .card-right {
  background: rgba(255, 151, 0, 0.1);
}
.aboutus-product-row .block-space {
  padding: 0px 36px;
}
.see-example-arrow {
  margin-top: 0px !important;
}
.inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
  width: 17px;
  height: 16px;
}
.aboutus-arrow {
  height: 30px;
}
.advisory-cardbox img.advisory-arrow {
  bottom: 25px;
  position: absolute;
  left: 30px;
  padding: 0px;
}
.aboutus-product-row .block {
  cursor: pointer;
}

/* page-building */
.search-newstyle {
  margin: 60px auto 100px;
}
.search-newstyle .input-box {
  width: 50%;
  margin: 0px auto;
  display: block;
  position: relative;
}
.search-newstyle .search-input {
  background: #ffffff;
  border: 1px solid rgba(92, 97, 120, 0.6);
  box-shadow: 0px 37px 60px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  height: 57px;
  width: 100%;
}
.search-newstyle .search-icon {
  position: absolute;
  top: 14px;
  left: 16px;
}
.search-newstyle .search-input {
  padding-left: 60px;
  left: 60px;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: rgba(92, 97, 120, 0.78);
}
.cardsections h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 38px;
  line-height: 40px;
  color: #363347;
}
.cardsections h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  text-align: left;
  color: #5c6178;
  padding-top: 20px;
}
.cardsections h2 span {
  display: inline-block;
  vertical-align: top;
  margin-right: 15px;
}
.imagesection {
  position: relative;
  margin-top: 35px;
}
.imagesection .tagtext {
  background-color: #9600bf;
  border-radius: 5px;
  position: absolute;
  bottom: 17px;
  left: 20px;
  padding: 17px 20px;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #ffffff;
}
.cardsections ul {
  padding-top: 6px;
}
.cardsections ul li {
  margin-top: 40px;
  list-style-type: none;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: #363347;
  width: 33%;
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding-left: 41px;
}
.cardsections ul li span {
  color: #bfc4d1;
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
}
.cardsections-para {
  padding-top: 25px;
}
.cardsections p {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
  color: #5c6178;
  padding-top: 25px;
}

.linkssection {
  padding-top: 125px;
}
.linkssection h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 38px;
  line-height: 40px;
  color: #363347;
}
.linkssection ul {
  padding-top: 15px;
}
.linkssection ul li {
  list-style-type: none;
  display: inline-block;
  vertical-align: top;
  width: 19%;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #5c6178;
  padding-top: 40px;
}
.linkssection ul li b {
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: #363347;
  margin-left: 10px;
}
.getsections {
  background-color: rgba(255, 210, 63, 0.05);
  padding: 26px 50px 26px 30px;
  margin-top: 95px;
  display: flex;
  align-items: center;
  vertical-align: middle;
  justify-content: space-between;
}
.getsections h4 {
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 40px;
  color: #363347;
  display: inline-block;
  vertical-align: middle;
}
.getsections a {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  padding: 18px 38px;
  background-color: #9600bf;
  border-radius: 5px;
  display: inline-block;
  vertical-align: top;
}

.activelisting {
  padding-top: 147px;
}
.activelisting h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 38px;
  line-height: 40px;
  color: #363347;
}
.listingdiv {
  border: 1px solid rgba(92, 97, 120, 0.2);
  border-radius: 5px;
  margin-top: 52px;
}
.listingimg {
  height: 257px;
  overflow: hidden;
}
.listingimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.listhead {
  padding: 25px 30px;
  border-bottom: 1px solid rgba(92, 97, 120, 0.1);
}
.listhead h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 30px;
  color: #363347;
}
.listhead p {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #5c6178;
}
.pricediv {
  padding: 34px 30px;
}
.pricediv h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 30px;
  color: #363347;
  display: flex;
  align-items: center;
  vertical-align: middle;
  justify-content: space-between;
}
.pricediv h3 span {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #5c6178;
}
.bottomlist {
  background-color: rgba(92, 97, 120, 0.1);
  padding: 8px 30px;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 30px;
  color: #9600bf;
}
.bottomlist span {
  color: #5c6178;
}

.districsection {
  padding-top: 150px;
}
.districsection h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 38px;
  line-height: 40px;
  color: #363347;
}
.districsection h1 b {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 40px;
  color: #363347;
}
.districsection p {
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 40px;
  color: #5c6178;
  padding-top: 15px;
}
.imgdiscol {
  padding-left: 50px;
}
.imgdis {
  position: relative;
  overflow: hidden;
}
.imgdis .overtext {
  background-color: rgba(54, 51, 71, 0.88);
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px 35px;
  color: #ffffff;
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 40px;
}
.districsection hr {
  margin-top: 147px;
  border-color: rgba(92, 97, 120, 0.5);
}

.similarbuilding {
  padding: 105px 0px 0px;
}
.similarbuilding h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 38px;
  line-height: 40px;
  color: #363347;
}
.buildingsec {
  margin-top: 47px;
}
.buildingsecimg {
  height: 330px;
  overflow: hidden;
}
.buildingsecimg img {
  width: 100%;
  height: 100%;
  object-position: top;
  object-fit: cover;
}
.buildingsec h3 {
  margin-top: 33px;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 40px;
  color: #363347;
}
.buildingsec p {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #5c6178;
}

.aligncenter-div {
  text-align: center;
  margin-top: 73px;
}
.seeall-btn,
.seeall-btn:hover {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  padding: 18px 38px;
  background-color: #9600bf;
  border-radius: 5px;
  display: inline-block;
  vertical-align: top;
}
.promotion-button {
  padding: 25px 0px;
  display: flex;
  justify-content: center;
}
.promotion-button button {
  margin: 0px 40px;
}

.promotion-button .promo-start-trial {
  background: #9600bf;
  border-radius: 5px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #ffffff !important;
  padding: 20px 40px !important;
  cursor: pointer;
  border: none;
  margin: 10px;
  width: 200px;
}
.promotion-button .promo-learn-more {
  background: #ffffff;
  border-radius: 5px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #9600bf !important;
  padding: 20px 40px !important;
  cursor: pointer;
  border: 1px solid #9600bf;
  margin: 10px;
  width: 200px;
}
.building_column {
  display: flex;
  align-items: flex-end;
}

.building_clm {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  /* align-items: flex-end; */
  justify-content: flex-end;
}

.terms{
  margin-top:80px;
  h3{
    font-weight:700;
    margin-bottom:30px;
  }
  h4{
    margin:30px 0 10px 0;
    font-weight:600;
    scroll-margin-top:100px;
  }
  h4{
    font-size:18px;
    text-transform: uppercase;
  }
  strong{
    font-weight:600;
  }
  p{
    font-weight:400;
    margin-bottom:10px;
  }
  ul{
    font-size:16px;
    padding-left:40px;
    margin-bottom:10px;
    li{
      list-style: disc;
    }
  }
}

.product-intro h1{
  text-align: center;
  max-width:1000px;
  margin:30px auto;
  font-weight:700;
  line-height:50px;
}
.product-intro .block-1 {
  padding:40px 15px;
  background: rgba(1, 149, 135, 0.1);
  border-radius: 15px;
  margin: 5px;
  
}
.product-intro .block-2 {
  padding:40px 15px;
 background: rgba(255, 151, 0, 0.1);
 border-radius: 15px;
 margin: 5px;
}

.product-intro .block-2 .home-left-content{
  padding-bottom:32px;
}
.product-intro  .row a.more {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 40px;
    color: #9600bf;
    text-transform: uppercase;
    display:block;
    text-align: right;
}
section.report .product-intro h3{
  text-align:center;
  font-size:32px;
  line-height: 40px;
}
/* ------------------------ */
/* @@responsive */

/* @@desktop */
@media only screen and (max-width: 1920px) {
  .mar-banner {
    /* padding: 10px 0px 120px 0px; */
    /* margin: 80px 0px 0px 0px; */
    background-image: url(/svgs/dotted-2.svg);
  }
  .mar-banner:before {
    height: 180px;
  }
  .mar-banner .mar-bannertext {
    padding-top: 40px;
  }
  .home-product .block-1 .home-left-content {
    padding-bottom: 40px;
  }
  .home-product .block-2 .home-left-content {
    padding-bottom: 40px;
  }
  .subscribe-heading {
    width: 100%;
  }
  section.why-marketproof {
    margin: 80px 0px 40px 0px;
  }
  .why-marketproof .container {
    width: 96%;
  }
  .why-marketproof-content {
    padding-bottom: 50px;
  }
  .why-marketproof-content h2 {
    font-size: 35px;
    line-height: 42px;
  }
  .home-product .row h5 {
    font-size: 25px;
  }
  .home-product .block-2 h5 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1440px) {
  .mar-banner {
    padding-top: 10vh;
  }
  .mar-banner:before {
    height: 50px !important;
  }
}
@media only screen and (max-width: 1280px) {
  .mar-banner {
    height: calc(100vh);
  }
  .mar-bannercontent {
    padding-top: 15vh;
  }
}

/* @@tablet */
@media only screen and (max-width: 1180px) {
  .landing-page .banner-left-section{
    min-height: 0;
  }
  .aboutus-content h5 {
    font-size: 56px;
    line-height: 74px;
  }
  .aboutus-product-row h3 {
    font-size: 54px;
    line-height: 67px;
  }
  .aboutus-product-row h5 {
    font-size: 20px;
    line-height: 38px;
  }
  .advisory-cardbox h3 {
    font-size: 25px;
    line-height: 36px;
  }
  .advisory-inner-box p,
  .advisory-inner-box p span {
    font-size: 20px;
    line-height: 38px;
  }
  .aboutus .container {
    width: 90%;
  }
  .aboutus-product-row .home-product .row h5 {
    font-size: 22px;
    line-height: 35px;
    padding-bottom: 20px;
  }
  .why-marketproof-content h5 {
    font-size: 40px !important;
    line-height: 58px !important;
  }
  .mar-bannercontent {
    padding-top: 10vh;
  }
  .mar-banner h1 {
    font-size: 60px;
    line-height: 78px;
  }
  .mar-cardbox p {
    font-size: 24px;
    line-height: 36px;
  }
  .home-product h4 {
    font-size: 38px;
  }
  .home-product p {
    font-size: 22px;
    line-height: 30px;
    padding-top: 10px;
  }
  .home-product .row h3 {
    font-size: 40px;
    line-height: 50px;
  }
  .home-product .block-2 h5,
  .home-product .block-1 h5 {
    font-size: 21px;
  }

  .advisory-service h4 {
    font-size: 38px;
    line-height: 40px;
  }
  .advisory-service p {
    font-size: 22px;
    line-height: 30px;
    padding-top: 10px;
  }
  .advisory-inner-box p {
    font-size: 22px;
    line-height: 40px;
    padding-top: 30px;
  }
  .advisory-inner-box {
    padding: 30px 20px 75px;
  }
  .subscribe-footer {
    padding: 120px 0px 0px;
  }
  section.advisory-service {
    width: 100%;
  }
  .advisory-cardbox {
    margin: 77px 8px 0px;
  }
  .aboutus-arrow {
    height: 24px;
  }
  section.landing-page.newdev {
    padding: 110px 0px 70px;
  }
  .landing-page .col-lg-4,
  .landing-page .col-lg-8 {
    width: 100%;
  }
  .banner-left-section h1 {
    font-size: 3.32rem;
    line-height: 3.6rem;
    font-weight: 700;
  }
  .banner-left-section h2 {
    font-size: 2.852rem;
    line-height: 3.6rem;
    font-weight: 700;
  }
  .banner-left-section p {
    font-size: 1.5rem;
    padding: 30px 30px 0px;
    width: 80%;
    margin: auto;
  }
  .banner-left-section img {
    position: initial;
    /* width: 75%; */
  }
  .notediv p {
    margin-top: 0px;
    font-size: 1.3rem;
  }
  .new-callout{
    justify-content: center;
  }
  section.condo-section h2 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  section.condo-section h2 span {
    font-size: 20px;
  }
  section.condo-section h2 span::before {
    top: 10px;
  }
  .condo-section .container {
    width: 90%;
  }
  section.condo-section h2 span::after {
    top: 10px;
  }
  .condo-section .white-card p {
    font-size: 17px;
  }
  
  .get-section .container {
    width: 90%;
  }
  .get-section h2 {
    font-size: 2.441rem;
    line-height: 3rem;
  }
  .get-section p {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
  .feature-section {
    padding-bottom: 45px;
  }
  .feature-section .container {
    width: 90%;
  }
  .feature-section h3 {
    font-size: 40px;
    line-height: 50px;
  }
  .feature-section h5 {
    font-size: 22px;
    line-height: 28px;
  }
  .feature-section .row p {
    font-size: 17px;
    line-height: 29px;
  }
}
@media only screen and (max-width: 1024px) {
  .aboutus-product-row .row .col-lg-6 {
    width: 100%;
  }
  .aboutus-product-row .feature-img {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .aboutus-content h5 {
    font-size: 45px;
    line-height: 66px;
  }
  .mar-banner {
    padding: 10px 0px 120px 0px !important;
    padding: 0px;
    background-image: url(/svgs/dotted-2.svg);
  }
  .mar-banner .mar-bannertext {
    padding-top: 100px;
  }
  .mar-banner h1 {
    font-size: 58px;
    line-height: 75px;
  }
  .mar-contestarea p {
    font-size: 17px;
  }
  .mar-contestarea {
    margin-top: 0px;
  }

  .home-product p {
    font-size: 22px;
    line-height: 30px;
  }
  .home-product .row h3 {
    font-size: 40px;
    line-height: 54px;
  }
  .home-product .row h5 {
    font-size: 18px;
    line-height: 30px;
    padding-top: 18px;
    padding-bottom: 20px;
  }
  .home-product .block-1 {
    margin-bottom: 140px;
  }
  .home-product .block-1 .home-left-content {
    padding-bottom: 60px;
  }
  .home-product .block-2 .home-left-content {
    padding-bottom: 20px;
  }
  .home-product .feature-img {
    top: -50px !important;
  }
  .subscribe-heading p {
    width: 75%;
    margin: 0px auto;
  }
  .subscribe-heading span p {
    width: 100%;
  }
  .subscribe-option {
    width: 90%;
    margin: 0px auto;
  }
  .checkbox-section b {
    font-size: 16px;
  }
  .checkbox-section p {
    font-size: 16px !important;
  }
  .subsform {
    width: 83%;
  }
  .subsform button {
    height: 50px;
    min-width: 140px;
  }
  .why-marketproof-content h5 {
    font-size: 40px !important;
    line-height: 56px !important;
  }
  .why-marketproof-content p {
    font-size: 23px;
    line-height: 40px;
  }
  .why-marketproof-content a {
    font-size: 25px;
  }
  .feature-section h3 {
    font-size: 36px;
  }
}

@media only screen and (max-width: 991px) {
  .aboutus .container {
    width: 100%;
  }
  .aboutus-content h5 {
    font-size: 52px;
    line-height: 70px;
  }
  .aboutus-product-row h3 {
    font-size: 50px;
    line-height: 63px;
  }
  .col-position {
    position: relative;
    right: 0;
    bottom: auto;
  }
  .row-position {
    margin-bottom: 0 !important;
  }
  .home-product .block-1 .home-left-content {
    padding-bottom: 50px;
  }
  .home-product .feature-img {
    top: auto !important;
    bottom: -70px;
  }
  /* .home-product .block-1 .feature-img {
    bottom: -70px;
  } */
  .subscribe-footer h2 {
    font-size: 35px;
    line-height: inherit;
  }
  .mar-banner h1 {
    font-size: 54px;
    line-height: 72px;
  }
  .mar-cardbox p {
    font-size: 15px;
  }
  .mar-cardbox {
    padding: 30px 15px;
  }
  .mar-cardbox .img-fluid {
    max-width: 70%;
  }
  .subscribe-footer {
    padding: 80px 0px 0px;
  }
  .why-marketproof-content h2 {
    font-size: 30px;
    line-height: 36px;
  }
  .why-marketproof-content h5 br,
  .why-marketproof-content p br {
    display: none;
  }
  .mar-banner h1 {
    font-size: 50px;
    line-height: 65px;
  }
  .mar-contestarea p {
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
  }
  .home-product .row h3 {
    font-size: 30px;
    line-height: 40px;
  }
  .home-product .row h5 {
    font-size: 15px;
    line-height: inherit;
    padding-top: 10px;
    padding-bottom: 4px;
  }
  .home-product .row a {
    font-size: 15px;
  }
  /* .home-product .block-2,
  .home-product .block-1 {
    padding: 40px 0px 0px 49px;
  } */
  .mar-cardbox p,
  .mar-cardbox p span {
    font-size: 17px;
  }
  .home-product h4 {
    font-size: 28px;
  }
  .home-product p {
    font-size: 18px;
  }
  .advisory-service h4 {
    font-size: 28px;
  }
  .advisory-service p {
    font-size: 18px;
  }
  .advisory-cardbox h3 {
    font-size: 17px;
    line-height: 27px;
  }
  .advisory-cardbox p,
  .advisory-cardbox p span {
    font-size: 15px;
    line-height: 28px;
  }
  .advisory-cardbox {
    margin: 77px 0px 0px;
  }
  section.advisory-service {
    margin: 100px auto 0px;
  }
  .advisory-cardbox {
    margin: 55px 0px 0px;
  }
  .landing-page .notediv p {
    font-size: 16px;
  }
  .get-section p {
    width: 70%;
    margin: auto;
  }

  .feature-section .feature-padding {
    padding-top: 60px;
  }
  .feature-section .margin-top-section {
    margin-top: 40px;
  }
  .get-section {
    padding: 60px 0px 0px 0px;
  }
  .condo-section .white-card p {
    font-size: 15px;
  }
  .boomberg-link {
    width: 80%;
  }
  .white-card {
    position: relative;
  }
  .white-card .para {
    padding-bottom: 50px;
  }
  
  .condo-section .white-card img {
    position: absolute;
    bottom: 25px;
    width: 76%;
  }
  .white-card {
    padding: 30px 20px;
  }
  .a-flex:last-of-type{
    margin-bottom: 50px;
  }
  .a-flex{
    display: block;
  }
}

/* @@mobile */
@media only screen and (max-width: 767px) {
  .aboutus-content h5 {
    font-size: 27px;
    line-height: 45px;
  }
  .aboutus-content.office-hours h5{
    font-size:38px;
    margin-bottom:10px;
  }
  .aboutus-content p,
  .aboutus-content p span {
    padding-top: 0px;
    font-size: 19px;
    line-height: 36px;
  }
  section.aboutus-product {
    padding-top: 70px;
  }
  .aboutus-product p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 27px;
  }
  .aboutus-product-row .block-space {
    padding: 0px;
  }
  .office-hours-desc-section{
    .float-img{
      float:none;
      max-width: none;
    }
  }
  .sample-section .sample-heading h2 br {
    display: none;
  }
  .aboutus-product-row .feature-img {
    width: 122%;
    margin-left: -11%;
    margin-top: -180px;
  }
  .aboutus-product-row h3 {
    font-size: 35px;
    line-height: 45px;
  }
  .aboutus-product-row .block {
    margin-top: 180px;
  }
  .aboutus-product-row .block {
    padding: 60px 40px 100px;
  }
  .aboutus-content .headshots{
    display:block;
    margin-left:0;
   
  }
  .aboutus-content .headshot{
    margin:50px auto;
    max-width:80%;
    background: #FFF;
  }
  .ais-SearchBox-form {
    padding-left: 0px;
    padding-right: 0px;
    height: 100%;
  }
  .mar-banner {
    top: 50px;
    background-image: url(/svgs/dotted-3.svg);
    padding: 0px 0px 80px 0px !important;
  }
  .mar-banner input {
    box-shadow: none;
  }
  .mar-banner h1 {
    font-size: 40px;
    line-height: 52px;
    font-weight: 700px;
    padding-top: 20px;
  }
  .office-hours-banner{
    display:block;
  }
  .office-hours-banner .banner-container{
    margin:0 auto;
  }
  .office-hours-banner h6{
    margin-bottom:20px;
    text-align: center;
  }
  section.office-hours-bottom-section .office-hours-banner h6{
    text-align: center;
  }
  .algolia-search-section {
    width: 100%;
  }
  section.mar-asseensection {
    padding-top: 40px;
  }
  .mar-cardbox p {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #5c6178;
  }
  .mar-cardbox p b {
    color: #363347;
    font-weight: 700;
  }
  .mar-cardbox .img-fluid {
    max-width: 95%;
    height: 30px;
    margin-bottom: 30px;
  }
  .mar-contestarea p span {
    font-weight: 600;
    font-size: 18px;
    line-height: 34px;
  }
  /* .mar-cardbox p {
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
  } */
  .mar-cardbox p span {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
  }
  .home-product hr {
    width: 100%;
  }
  .home-product p {
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    color: #5c6178;
    width: 80%;
    margin: 0px auto;
    padding-top: 10px;
  }
  .home-product .row h3 {
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
  }
  .home-product .row a {
    font-size: 16px;
  }
  .feature-section .container{
    width:100%;
  }
  
  .feature-section .container .feature-img{
    width:110%;
    max-width: 110%;
    margin-left:-5%;
  }
  .new-callout img{
    width:50px !important;
  }
  .aboutus-container{
    display: block;
  }
  .why-marketproof-content h2 {
    font-size: 30px;
    line-height: 36px;
  }
  .why-marketproof-content h5 {
    font-size: 30px !important;
    line-height: 40px !important;
  }
  .why-marketproof-content p {
    font-size: 18px;
    line-height: 36px;
  }
  .why-marketproof-content a {
    font-size: 18px;
    line-height: 40px;
  }
  .why-marketproof {
    background-image: url();
  }
  .footer-social .fas-fa-size, .footer-social .fa-brands {
    font-size: 34px;
  }
  .mar-banner .mar-bannertext {
    padding-top: 40px;
  }

  .algolia-search-section {
    margin-top: 22px;
  }
  .ais-SearchBox {
    height: 62px;
  }
  .ais-SearchBox-form input {
    background-position: 17px 17px;
    padding-left: 55px;
  }
  .mar-banner input {
    font-size: 12px;
    line-height: 14px;
  }

  .mobile-slider,
  .mobileshow-img {
    display: block;
    position: relative;
  }
  .home-product .block-3 .banner-container{
    top:50%;
  }
  
  .mobileshow-img img {
   // margin-top: -120px;
  }
  .home-product .block-1,
  .home-product .block-2{
    margin-top: 30px;
  }
  .home-product .block-3 .new-callout{
    background:transparent;
    border:none;
    display: none;
  }
  .home-product .block-2 {
    margin-bottom:120px;
  }
  .desktop-withoutslider,
  .mobilehide-img {
    display: none;
  }
  .home-product .feature-img {
    bottom: 0;
    margin-bottom: 30px;

    width: 125%;
    max-width: initial;
    margin-left: -12%;
  }
  .home-product .block-2,
  .home-product .block-3,
  .home-product .block-1 {
    padding: 30px 10px;
  }
  
  .mar-contestarea {
    margin-top: 30px;
  }
  .mar-contestarea p {
    display: block;
    text-align: center;
  }

  .mar-contestarea p span {
    /* display: block; */
  }
  .home-product .row h5 {
    font-size: 18px;
    line-height: 30px;
  }
  .sub-inner-bg {
    padding-top: 30px;
  }
  .subscribe-footer h2 {
    font-size: 34px;
    line-height: 40px;
  }
  .subscribe-heading p {
    width: 100%;
    text-align: center;
    margin-bottom:20px;
  }
  .subscribe-option hr {
    display: none;
  }
  .subscribe-footer .subscribe-heading a {
    font-size:15px;
  }
  .subscribe-option .row {
    padding-top: 10px;
  }
  .subscribe-option .checkbox-section {
    padding-bottom: 40px;
  }
  .trial-heading h2 {
    font-weight: 700;
    font-size: 44px;
    line-height: 60px;
  }
  .trial-heading {
    width: 90%;
  }
  .trial-bg {
    padding-top: 53px;
    padding-bottom: 53px;
  }
  .why-marketproof-content {
    padding-bottom: 25px;
  }
  section.why-marketproof {
    margin: 80px 0px 0px 0px;
  }
  .trial-heading .trial-btn {
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    padding: 18px 30px;
  }
  .why-marketproof-content p {
    font-size: 18px;
    line-height: 30px;
  }
  .why-marketproof-content h2 {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
  }
  .subscribe-heading {
    padding: 30px 10px;
  }
  .subscribe-option {
    width: 100%;
  }
  .subscribe-heading .checkbox-section p {
    text-align: left;
  }
  .sub-inner-bg {
    background-image: url();
  }
  section.why-marketproof {
    margin: 0px;
  }
  .sub-inner-bg {
    padding-bottom: 70px;
  }

  .subscribe-heading .for-update p {
    text-align: center;
  }
  .subscribe-footer {
    padding-bottom: 28px;
  }
  .why-marketproof-para br {
    display: block !important;
  }
  .subsform {
    width: 100%;
  }
  .mobilesubs .subscribe-heading {
    padding: 0px 0px 50px;
  }
  .mobilesubs .subscribe-heading .for-update p {
    padding-top: 0px;
  }
  .Toastify__toast-container {
    top: 70px !important;
    width: 100vw !important;
  }

  section.advisory-service {
    margin: 50px auto;
  }
  .advisory-service p {
    padding-top: 10px;
    font-size: 18px;
    line-height: 30px;
    width: 80%;
    margin: 0px auto;
  }
  .advisory-cardbox {
    border: none;
  }
  .advisory-inner-box {
    padding: 0px 0px 45px;
  }
  .advisory-inner-box img {
    width: 40px;
    height: 50px;
  }
  .advisory-inner-box h3 {
    font-size: 28px;
    line-height: 38px;
  }
  .advisory-inner-box p,
  .advisory-inner-box p span {
    font-size: 18px;
    line-height: 30px;
    width: 100%;
    text-align: center;
  }
  .tip-cardbox .advisory-inner-box p,
  .tip-cardbox .advisory-inner-box p span {
    text-align: left;
  }
  
  .mobilesubforms {
    position: relative;
    padding-top: 16px !important;
  }
  .mobilesubforms .mobile-img-input {
    position: absolute;
    bottom: 105px;
    left: 75px;
  }
  /* .advisory-inner-box span img {
    width: 40px;
    height: 50px;
  } */
  .advisory-arrow-slider {
    height: 30px !important;
    width: 30px !important;
    margin: 35px auto !important;
  }
  .advisory-inner-box {
    padding: 12px;
  }
  /* .subscribe-footer::before {
    background: linear-gradient(
      180deg,
      #5c6178 0%,
      rgba(217, 217, 217, 0) 100%
    );
    opacity: 0.05;
  } */
  .subbutons {
    margin: 30px auto 0px;
  }
  .subscribe-footer.mobilesubs {
    background-image: url(/svgs/Rectangle-bg-307.svg);
    width: 95%;
    margin: auto;
  }
  .subscribe-footer.mobilesubs.standalone-page{
    background:none;
  }
  .subscribe-heading .for-update p span {
    color: rgb(150, 0, 191);
  }
  .trial-section {
    padding: 15px 15px;
  }
  .mobile-img-input {
  }
  .aboutus-arrow {
    height: 18px;
  }
  .banner-left-section img {
    position: initial;
    width: 100%;
  }
  .landing-page .notediv p {
    font-size: 14px;
  }
  section.condo-section h2 {
    font-size: 1.3rem;
    line-height: 2rem;
  }
  section.condo-section h2 span {
    font-size: 14px;
    bottom:-50px;
  }
  section.condo-section h2 span::before {
    top: 5px;
  }
  section.condo-section h2 span::after {
    top: 5px;
  }
  .condo-section .white-card p {
    font-size: 15px;
  }
  .white-card img {
    height: 20px;
  }
  .condo-section .mobile-slider .carousel-root {
    padding: 40px 0px 10px;
  }
  .condo-section .mobile-slider .carousel .mar-cardbox p,
  .condo-section .mobile-slider .carousel .mar-cardbox p span {
    font-size: 15px;
  }
  .condo-section .mobile-slider .carousel .mar-cardbox {
    padding: 30px 33px;
  }
  .condo-section .mobile-slider .carousel .mar-cardbox .img-fluid {
    height: 26px;
  }
  .get-section h2 {
    font-size: 1.4rem;
  }
  .get-section p {
    width: 90%;
  }
  .get-section p {
    font-size: 0.9rem;
    line-height: 1.6rem;
  }
  .feature-section .margin-top-section {
    margin-top: 20px;
  }
  .feature-section h3 {
    font-size: 24px;
    line-height: 32px;
  }
  .feature-section h5 {
    font-size: 16px;
    line-height: 23px;
  }
  .feature-section .row p {
    font-size: 14px;
    line-height: 24px;
  }
  .trial-heading h2 {
    font-weight: 700;
    font-size: 38px;
    line-height: 53px;
  }
  .trial-heading .trial-btn {
    font-size: 20px;
    line-height: 18px;
  }
  .countsection ul li {
    padding: 12px;
  }
  .countsection ul li span {
    font-size: 16px;
  }
  .mar-banner {
    height: calc(110vh);
  }
  .mar-bannercontent {
    padding-top: 0vh;
  }
  .product-intro h1{
   
    line-height:39px;
  }
  
}
@media only screen and (max-width: 480px) {
  .mar-banner h1 {
    font-size: 36px;
    line-height: 130%;
    font-weight: 700px;
  }
  .get-section {
    padding: 60px 0px 0px 0px;
  }
  section.landing-page.pipeline {
    padding: 80px 0px 0px;
  }
  .promotion-button {
    display: block;
  }
}
@media only screen and (max-width: 320px) {
  .aboutus-content .headshot{
    margin:50px auto;
    max-width:100%;
  }
}

.modal-content{
  overflow:hidden;
}

.control-dots .dot.selected {
  background: #9600bf 0 !important;
  /* opacity: 1 !important; */
}

.control-dots .dot {
  background: rgba(150, 0, 191, 0.2) !important;
  opacity: 1 !important;
  box-shadow: none !important;
}

.carousel ul li {
  padding: 0px;
}

:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: var(--toastify-font-family);
  cursor: pointer;
  direction: ltr;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding: 6px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.Toastify__toast-body > div:last-child {
  -ms-flex: 1;
      flex: 1;
}
.Toastify__toast-icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  width: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.7s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.f {
  --y: calc(var(--len) - var(--nth));
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  transform: translate3d(0, calc(var(--y) * -40%), 0) scale(calc(1 - 0.05 * var(--y)));
  transition: all 0.3s;
  min-height: 80px;
}

.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.carousel .control-arrow,.carousel.carousel-slider .control-arrow{-webkit-transition:all .25s ease-in;-moz-transition:all .25s ease-in;-ms-transition:all .25s ease-in;-o-transition:all .25s ease-in;transition:all .25s ease-in;opacity:.4;filter:alpha(opacity=40);position:absolute;z-index:2;top:20px;background:none;border:0;font-size:32px;cursor:pointer}.carousel .control-arrow:focus,.carousel .control-arrow:hover{opacity:1;filter:alpha(opacity=100)}.carousel .control-arrow:before,.carousel.carousel-slider .control-arrow:before{margin:0 5px;display:inline-block;border-top:8px solid transparent;border-bottom:8px solid transparent;content:''}.carousel .control-disabled.control-arrow{opacity:0;filter:alpha(opacity=0);cursor:inherit;display:none}.carousel .control-prev.control-arrow{left:0}.carousel .control-prev.control-arrow:before{border-right:8px solid #fff}.carousel .control-next.control-arrow{right:0}.carousel .control-next.control-arrow:before{border-left:8px solid #fff}.carousel-root{outline:none}.carousel{position:relative;width:100%}.carousel *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.carousel img{width:100%;display:inline-block;pointer-events:none}.carousel .carousel{position:relative}.carousel .control-arrow{outline:0;border:0;background:none;top:50%;margin-top:-13px;font-size:18px}.carousel .thumbs-wrapper{margin:20px;overflow:hidden}.carousel .thumbs{-webkit-transition:all .15s ease-in;-moz-transition:all .15s ease-in;-ms-transition:all .15s ease-in;-o-transition:all .15s ease-in;transition:all .15s ease-in;-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);position:relative;list-style:none;white-space:nowrap}.carousel .thumb{-webkit-transition:border .15s ease-in;-moz-transition:border .15s ease-in;-ms-transition:border .15s ease-in;-o-transition:border .15s ease-in;transition:border .15s ease-in;display:inline-block;margin-right:6px;white-space:nowrap;overflow:hidden;border:3px solid #fff;padding:2px}.carousel .thumb:focus{border:3px solid #ccc;outline:none}.carousel .thumb.selected,.carousel .thumb:hover{border:3px solid #333}.carousel .thumb img{vertical-align:top}.carousel.carousel-slider{position:relative;margin:0;overflow:hidden}.carousel.carousel-slider .control-arrow{top:0;color:#fff;font-size:26px;bottom:0;margin-top:0;padding:5px}.carousel.carousel-slider .control-arrow:hover{background:rgba(0,0,0,0.2)}.carousel .slider-wrapper{overflow:hidden;margin:auto;width:100%;-webkit-transition:height .15s ease-in;-moz-transition:height .15s ease-in;-ms-transition:height .15s ease-in;-o-transition:height .15s ease-in;transition:height .15s ease-in}.carousel .slider-wrapper.axis-horizontal .slider{-ms-box-orient:horizontal;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-moz-flex;display:-webkit-flex;display:flex}.carousel .slider-wrapper.axis-horizontal .slider .slide{flex-direction:column;flex-flow:column}.carousel .slider-wrapper.axis-vertical{-ms-box-orient:horizontal;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-moz-flex;display:-webkit-flex;display:flex}.carousel .slider-wrapper.axis-vertical .slider{-webkit-flex-direction:column;flex-direction:column}.carousel .slider{margin:0;padding:0;position:relative;list-style:none;width:100%}.carousel .slider.animated{-webkit-transition:all .35s ease-in-out;-moz-transition:all .35s ease-in-out;-ms-transition:all .35s ease-in-out;-o-transition:all .35s ease-in-out;transition:all .35s ease-in-out}.carousel .slide{min-width:100%;margin:0;position:relative;text-align:center}.carousel .slide img{width:100%;vertical-align:top;border:0}.carousel .slide iframe{display:inline-block;width:calc(100% - 80px);margin:0 40px 40px;border:0}.carousel .slide .legend{-webkit-transition:all .5s ease-in-out;-moz-transition:all .5s ease-in-out;-ms-transition:all .5s ease-in-out;-o-transition:all .5s ease-in-out;transition:all .5s ease-in-out;position:absolute;bottom:40px;left:50%;margin-left:-45%;width:90%;border-radius:10px;background:#000;color:#fff;padding:10px;font-size:12px;text-align:center;opacity:0.25;-webkit-transition:opacity .35s ease-in-out;-moz-transition:opacity .35s ease-in-out;-ms-transition:opacity .35s ease-in-out;-o-transition:opacity .35s ease-in-out;transition:opacity .35s ease-in-out}.carousel .control-dots{position:absolute;bottom:0;margin:10px 0;padding:0;text-align:center;width:100%;z-index:1}@media (min-width: 960px){.carousel .control-dots{bottom:0}}.carousel .control-dots .dot{-webkit-transition:opacity .25s ease-in;-moz-transition:opacity .25s ease-in;-ms-transition:opacity .25s ease-in;-o-transition:opacity .25s ease-in;transition:opacity .25s ease-in;opacity:.3;filter:alpha(opacity=30);box-shadow:1px 1px 2px rgba(0,0,0,0.9);background:#fff;border-radius:50%;width:8px;height:8px;cursor:pointer;display:inline-block;margin:0 8px}.carousel .control-dots .dot.selected,.carousel .control-dots .dot:hover{opacity:1;filter:alpha(opacity=100)}.carousel .carousel-status{position:absolute;top:0;right:0;padding:5px;font-size:10px;text-shadow:1px 1px 1px rgba(0,0,0,0.9);color:#fff}.carousel:hover .slide .legend{opacity:1}


.topbar__avatar-img {
  margin-right:5px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background-size: contain;
  background-position: center center;
  display: inline-block;
}
.dropdown-menu.show {
  display: block;
  border: 1px solid rgba(150, 0, 191, 0.1);
  box-shadow: 1px 5px 15px rgb(0 0 0 / 20%);
  border-radius: 5px;
  margin-top: 16px !important;
  width:auto;
  padding:20px 10px;
  right:0 !important;
}

.dropdown-menu h6{
  font-family: "Fira Sans", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: 16px;
  color: #5c6178;
  padding:3px 8px;
}
.dropdown-divider {
  border-top: 1px solid rgba(150, 0, 191, 0.1);
}

.dropdown-item {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #5c6178;
  cursor: pointer;
  padding:8px;
  text-transform: uppercase;
}
.dropdown-item:active{
  background:#F5F7FA;  
}
.dropdown-item:hover{
  color: #9600bf;
}
.dropdown-item .dropdown-text{
  margin-left:10px;
}
.right-ul-header .dropdown-toggle::after,
.rgtmenusec .dropdown-toggle::after,
.mobile-headermnu .dropdown-toggle::after {
  display: none;
}

.right-ul-header .arrow-up,
.rgtmenusec .arrow-up,
.mobile-headermnu .arrow-up {
  display: none;
}

.right-ul-header .show .arrow-down,
.rgtmenusec .show .arrow-down,
.mobile-headermnu .show .arrow-down {
  display: none;
}

.right-ul-header .show .arrow-up,
.rgtmenusec .show .arrow-up,
.mobile-headermnu .show .arrow-up {
  display: inline-block;
}
.arrow-down,
.arrow-up {
  display: inline-block;
  margin-left: 5px;
  width:15px;
  font-size:12px;
}
.mobile-header .ul-drpdown {
  vertical-align: inherit;
  margin-top:7px;
}

 .nav-link{
  display: flex;
  align-items: center;
}
.mobile-header .nav-item{
  padding-bottom:0;
}
/* .desktop-header .ul-drpdown{
  vertical-align: inherit;
  
} */

/* warning */
.Toastify__toast-theme--colored.Toastify__toast--warning {
  background: #ffffff;
  border: 1px solid #fddb6e;
  border-radius: 6px;
  color: #ffd23f !important;
}

.Toastify__progress-bar--warning {
  background: #ffd23f !important;
}
.Toastify__toast--warning .Toastify__close-button > svg {
  fill: #ffd23f !important;
  border: 1px #ffd23f solid;
  border-radius: 50px;
}
.Toastify__toast--warning .Toastify__close-button > svg {
  height: 22px;
  width: 22px;
  padding: 2px;
}
/* success */
.Toastify__toast-theme--colored.Toastify__toast--success {
  background: #ffffff;
  border: 1px solid #9600bf;
  border-radius: 6px;
  color: #9600bf !important;
}

.Toastify__progress-bar--success {
  background: #9600bf !important;
}
.Toastify__toast--success .Toastify__close-button > svg {
  fill: #9600bf !important;
  border: 1px #9600bf solid;
  border-radius: 50px;
}
.Toastify__toast--success .Toastify__close-button > svg {
  height: 22px;
  width: 22px;
  padding: 2px;
}
/* error */

.Toastify__toast-theme--colored.Toastify__toast--error {
  background: #ffffff;
  border: 1px solid #ee4e61;
  border-radius: 6px;
  color: #f53246 !important;
}

.Toastify__progress-bar--error {
  background: #f53246 !important;
}
.Toastify__toast--error .Toastify__close-button > svg {
  fill: #f53246 !important;
  border: 1px #f53246 solid;
  border-radius: 50px;
}
.Toastify__toast--error .Toastify__close-button > svg {
  height: 22px;
  width: 22px;
  padding: 2px;
}

/* toast */
.Toastify__toast {
  box-shadow: none;
}
.Toastify__close-button {
  padding: 11px;
}

/* .Toastify__toast-theme--light {
  color: "#FFD23F !important";
} */

/* .Toastify__toast-theme--light {
  color: "#FFD23F !important";
} */

/* Slick Slider Base Styles */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

.slick-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Custom styling for slider arrows */
.agents{
  .slick-prev,
  .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(120, 15, 158, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    z-index: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:0;
    border:none;
  }
  
  .slick-prev {
    left: -5px;
  }
  
  .slick-next {
    right: -5px;
  }
  
  .slick-prev:before,
  .slick-next:before {
    content: '\21FD';
    font-size: 28px;
    color: #fff;
  }
  
  .slick-next:before {
    content: '\21FE'; 
  }
  
  /* Custom styling for dots */
  .slick-dots {
    bottom: 10px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 0;
    list-style: none;
  }
  
  .slick-dots li {
    margin: 0 5px;
  }
  
  .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    padding: 0;
    cursor: pointer;
  }
  
  .slick-dots li.slick-active button {
    background-color: #9600BF;
  }
}

/* Custom card styles */
.testimonials{
  margin: 0 auto 50px;
}
.daily-3-agents{
  margin-bottom:100px;
}
.agent-card {
  /* border-radius: 10px; */
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  padding: 20px;
  margin: 10px 20px;
  transition: transform 0.3s;
  /* display: flex; */
  /* border-left:5px solid #780F9E; */
  border-top:3px solid #780F9E;
  border-radius: 10px;
  height:250px;
  cursor:pointer;
  background: #FFF;
}
.agent-top{
  display: flex;
}
.card:hover {
  transform: translateY(-10px);
}



.agent-photo {
  width: 120px;
  height: 120px;
  
  min-width: 120px;
  margin-right:10px;
  background-size:cover;
  border-radius: 50%;
  background-position: center top;
}
.agent-photo img{
  border-radius: 50%;
}

.agent-container{
  text-align: left;
    margin-top:12px;
}

.agent-text {
  font-style: italic;
  font-size:1rem;
  line-height: 1.3rem;
  min-height:40px;
  margin-bottom:5px;
  min-height:80px;
  p{
    margin-bottom:10px;
  }
  ul{
    font-size:1rem;
    line-height: 1.3rem;
    li{
      list-style: inside;
      margin-bottom:10px;
      margin-left:10px;
    }
  }
}
.agent-subtext{
  font-style: italic;
  text-align: right;
}
.agent-title {
  color: #555;
  font-weight:400;
  margin-top:3px;
  font-size:.9rem;
  line-height:1.2em;
}
.agent-title.company{
  margin-top:8px;
  line-height:1.2em;
  font-weight:300;
  font-size:1rem;
  text-transform: uppercase;
}

.agent-name {
  font-weight: 700;
  color: #333;
  font-size:1.25rem;
}
.agent-contract{
  margin-top:20px;
  position: relative;
  .agent-contract-type{
    font-size:1em;
    font-weight:500;
    margin-bottom:5px;
  }
  .agent-contract-amt{
    font-size:1.2rem;
    font-weight:700;
  }
  .agent-contract-date{
    font-weight:300;
  }
  .agent-contract-link{
    position:absolute;
    right:0px;
    bottom:0px;
  }
}
.title {
  color: #777;
  font-size: 0.8em;
}
.testimonials .desktop-hide{
  display:none;
}
@media only screen and (max-width: 767px) {
  
  .testimonials .mobile-hide{
    display:none;
  }
  .testimonials .desktop-hide{
    display:block;
  }
  
}

/* Slick Slider Base Styles */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

.slick-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Custom styling for slider arrows */
.agents{
  .slick-prev,
  .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(120, 15, 158, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    z-index: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:0;
    border:none;
  }
  
  .slick-prev {
    left: -5px;
  }
  
  .slick-next {
    right: -5px;
  }
  
  .slick-prev:before,
  .slick-next:before {
    content: '\21FD';
    font-size: 28px;
    color: #fff;
  }
  
  .slick-next:before {
    content: '\21FE'; 
  }
  
  /* Custom styling for dots */
  .slick-dots {
    bottom: 10px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 0;
    list-style: none;
  }
  
  .slick-dots li {
    margin: 0 5px;
  }
  
  .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    padding: 0;
    cursor: pointer;
  }
  
  .slick-dots li.slick-active button {
    background-color: #9600BF;
  }
}

/* Custom card styles */
.testimonials{
  margin: 0 auto 50px;
}
.daily-3-agents{
  margin-bottom:100px;
}
.agent-card {
  /* border-radius: 10px; */
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  padding: 20px;
  margin: 10px 20px;
  transition: transform 0.3s;
  /* display: flex; */
  /* border-left:5px solid #780F9E; */
  border-top:3px solid #780F9E;
  border-radius: 10px;
  height:250px;
  cursor:pointer;
  background: #FFF;
}
.agent-top{
  display: flex;
}
.card:hover {
  transform: translateY(-10px);
}



.agent-photo {
  width: 120px;
  height: 120px;
  
  min-width: 120px;
  margin-right:10px;
  background-size:cover;
  border-radius: 50%;
  background-position: center top;
}
.agent-photo img{
  border-radius: 50%;
}

.agent-container{
  text-align: left;
    margin-top:12px;
}

.agent-text {
  font-style: italic;
  font-size:1rem;
  line-height: 1.3rem;
  min-height:40px;
  margin-bottom:5px;
  min-height:80px;
  p{
    margin-bottom:10px;
  }
  ul{
    font-size:1rem;
    line-height: 1.3rem;
    li{
      list-style: inside;
      margin-bottom:10px;
      margin-left:10px;
    }
  }
}
.agent-subtext{
  font-style: italic;
  text-align: right;
}
.agent-title {
  color: #555;
  font-weight:400;
  margin-top:3px;
  font-size:.9rem;
  line-height:1.2em;
}
.agent-title.company{
  margin-top:8px;
  line-height:1.2em;
  font-weight:300;
  font-size:1rem;
  text-transform: uppercase;
}

.agent-name {
  font-weight: 700;
  color: #333;
  font-size:1.25rem;
}
.agent-contract{
  margin-top:20px;
  position: relative;
  .agent-contract-type{
    font-size:1em;
    font-weight:500;
    margin-bottom:5px;
  }
  .agent-contract-amt{
    font-size:1.2rem;
    font-weight:700;
  }
  .agent-contract-date{
    font-weight:300;
  }
  .agent-contract-link{
    position:absolute;
    right:0px;
    bottom:0px;
  }
}
.title {
  color: #777;
  font-size: 0.8em;
}
.testimonials .desktop-hide{
  display:none;
}
@media only screen and (max-width: 767px) {
  
  .testimonials .mobile-hide{
    display:none;
  }
  .testimonials .desktop-hide{
    display:block;
  }
  
}

/* Slick Slider Base Styles */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

.slick-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Custom styling for slider arrows */
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  z-index: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size:0;
  border:none;
}

.slick-prev {
  left: -5px;
}

.slick-next {
  right: -5px;
}

.slick-prev:before,
.slick-next:before {
  content: '\21FD';
  font-size: 20px;
  color: #fff;
}

.slick-next:before {
  content: '\21FE'; 
}

/* Custom styling for dots */
.slick-dots {
  bottom: 10px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 0;
  list-style: none;
}

.slick-dots li {
  margin: 0 5px;
}

.slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ddd;
  border: none;
  padding: 0;
  cursor: pointer;
}

.slick-dots li.slick-active button {
  background-color: #9600BF;
}

/* Custom card styles */
.condo-section.office-hours{
  background-color:#F6E5FA;
}
.ig-section{
  background:#faf2fc;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='800' preserveAspectRatio='none' viewBox='0 0 1440 800'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1022%26quot%3b)' fill='none'%3e%3crect width='1440' height='800' x='0' y='0' fill='rgba(250%2c 242%2c 252%2c 0.49)'%3e%3c/rect%3e%3cpath d='M0%2c369.813C99.061%2c390.848%2c201.283%2c500.488%2c287.414%2c447.224C372.949%2c394.329%2c312.755%2c252.69%2c343.984%2c157.092C370.247%2c76.695%2c453.675%2c19.169%2c454.872%2c-65.401C456.125%2c-153.907%2c402.622%2c-232.169%2c350.506%2c-303.715C294.625%2c-380.429%2c238.739%2c-481.598%2c144.366%2c-491.667C48.17%2c-501.93%2c-18.608%2c-398.722%2c-103.398%2c-352.143C-166.824%2c-317.3%2c-239.123%2c-302.566%2c-291.246%2c-252.366C-346.68%2c-198.977%2c-378.475%2c-129.706%2c-408.109%2c-58.677C-446.622%2c33.634%2c-532.865%2c133.405%2c-489.869%2c223.715C-446.687%2c314.416%2c-314.654%2c311.109%2c-218.388%2c339.819C-146.518%2c361.253%2c-73.362%2c354.235%2c0%2c369.813' fill='rgba(241%2c 218%2c 246%2c 0.49)'%3e%3c/path%3e%3cpath d='M1440 1099.3020000000001C1514.473 1097.103 1585.087 1159.1100000000001 1655.899 1135.946 1730.7930000000001 1111.446 1787.9180000000001 1045.504 1821.856 974.388 1856.0720000000001 902.688 1859.902 819.747 1843.932 741.923 1828.525 666.847 1782.537 604.569 1733.8229999999999 545.4010000000001 1683.99 484.874 1636.763 403.416 1558.757 395.549 1479.826 387.589 1427.318 476.81 1353.996 507.097 1291.505 532.9100000000001 1209.8600000000001 511.32 1162.2559999999999 559.333 1114.324 607.6759999999999 1118.741 685.05 1110.548 752.632 1102.531 818.765 1097.998 883.994 1115.09 948.381 1134.6779999999999 1022.172 1146.507 1116.779 1215.749 1148.942 1286.62 1181.8609999999999 1361.891 1101.608 1440 1099.3020000000001' fill='rgba(255%2c 255%2c 255%2c 0.49)'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1022'%3e%3crect width='1440' height='800' fill='white'%3e%3c/rect%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e");
  background-size:cover;
  padding: 50px;
  width: 98%;
  margin: 0 auto;
  padding: 96px 0px;
  .slick-slide img{
    border-radius: 5px;
  }
  
}
.ig-posts{
	margin: 0 auto 50px;
}
.ig-card {
  /* border-radius: 10px; */
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  margin: 10px 20px;
  transition: transform 0.3s;
  display: flex;
  border-right:0px solid #780F9E;
  background:#FFF;
  padding:10px;
 
}
.ig-text{
  padding:10px 30px;
  width:50%;
  h6{
    font-weight:700;
    margin-bottom:10px;
    display: flex;
    align-items: center;
    gap:5px;
    .ig-profile-img{
      width:40px;
      height:40px;
      border-radius: 50%;
      overflow: hidden;
      background-image:url("https://marketproof-hosting.s3.us-east-1.amazonaws.com/kael-ig/Kael+Goodman+Headshot+2.jpeg");
      background-size: 135%;
      background-position: top center;
    }
    a{
      color:#000;
    }
  }
}

.card:hover {
  transform: translateY(-10px);
}



.ig-photo {
  width: 300px;
  height: 300px;
  
  object-fit: cover;
  min-width: 300px;
}


.ig-container{
	text-align: left;
  h4{
    text-align: right;
    font-weight:800;
    margin-bottom:30px;
    font-size:3rem;
  }
}

@media only screen and (max-width: 767px) {
	.testimonial-subtext{
		display:flex;
	}
	.testimonials .mobile-hide{
		display:none;
	}
	.testimonials .desktop-hide{
		display:block;
	}
    .ig-text{
      display: none;
    }
    .ig-photo {
      width:100%;
      height:auto;
      min-width: 0;
    }
    .ig-container{
      h4{
        text-align: left;
        font-size: 1.7rem;
        line-height: 2rem;
        font-weight:700;
        padding-left:25px;
      }
    }
	
}

/* Slick Slider Base Styles */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

.slick-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Custom styling for slider arrows */
.agents{
  .slick-prev,
  .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(120, 15, 158, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    z-index: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:0;
    border:none;
  }
  
  .slick-prev {
    left: -5px;
  }
  
  .slick-next {
    right: -5px;
  }
  
  .slick-prev:before,
  .slick-next:before {
    content: '\21FD';
    font-size: 28px;
    color: #fff;
  }
  
  .slick-next:before {
    content: '\21FE'; 
  }
  
  /* Custom styling for dots */
  .slick-dots {
    bottom: 10px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 0;
    list-style: none;
  }
  
  .slick-dots li {
    margin: 0 5px;
  }
  
  .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    padding: 0;
    cursor: pointer;
  }
  
  .slick-dots li.slick-active button {
    background-color: #9600BF;
  }
}

/* Custom card styles */
.testimonials{
  margin: 0 auto 50px;
}
.daily-3-agents{
  margin-bottom:100px;
}
.agent-card {
  /* border-radius: 10px; */
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  padding: 20px;
  margin: 10px 20px;
  transition: transform 0.3s;
  /* display: flex; */
  /* border-left:5px solid #780F9E; */
  border-top:3px solid #780F9E;
  border-radius: 10px;
  height:250px;
  cursor:pointer;
  background: #FFF;
}
.agent-top{
  display: flex;
}
.card:hover {
  transform: translateY(-10px);
}



.agent-photo {
  width: 120px;
  height: 120px;
  
  min-width: 120px;
  margin-right:10px;
  background-size:cover;
  border-radius: 50%;
  background-position: center top;
}
.agent-photo img{
  border-radius: 50%;
}

.agent-container{
  text-align: left;
    margin-top:12px;
}

.agent-text {
  font-style: italic;
  font-size:1rem;
  line-height: 1.3rem;
  min-height:40px;
  margin-bottom:5px;
  min-height:80px;
  p{
    margin-bottom:10px;
  }
  ul{
    font-size:1rem;
    line-height: 1.3rem;
    li{
      list-style: inside;
      margin-bottom:10px;
      margin-left:10px;
    }
  }
}
.agent-subtext{
  font-style: italic;
  text-align: right;
}
.agent-title {
  color: #555;
  font-weight:400;
  margin-top:3px;
  font-size:.9rem;
  line-height:1.2em;
}
.agent-title.company{
  margin-top:8px;
  line-height:1.2em;
  font-weight:300;
  font-size:1rem;
  text-transform: uppercase;
}

.agent-name {
  font-weight: 700;
  color: #333;
  font-size:1.25rem;
}
.agent-contract{
  margin-top:20px;
  position: relative;
  .agent-contract-type{
    font-size:1em;
    font-weight:500;
    margin-bottom:5px;
  }
  .agent-contract-amt{
    font-size:1.2rem;
    font-weight:700;
  }
  .agent-contract-date{
    font-weight:300;
  }
  .agent-contract-link{
    position:absolute;
    right:0px;
    bottom:0px;
  }
}
.title {
  color: #777;
  font-size: 0.8em;
}
.testimonials .desktop-hide{
  display:none;
}
@media only screen and (max-width: 767px) {
  
  .testimonials .mobile-hide{
    display:none;
  }
  .testimonials .desktop-hide{
    display:block;
  }
  
}

/* Slick Slider Base Styles */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

.slick-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Custom styling for slider arrows */
.agents{
  .slick-prev,
  .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(120, 15, 158, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    z-index: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:0;
    border:none;
  }
  
  .slick-prev {
    left: -5px;
  }
  
  .slick-next {
    right: -5px;
  }
  
  .slick-prev:before,
  .slick-next:before {
    content: '\21FD';
    font-size: 28px;
    color: #fff;
  }
  
  .slick-next:before {
    content: '\21FE'; 
  }
  
  /* Custom styling for dots */
  .slick-dots {
    bottom: 10px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 0;
    list-style: none;
  }
  
  .slick-dots li {
    margin: 0 5px;
  }
  
  .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    padding: 0;
    cursor: pointer;
  }
  
  .slick-dots li.slick-active button {
    background-color: #9600BF;
  }
}

/* Custom card styles */
.testimonials{
  margin: 0 auto 50px;
}
.daily-3-agents{
  margin-bottom:100px;
}
.agent-card {
  /* border-radius: 10px; */
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  padding: 20px;
  margin: 10px 20px;
  transition: transform 0.3s;
  /* display: flex; */
  /* border-left:5px solid #780F9E; */
  border-top:3px solid #780F9E;
  border-radius: 10px;
  height:250px;
  cursor:pointer;
  background: #FFF;
}
.agent-top{
  display: flex;
}
.card:hover {
  transform: translateY(-10px);
}



.agent-photo {
  width: 120px;
  height: 120px;
  
  min-width: 120px;
  margin-right:10px;
  background-size:cover;
  border-radius: 50%;
  background-position: center top;
}
.agent-photo img{
  border-radius: 50%;
}

.agent-container{
  text-align: left;
    margin-top:12px;
}

.agent-text {
  font-style: italic;
  font-size:1rem;
  line-height: 1.3rem;
  min-height:40px;
  margin-bottom:5px;
  min-height:80px;
  p{
    margin-bottom:10px;
  }
  ul{
    font-size:1rem;
    line-height: 1.3rem;
    li{
      list-style: inside;
      margin-bottom:10px;
      margin-left:10px;
    }
  }
}
.agent-subtext{
  font-style: italic;
  text-align: right;
}
.agent-title {
  color: #555;
  font-weight:400;
  margin-top:3px;
  font-size:.9rem;
  line-height:1.2em;
}
.agent-title.company{
  margin-top:8px;
  line-height:1.2em;
  font-weight:300;
  font-size:1rem;
  text-transform: uppercase;
}

.agent-name {
  font-weight: 700;
  color: #333;
  font-size:1.25rem;
}
.agent-contract{
  margin-top:20px;
  position: relative;
  .agent-contract-type{
    font-size:1em;
    font-weight:500;
    margin-bottom:5px;
  }
  .agent-contract-amt{
    font-size:1.2rem;
    font-weight:700;
  }
  .agent-contract-date{
    font-weight:300;
  }
  .agent-contract-link{
    position:absolute;
    right:0px;
    bottom:0px;
  }
}
.title {
  color: #777;
  font-size: 0.8em;
}
.testimonials .desktop-hide{
  display:none;
}
@media only screen and (max-width: 767px) {
  
  .testimonials .mobile-hide{
    display:none;
  }
  .testimonials .desktop-hide{
    display:block;
  }
  
}

