@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Viaoda+Libre&display=swap');

body{
    direction: ltr;
    font-family: 'Lora', sans-serif !important;
    font-size: 15px;
    margin: 0;
    padding: 0;
}


*, *::before, *::after {
    box-sizing: border-box;
  }

  :root {
    --blue: #2F3032;
    --pink: #fed049;
    --black: #352961;
    --accent: #ACA22E;
    --lighttxt: #fffef8;
  }
  
  .primary-holder {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
    max-width: 1310px;
	  margin: 0 auto;
  }
  
  button {
    border: none;
  }
  
  p {
    padding: 0;
    margin: 0;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  li {
    margin: 7px;
  }
  
  a {
    word-break: break-all;
    color: inherit;
    text-decoration: none;
  }
  
  ul {
    padding: 0;
    margin: 0;
  }
  
  img {
    max-width: 100%;
  }


  .ish-logo-cont {
    padding: 29px;
    display: flex;
    flex-direction: row;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
  }

  .ish-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 7px;
  }

  .ish-logo img {
    object-fit: contain;
    width: 45px;
    height: 45px;
  }

  .ish-logo h3 {
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
  }

  .ish-contacts, .ish-contact-item {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
  }

  .ish-contact-pic {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 45px;
    background: var(--accent);
  }

  .ish-contact-pic svg {
    fill: #000;
    width: 28px;
    height: 28px;
  }

  .ish-contact-pic a {
    font-size: 15px;
  }
  
  .ish-navigation {
    position: relative;
    z-index: 1;
    margin-bottom: -29px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline; 
    background-color: #f3f4ed;
  }
  
  .ish-nav-link {
    text-align: center;
    width: 25%;
    padding: 18px 7px;
    font-weight: 500;
    font-size: 17px;
    text-transform: uppercase;
    color: var(--black);
    transition: all ease 0.5s;
  }

  .ish-nav-link:nth-child(1) {
    background-image: url( media/bg-overlay_1920x10800.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-decoration: underline;
  }

  .ish-nav-link:hover {
    text-decoration: underline;
  }

  .ish-nav-downmenu {
    width: 20%;
    display: inline-block;
    position: relative;
    text-align: center;
  }
  
  .ish-nav-downmenu input[type="checkbox"]  {
    display: none;
  }
  
  .ish-nav-downmenu input[type="checkbox"]:checked ~ .ish-nav-downmenu-list {
    opacity: 1;
    max-height: 402px;
    padding: .6rem 0;
  }
  
  .ish-nav-downmenu input[type="checkbox"]:checked ~ .ish-nav-downmenu-btn {
    z-index: 99;
    box-shadow: 0 0 0 2px #f3f4edba;
    position: relative;
  }
  
  .ish-nav-downmenu-btn {
    font-weight: 500;
    font-size: 17px;
    text-transform: uppercase;
    color: var(--black);
    transition: all ease 0.4s;
    position: relative;    
    display: inline-block;
    cursor: pointer;
  }
  
  .ish-nav-downmenu-btn:hover {
    opacity: 0.75;
    text-decoration: underline;
  }
  
  .ish-nav-downmenu-list {
    position: absolute;
    top: calc(100% + 0.4rem);
    width: 220px;
    padding: 0;
    margin: 0;
    transition: all 0.2s ease;
    background: #fffef8;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    z-index: 99;
  }
  
  .ish-nav-downmenu-item {
    list-style: none;
  }
  
  .ish-nav-downmenu-item a {
    display: block;
    color: #555;
    text-decoration: none;
    padding: 7px;
    transition: all 0.2s ease;
  }
  
  .ish-nav-downmenu-item a:hover {
    background: #eee;
  }

  .intro-section-banner {
    height: fit-content;
}

  .isb-container {
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    background: url(pics/figures_header_6880d21dd4c461.20053305.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .isb-background {
    background: linear-gradient(132deg, #fed049a6, #2F3032a6, #352961a6);
    background-size: 400% 400%;
    animation: Gradient 15s ease infinite;
    position: relative;
    z-index: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    padding:0;
    margin:0px;
  }

  .isb-bg-element {
    border-radius: 2px;
    position: absolute;
    z-index: -1;
    top: 80vh;
    left: 45vw;
    width: 10px;
    height: 10px;
    border: solid 2px #D7D4E4;
    transform-origin: top left;
    transform: scale(0) rotate(0deg) translate(-50%, -50%);
    animation: isbEl 8s ease-in forwards infinite;
  }

  .isb-bg-element:nth-child(2n) {
    border-color: #FFF ;
  }

  .isb-bg-element:nth-child(2) {
    animation-delay: 2s;
    left: 25vw;
    top: 40vh;
  }

  .isb-bg-element:nth-child(3) {
    animation-delay: 4s;
    left: 75vw;
    top: 50vh;
  }

  .isb-bg-element:nth-child(4) {
    animation-delay: 6s;
    left: 90vw;
    top: 10vh;
  }

  .isb-bg-element:nth-child(5) {
    animation-delay: 8s;
    left: 10vw;
    top: 85vh;
  }

  .isb-bg-element:nth-child(6) {
    animation-delay: 10s;
    left: 50vw;
    top: 10vh;
  }
  
  .isb-title {
    padding: 155px 0;
  }

  .isb-title h2 {
    font-size: 37px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    margin-bottom: 29px;
  }

  .isb-btn {
    display: flex;
    justify-content: center;
  }
 
  @keyframes Gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  @keyframes isbEl {
    from {
      transform: scale(0) rotate(0deg) translate(-50%, -50%);
      opacity: 1;
    }
    to {
      transform: scale(20) rotate(960deg) translate(-50%, -50%);
      opacity: 0;
    }
  }

  


  .blog-collection, .services-spectrum {
    padding-top: 59px;
    padding-bottom: 59px;
  }

  .blog-collection-title, .services-spectrum-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-bottom: {rand_padding_vertical_v2;}
  }

  .blog-collection-title svg, .services-spectrum-title svg {
    width: 45px;
    height: 45px;
    object-fit: contain;
    fill: var(--blue);
  }

  .blog-collection-title h2, .services-spectrum-title h2 {
    font-size: 41px;
    margin: 0;
    text-transform: capitalize;
}

.blog-collection-list, .services-spectrum-list {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: center;
}

.blog-collection-article {
  width: 23%;
  border-radius: 18px 18px 150px 18px;
  border: 2px solid var(--pink);
  background: #fff;
}

.bca-img-meta {
  position: relative;
}

.bca-img img {
  border-radius: 18px;
  width: 100%;
  height: 269px;
  object-fit: contain;
}

.bca-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 18px;
  transition: all 0.2s ease;
  opacity: 0;
  visibility: hidden;
}

.blog-collection-article:hover .bca-img:before {
  opacity: 1;
  visibility: visible;
  left: 0;
  width: 100%;
}

.bca-meta {
  position: absolute;
  bottom: -29px;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 59px;
  background: var(--black);
  width: 90%;
  padding: 7px 15px 7px;
  margin-bottom: 0;
  text-align: center;
}

.bca-meta-item {
  display: flex;
  flex-direction: row;
  gap: 7px;
  align-items: center;
  font-size: 14px;
  color: #fff;
}

.bca-meta-item svg {
  width: 23px;
  height: 23px;
}

.bca-content {
  direction: ltr;
  padding: 50px 23px 20px;
}

.bca-content-title {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  margin-bottom: 18px;
}

.bca-content-txt {
  font-size: 14px;
  margin-bottom: 15px;
}

.services-spectrum-item { 
  width: 23%;
  background: #fed04946;
  border-radius: 29px;
  margin-bottom: 29px;
  padding: 18px 15px;
  box-shadow: 0px 5px 23px 0px rgba(0, 0, 0, 0.15);
  transition: all ease 0.5s;
}

.services-spectrum-item:hover {
  background-color: #fff;
}

.ssi-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ssi-title {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0;
}

.ssi-img {
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-radius: 20px;
}

.ssi-img:before {
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  bottom: -5px;
  right: -5px;
  border: 2px solid var(--pink);
  z-index: 1;
  border-radius: inherit;
  transform: scale(0.95);
  transition: all ease 0.5s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.services-spectrum-item:hover .ssi-img:before {
  opacity: 1;
  visibility: visible;
}

.ssi-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all ease 0.5s;
}

.services-spectrum-item:hover .ssi-img img  {
  transform: scale(1.05);
}

.ssi-cont-wrapper {
  width: 100%;
}

.ssi-cont {
  font-size: 14px;
  margin-bottom: 15px;
}

.ssi-btn {
  display: flex;
  justify-content: center;
}

.ssi-info {
  padding: 5px 7px;
  margin: 15px 0;
  background-color: #fff;
  border-radius: 50px 0 0 50px;
  margin-right: -18px;
  display: flex;
  flex-direction: row;
  gap: 7px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}

.ssi-info svg {
  fill: var(--black);
  width: 29px;
  height: 29px;
}

.feature-display {
  padding-top: 32px;
  padding-bottom: 32px;
}

.feature-display-header {
  display: flex;
  flex-direction:  column;
  gap: 29px;
  align-items: center;
}

.fdh-txt-wrapper, .sca-title-box {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 29px;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 4px solid var(--pink);
  border-radius: 20px;
  margin-bottom: 29px;
}

.sca-title-box {
  color: #fff;
}

.fdh-title {
  width: 70%;
}

.fdh-title h2, .sca-title h2 {
  font-size: 36px;
  font-weight: 500;
  margin: 0;
  margin-bottom: 18px;
}

.fsh-price {
  font-size: 41px;
  color: var(--accent);
  font-weight: 500;
}

.fdh-info, .sca-info {
  width: 28%;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  flex-direction: row;
}

.fdh-info-item, .sca-info-item {
  width: 45%;
  padding:  18px;
  border-radius:  18px;
  font-size: 19px;
  font-weight: 500;
  color: var(--black);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background-color: #2F303246;
}

.sca-info-item {
  background-color: #fff;
}

.fdh-info-item svg, .sca-info-item svg {
  width: 28px;
  height: 28px;
  fill: var(--black);
}

.sca-img {
  float: left;
  width: 50%;
  padding: 18px 22px;
  border-radius: 20px;
  margin: 0px 18px 18px 18px;
}

.sca-img img {
  width: 100%;
  height: 420px;
  object-fit: contain;
}


.fdh-img {
  width: 100%;
}

.fdh-img img {
  width: 100%;
  height: 452px;
  object-fit: contain;
  border-radius: 20px;
}

.fsh-content, .sca-content {
  font-size: 15px;
  line-height: 1.7;
  padding-left: 23px;
}

.sca-content {
  color: #fff;
}

.rate-options {
  position: relative;
  z-index: 0;
  margin-bottom: 105px;
}

.rate-options-title {
  position: absolute;
  padding: 29px 29px 405px;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #352961e7;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  margin-bottom: 32px;
}

.rate-options-title svg {
  width: 45px;
  height: 45px;
  fill: #fff;
}

.rate-options-title h2 {
  font-size: 36px;
  font-weight: 500;
  margin: 0;
  color: #fff;
}

.rate-options-list {
  padding-top: 225px;
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: -59px;
}

.rate-options-card {
  height: fit-content;
  width: 31%;
  padding: 29px 18px;
  border-radius: 20px;
  background-color: var(--pink);
} 

.rate-options-card:nth-child(3) {
  background-color: var(--accent);
}

.rate-options-card:nth-child(2) {
  background-color: var(--blue);
  margin-top: -39px;
}

.roc-title {
  font-size: 36px;
  font-weight: 500;
  margin: 0;
  margin-bottom: 18px;
  color: #fff;
  text-align: center;
}

.roc-serv-wrapper, .roc-serv-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.roc-price {
  text-align: center;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
}

.roc-serv-item {
  padding: 7px 15px;
  background-color: #fff;
  list-style: none;
  font-size: 14px;
  border-radius: 6px;
}

.roc-btn {
  margin-top: 15px;
  display: flex;
  justify-content: center;
}

.benefit-summary-bg {
  padding-top: 59px;
  padding-bottom: 59px;
  background-color: var(--blue);
}

.benefit-summary-title {
  font-size: 36px;
  font-weight: 500;
  margin: 0;
  margin-bottom: 32px;
  color: #fff;
  text-align: center;
}

.benefit-summary-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.benefit-summary-item {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.bsi-circle{
  width: 315px;
  height: 315px;
  border: 65px solid var(--accent);
  border-radius: 50%;

  --circle-size: calc(100% + 10px);
  --circle-border-size: 36px;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
  position: absolute;
  left: 50%;
  top: 60px;
  z-index: -1;
  transform: translateX(-50%);
  transition: all ease 0.5s;
}

.bsi-img img {
  width: 112px;
  height: 112px;
  transition: all ease 0.5s;
  transform: rotateY(0);
}

.benefit-summary-item:hover .bsi-img img {
  transform: rotateY(180deg);
}

.bsi-txt {
  padding: 0px 18px;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
}

.stats-analytics {
  padding-top: 32px;
  padding-bottom: 32px;
}


.stats-analytics-title {
  background-image: url(pics/renders_header_6880d21dd4c592.90373020.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-font-smoothing: antialiased;
    margin-bottom: 20px;
 }

 .stats-analytics-title h2 {
  color: #fff;
  font-size: 41px;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.stats-analytics-text {
  font-size: 17px;
  margin-bottom: 29px;
  text-align: center;
  display: block;
}

.stats-analytics-list {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: center;
}

.stat-analytics-item {
  position: relative;
  width: 23%;
  background: #fed04946;
  padding: 22px 29px;
  border-radius: 7px;
  transition: all .5s;
}

.stat-analytics-item:nth-child(1) {
  background-color: var(--blue);
}

.stat-analytics-item:hover {
  background-color: var(--blue);
}

.sai-content {
  direction: ltr;
  position: relative;
  z-index: 2;
}

.sai-content-pic {
  width: 65px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--accent);
  border-radius: 50%;
  margin-bottom: 29px;
}

.sai-content-pic svg {
  width: 45px;
  height: 45px;
  fill: #4d4d4d;
  stroke-width: 1;
}

.sai-content-count {
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  color: #2c2c2c;
  letter-spacing: -2px;
}

.sai-content-count p {
  font-size: 19px;
}

.stat-analytics-item:nth-child(1) .sai-content-count {
  color: #fff;
}

.stat-analytics-item:hover .sai-content-count {
  color: #fff;
}

.sai-content-overlay svg {
  width: 122px;
  height: 122px;
  opacity: 0;
  fill: #fed04946;
  position: absolute;
  top: 23px;
  right: 23px;
  z-index: 1;
} 

.stat-analytics-item:nth-child(1) .sai-content-overlay svg  {
  opacity: 1;
}

.stat-analytics-item:hover .sai-content-overlay svg {
  opacity: 1;
}

.interactive-form-bg {
  padding-top: 59px;
  padding-bottom: 59px;
  background-image: url(pics/figures_header_6880d21dd4c5f3.60416644.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.interactive-form {
  display: flex;
  flex-direction: row;
  gap: 32px;
}

.why-we {
  width: 48%;
  padding: 59px 0px 59px;
  display: flex;
  justify-content: end;
}

.why-we-cont {
  padding: 22px 18px;
  background-color: var(--pink);
  height: fit-content;
  border-radius: 6px;
  box-shadow: var(--black) 0px 0px 0px 2px inset, rgb(255, 255, 255) 15px -15px 0px -2px, var(--blue) 15px -15px}

.interactive-form-box {
  height: fit-content;
  width: 50%;
  padding: 32px;
  background-color: #fff;
  border-radius: 7px;
  box-shadow: 0px 15px 59px 0px rgba(109,109,109,.1);
}

.ifb-title {
  font-size: 19px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 29px;
  color: var(--black);
}

.ifb-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 15px;
}

.input-field--element_input,  .textarea-field--element_input {
  border-radius: 6px;
  border: 2px solid #c0c0c0;
  outline: 0 !important;
  box-sizing: border-box;
  padding: 15px 18px;
}

/* .feature-display-bg {
  background-image: linear-gradient(0deg, rgb(255, 255, 255) 0%, #2F3032e0 50%, rgb(255, 255, 255) 100%);
} */

.why-we-title {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 18px;
  color: #fff;
}

.why-we-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-we-item {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  font-size: 17px;
  color: #fff;
}

.why-we-item svg {
  fill: #fff;
  width: 45px;
  height: 45px;
}

.bottom-bar-bg {
  display: flex;
  flex-direction: column;
  padding-top: 59px;
  padding-bottom: 59px;
  background-color: #fed049;
}

.bottom-bar-block {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.bbb-logo {
  display: flex;
  gap: 15px;
  align-items: center;
}

.bbb-logo img {
  width: 45px;
  height: 45px;
}

.bbb-logo h3 {
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.bbb-nav-list {
  display: flex;
  align-items: center;
  gap:  18px;
  margin: 0;
}

.s-footer-nav--item {
  font-size: 17px;
  font-weight: 500;
  list-style: none;
}

.bbb-nav-list a {
  color: #fff;
  text-decoration: none;
}

.bottom-bar-spes {
  margin-top: 18px;
  border-top: 2px solid #fff;
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.bbs-whatsapp {
  display: flex;
  gap: 15px;
  align-items: center;
}

.bbs-whatsapp a {
  font-size: 19px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}

.bbs-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.bbs-txt p {
  font-size: 19px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.identity-insight-section {
  overflow: hidden;
  padding-top: 59px;
  padding-bottom: 59px;
}

.identity-insight-column {
  position: relative;
  z-index: 0;
}

.iic-about-title {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  margin-bottom: 20px;
}

.iic-about-title svg{
  width: 45px;
  height: 45px;
  fill: var(--blue);
}

.iic-about-title h2 {
  font-size: 36px;
  font-weight: 500;
  margin: 0;
}

.iic-about-txt {
  padding: 22px 20px;
  border: 4px solid var(--pink);
  border-radius: 20px;
  background-color: #fed04970;
}

.iic-about-txt img {
  width: 60%;
  height: 427px;
  object-fit: contain;
  padding: 23px;
  float: left;
}

.iic-about-txt p {
  font-size: 17px;
  line-height: 1.7;
}

.iic-about-decor {
  position: absolute;
  z-index: -1;
  bottom: -29px;
  left: -40%;
  width: 60%;
  height: auto;
  object-fit: contain;
}

.single-core-article-bg {
  padding-top: 59px;
  padding-bottom: 59px;
  background-color: var(--black);
}

.suggested-reads {
  padding-top: 32px;
  padding-bottom: 102px;
}

.suggested-reads-title {
  margin: 0;
  color: #fff;
  margin-bottom: 29px;
  font-size: 35px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}

.suggested-reads-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-direction: row;
}

.suggested-reads-card {
  position: relative;
  background-color: #fff;
  width: 32%;
  border-radius: 6px;
  
}

.sr-card-image {
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  z-index: 1;
  width: 100%;
  height: 405px;
}

.sr-card-image img {
  width: 100%;
  height: 405px;
  object-fit: cover; 
  border-radius: 6px;
}

.sr-card-content {
  padding: 23px 15px 18px;
  position: absolute;
  background-color: #fff;
  width: 86%;
  left: 0;
  right: 0;
  bottom: -105px;
  margin: auto;
  border-radius: 6px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all 500ms ease;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -23px, rgba(0, 0, 0, 0.3) 0px 39px 59px -39px, rgba(10, 37, 64, 0.35) 0px -2px 7px 0px inset;
}

.suggested-reads-card:hover .sr-card-content {
  bottom: 0px;
  border-radius: 15px 15px 0 0;
  box-shadow: 0px 0px 59px 0px rgba(0, 0, 0, 0.05);
}

.sr-card-comm {
  position: absolute;
  top: -45px;
  right: -15px;
  display: table;
  padding: 11.5px 18px;
  background-color: #ACA22E;
  text-align: center;
  border-radius: 7px;
}

 .sr-card-comm-count {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
}

.sr-card-comm-count svg {
  width: 23px;
  height: 23px;
  fill: #fff;
}

.sr-card-title {
  margin: 0;
  font-size: 17px;
  color: #2D2330;
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: 500;
}

.sr-card-title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  text-decoration: none;
}

.sr-card-title a:hover {
  background-size: 100% 2px;
  color: #ACA22E;
}

.sr-card-txt {
  font-size:  14px;
  margin-bottom: 15px;
}

.get-connected-sect-sg {
  background-image: url(pics/figures_header_6880d21dd4c5f3.60416644.jpg);
  background-position: center;
  background-size: cover;
}

.get-connected-overlay {
  padding-top: 59px;
  padding-bottom: 59px;
  background: rgba(255,255,255,0.5); color: #222;
}

.get-connected {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.get-connected-form {
  display: flex;
  gap:  23px;
  flex-direction: row;
}

.gc-form-wrap {
  padding:  23px;
  border-radius: 15px;
  background: linear-gradient(180deg,  #fed049 0%, #2D132C 100%);
}

.gc-form-text {
  font-size: 17px;
  color: #fff;
}

.gc-form-col {
  margin-top:  29px;
  display: flex;
  flex-direction: column;
}

.gc-form-input {
  height: 55px;
  border-radius: 7px;
  background: white;
  margin-bottom:  18px;
  border: none;
  padding: 0  18px;
  font-weight: 500;
  font-size:  15px;
  color: #4B4B4B;
}

.gcf-title {
  width: 40%;
  padding: 59px 0 0;
  margin: 0 32px;
  font-size: 41px;
  font-weight: 500;
}

.gc-form-check {
  color: #fff;
  font-size: 15px;
  margin-bottom: 18px;
}

.gcc-item {
  width: 30%;
  padding:  18px 23px;
  display: flex;
  gap:  18px;
  align-items: center;
  color: #fff;
  border-radius: 20px;
  background: linear-gradient(180deg,  #fed049 0%, #2D132C 100%);
}

.gcc-item svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}


.get-connected-contacts {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 29px;
}

.get-connected-map {
  display: flex;
  align-items: center;
}

.gcc-item-txt, .sca-info-item span {
  width: calc(100% - 30px);
}

.sect-wrapper {
  display: flex;
  flex-direction: column;
}

.rund-card {
  display: block;
}

.data-privacy-page-bg {
  word-break: break-all;
  overflow: hidden;
  padding-top: 59px;
  padding-bottom: 59px;
  background-color: #352961;
}

.data-privacy-page {
  color: #fff;
  font-size: 15px;
  padding-left: 18px;
  line-height: 1.7;
}

.data-privacy-title {
  font-size: 36px;
  font-weight: 500;
  margin: 0;
  margin-bottom: 32px;
  color: #fff;
}




.button-1 {
  display: inline-block;
  position: relative;
  padding: 15px 18px;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(to bottom, var(--blue), #2980b9);
  border: 2px solid #2980b9;
  border-radius: 5px;
  box-shadow: 0px 5px 7px rgba(0, 0, 0, 0.1), inset 0px 2px 5px rgba(255, 255, 255, 0.2);
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.2s, transform 0.3s;
}

.button-1::before,
        .button-1::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  z-index: -1;
  transition: transform 0.2s;
}

.button-1::before {
  top: 0;
  left: -100%;
  transform: skewX(-45deg);
}

.button-1::after {
  bottom: 0;
  right: -100%;
  transform: skewX(45deg);
}

.button-1:hover {
  background: linear-gradient(to bottom, #042b46, #0a525cd8);
  transform: translateY(-2px);
  box-shadow: 0px 4px 7px rgba(0, 195, 255, 0.2), inset 0px 2px 5px rgba(255, 255, 255, 0.1);
}

.button-1:hover::before {
  transform: translateX(100%);
}

.button-1:hover::after {
  transform: translateX(-100%);
}

.button-2 {
  display: inline-block;
  padding: 18px 23px;
  border: 2px solid #2c2c2c;
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.5s ease;
  outline: none;
  position: relative;
  overflow: hidden;
}

.button-2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: scale(0);
  transition: transform 0.5s ease;
}

.button-2:hover::after {
  transform: scale(4);
}

.button-2:hover {
  border-color: #666666;
  background: #292929;
}

.button-3 {
  display: inline-block;
  background: linear-gradient(140.14deg, var(--pink) 15.05%, var(--blue) 114.99%)
      padding-box,
    linear-gradient(142.51deg, #ff9465 8.65%, var(--pink) 88.82%) border-box;
  border-radius: 7px;
  border: 2px solid transparent;
  text-shadow: 2px 2px 2px #00000040;
  box-shadow: 10px 10px 23px 0px #45090059;
  padding: 15px 18px;
  line-height: 23px;
  cursor: pointer;
  transition: all 0.2s;
  color: white;
  font-size: 14px;
}

.button-3:hover {
  box-shadow: none;
  opacity: 80%;
}

.button-4 {
  display: inline-block;
  cursor: pointer;
  font-size: 14px;
  color: #616161;
  background-color: #f8f8fd;
  padding: 15px 23px;
  border-radius: 55em;
  border: 2px solid #8b93f8;
  box-shadow: 0px 5px var(--blue);
}
.button-4:active {
  position: relative;
  top: 5px;
  border: 2px solid #646fff;
  box-shadow: 0px 0px;
}

.button-5 {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  border: none;
  outline: none;
  box-shadow: none;
  overflow: hidden;
  position: relative;
  font-size: 14px;
  padding: 18px 23px;
  background-color: var(--blue);
  color: #fff;
  text-transform: capitalize;
  border-radius: 9999px;
  border: 2px solid var(--black);
  line-height: 1;
  transition: all ease 0.5s;
  z-index: 2;
}

.button-5:after, .button-5:before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 2px;
  width: calc(50% - 3px);
  background-color: var(--pink);
  z-index: -1;
  transform: scaleY(0.4);
  transform-origin: 100% 0;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
  border-radius: 9999px 0 0 9999px;
}

.button-5:after {
  left: auto;
  right: 2px;
  transform-origin: 100% 100%;
  border-radius: 0 9999px 9999px 0;
}

.button-5:hover {
  color: #fff;
  background-color: var(--black);
}

.button-5:hover:after, .button-5:hover:before {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}












@media (max-width: 1200px) {

  .primary-holder {
    max-width: 1140px;
  }

  .bsi-circle {
    width: 255px;
    height: 255px;
  }

  .bsi-img img {
    width: 95px;
    height: 95px;
  }

  .bsi-txt {
    font-size: 14px;
  }

  .iic-about-decor {
    display: none;
  }



}

@media (max-width: 992px) {
 
  .primary-holder {
    max-width: 960px;
  }

  .ish-nav-link, .ish-nav-downmenu-btn {
    font-size: 14px;
  }

  .isb-title h2 {
    font-size: 26px;
  }

  .benefit-summary-list {
    flex-wrap: wrap;
    gap: 23px;
  }

  .benefit-summary-item {
    width: 48%;
    flex-direction: column;
    gap: 15px;
  }

  .bsi-circle {
    width: 205px;
    height: 205px;
  }

  .bsi-circle {
    font-size: 18px;
  }

  .bottom-bar-block {
    flex-direction: column;
  }

  .fdh-info, .sca-info {
    flex-direction: column;
  }

  .fdh-info-item, .sca-info-item {
    width: 100%;
  }

  .blog-collection-list, .services-spectrum-list, .stats-analytics-list {
    flex-wrap: wrap;
  }

  .blog-collection-article, .stat-analytics-item {
    width: 48% !important;
  }

  .rate-options-list {
    gap: 0;
  }

  .rate-options-card {
    width: 33%;
  }

  .services-spectrum-item {
    width: 48%;
  }

  .rund-card {
    display: none;
  }

  .get-connected-contacts {
    flex-direction: column;
    align-items: center;
  }

  .gcc-item {
    width: 100%;
  }


}

@media(max-width: 767px)  {

  .primary-holder {
    max-width: 720px;
  }

  .ish-contact-item {
    display: none;
  }

  .ish-nav-link, .ish-nav-downmenu-btn {
    text-transform: none;
    padding: 18px 0;
  }

  .rate-options-list {
    flex-direction: column;
    gap: 23px;
  }

  .rate-options-card:nth-child(2) {
    margin-top: 0;
  }

  .rate-options-card {
    width: 100%;
  }

  .interactive-form {
    flex-direction: column;
  }

  .interactive-form-box, .why-we {
    width: 100%;
  }

  .bbb-nav-list a {
    font-size: 14px;
  }

  .rate-options-title h2 {
    font-size: 26px;
  }

  .fsh-price {
    font-size: 35px;
  }

  .sca-img {
    float: none;
    width: 100%;
    margin: 0;
    margin-bottom: 23px;
  }

  .iic-about-txt img {
    float: none;
    width: 100%;
    height: 255px;
  }

  .get-connected-form {
    flex-direction: column;
    align-items: center;
  }

  .gcf-title, .gc-form-wrap {
    width: 100%; 
  }

  .get-connected {
    flex-direction: column;
  }

  
}

@media(max-width: 576px) {

 .primary-holder {
    max-width: 540px;
  }

  .ish-navigation {
    flex-direction: column;
   
  }

  .ish-nav-link, .ish-nav-downmenu-btn, .ish-nav-downmenu {
    width: 100%;
    padding: 5px;
  }

  .benefit-summary-item {
    width: 100%;
  }

  .benefit-summary-list {
    gap: 50px;
  }

  .blog-collection-title h2, .iic-about-title h2, .services-spectrum-title h2, .benefit-summary-title, .fsh-price, .fdh-title h2, .sca-title h2, .roc-title, .stats-analytics-title h2, .why-we-title {
    font-size: 26px;
  }

  .services-spectrum-item {
    width: 100%;
  }

  .fdh-txt-wrapper, .sca-title-box {
    flex-direction: column;
  }

  .fdh-title, .fdh-info, .sca-info {
    width: 100%;
  }

  .fdh-info, .sca-info {
    flex-direction: row;
  }

  .blog-collection-article, .stat-analytics-item {
    width: 100% !important;
  }

  .bottom-bar-spes {
    font-size: 14px;
    flex-direction: column;
  }

  .fdh-info-item, .sca-info-item {
    font-size: 14px;
  }

  .interactive-form-box {
    padding: 18px;
  }

  .why-we-item {
    font-size: 14px;
  }

  .bbb-nav-list {
    flex-direction: column;
  }

  .bbs-txt p {
    font-size: 14px;
  }

  .suggested-reads-list {
    flex-direction: column;
  }

  .suggested-reads-card {
    width: 100% !important;
  }

  .suggested-reads-list {
    gap: 125px;
  }

  .fdh-img img, .sca-img img {
    height: auto;
  }

}


