/*
input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}

#emailSignupModal{
  display: hidden;
}

.container_card {
  position: relative;
  z-index: 1;
  max-width: 300px;
  margin: 0 auto;
}
.container_card:before, .container:after {
  content: "";
  display: block;
  clear: both;
}



.card2 {
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 425px;
  background-color: #FFF;
  border-radius: 10px;
  box-shadow: 0 10px 20px 0 rgba(153, 153, 153, 0.25);
  padding: 0.75rem;
}

.card-image {
  border-radius: 8px;
  overflow: hidden;
  padding-bottom: 65%;
  background-image: url("https://assets.codepen.io/285131/coffee_1.jpg");
  background-repeat: no-repeat;
  background-size: 150%;
  background-position: 0 5%;
  position: relative;
}

.card-heading {
  position: absolute;
  left: 10%;
  top: 15%;
  right: 10%;
  font-size: 1.75rem;
  font-weight: 700;
  color: #735400;
  line-height: 1.222;
}
.card-heading small {
  display: block;
  font-size: 0.75em;
  font-weight: 400;
  margin-top: 0.25em;
}

.card-form {
  padding: 2rem 1rem 0;
}

.input {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  padding-top: 1.5rem;
}
.input + .input {
  margin-top: 1.5rem;
}

.input-label {
  color: #8597a3;
  position: absolute;
  top: 1.5rem;
  transition: 0.25s ease;
}

.input-field {
  border: 0;
  z-index: 1;
  background-color: transparent;
  border-bottom: 2px solid #eee;
  font: inherit;
  font-size: 1.125rem;
  padding: 0.25rem 0;
}
.input-field:focus, .input-field:valid {
  outline: 0;
  border-bottom-color: #6658d3;
}
.input-field:focus + .input-label, .input-field:valid + .input-label {
  color: #6658d3;
  transform: translateY(-1.5rem);
}

.action {
  margin-top: 2rem;
}

.action-button {
  font: inherit;
  font-size: 1.25rem;
  padding: 1em;
  width: 100%;
  font-weight: 500;
  background-color: #6658d3;
  border-radius: 6px;
  color: #FFF;
  border: 0;
}
.action-button:focus {
  outline: 0;
}

.card-info {
  padding: 1rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: #8597a3;
}
.card-info a {
  display: block;
  color: #6658d3;
  text-decoration: none;
}*/




      div[role="img"] {
        width: 60vmin;
        aspect-ratio: 1920 / 2402;
        background-image: url("img/bg-img/conference.jpg");
        background-repeat: no-repeat;
        /*background-position: 50% 50%;*/
        background-size: 100%;
      }

      @media screen and (prefers-reduced-motion: no-preference) {
        div[role="img"] {
          transition: all 0.2s ease-out;
        }
      }

      #default:checked ~ .image[role="img"] {
        background-position: 29% 71%;
        background-size: 600%;
        height: 300px;
      }

      #bus:checked ~ .image[role="img"] {
        background-position: 70% 76%;
        background-size: 550%;
        height: 300px;
      }

      #car:checked ~ .image[role="img"] {
        background-position: 77% 67%;
        background-size: 1200%;
        height: 300px;
      }

      #mail:checked ~ .image[role="img"] {
        background-position: 71% 68%;
        background-size: 800%;
        height: 300px;
      }

      #stop:checked ~ .image[role="img"] {
        background-position: 0% 71%;
        background-size: 600%;
        height: 300px;
      }

      #peak:checked ~ .image[role="img"] {
        background-position: 52% 39%;
        background-size: 800%;
        height: 300px;
      }

      /* Layout */

      fieldset {
        /*display: grid;*/
        grid-template-columns:  50vmin 5em 1.5em;
        gap: .25em 1em;
        max-width: 33em;

         display: flex;
        flex-wrap: wrap;
        flex-direction: column;
      }

      fieldset > * {
        align-self: start;
      }

      fieldset .image[role="img"] {
        grid-row: 1 / span 14;
      }


      .single-portfolio-area img {
        width: auto !important;
        height: 350px !important;
      }






      .specific_card{
        max-width: 350px;
        width: 100%;
        margin: 170px auto;
        background: #fff;
        border-radius: 5px;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
      }
      .specific_card .title{
        font-size: 22px;
        font-weight: 500;
      }
      .specific_card .content{
        margin-top: 20px;
      }
      .specific_card  label.box{
        background: #ddd;
        margin-top: 12px;
        padding: 10px 12px;
        display: flex;
        border-radius: 5px;
        border: 2px solid transparent;
        cursor: pointer;
        transition: all 0.25s ease;
      }
      #one:checked ~ label.first,
      #two:checked ~ label.second,
      #three:checked ~ label.third{
        border-color: #8E49E8;
        background: #d5bbf7;
      }
      .specific_card  label.box:hover{
        background: #d5bbf7;
      }
      .specific_card  label.box .circle{
        height: 22px;
        width: 22px;
        background: #ccc;
        border: 5px solid transparent;
        display: inline-block;
        margin-right: 15px;
        border-radius: 50%;
        transition: all 0.25s ease;
        box-shadow: inset -4px -4px 10px rgba(0, 0, 0, 0.2);
      }
      #one:checked ~ label.first .circle,
      #two:checked ~ label.second .circle,
      #three:checked ~ label.third .circle{
        border-color: #8E49E8;
        background: #fff;

      }
      .specific_card  label.box .plan{
        display: flex;
        width: 100%;
        align-items: center;
      }
      .specific_card input[type="radio"]{
        display: none;
      }


      input[type=checkbox] {
        display: none;
      }
      .confirm-modal {
        display: block;
        pointer-events: none;
        transition: opacity 0.5s;
      }
      .confirm-modal::before {
        /*
          The shadow/backdrop which also is clickable to close the modal.
        */
        content: "";
        display: block;
        background-color: rgba(0, 0, 0, 0.4);
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        min-height: 200px;
        z-index: 99;
        opacity: 1;
        pointer-events: all;
      }
      .confirm-modal form {
        /*
          The actual modal.

          Note: to not have clicks inside the modal
          bleed through to the label (which would uncheck the checkbox),
          pointer-events are set to none on the modal.
        */
        position: absolute;
        z-index: 99;
        top: 50px;

        transition: transform 0.75s;
        max-width: 90%;
        width: 450px;
        background-color: #fafafa;
        padding: 20px;
        left: 50%;
        transform: translate(-50%, 0);
        box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
        color: #080808;
        border-radius: 5px;
        pointer-events: none;
      }

      /* Hide the modal when the checkbox isn't checked. */
      input:not(:checked) + .confirm-modal {
        /* Uncomment this for a sharper switch, which might work better on older browsers. */
        /* display: none; */
        /*
          Might be wonky on older browsers, but allows for the fly down.
          Also does the fade in.
        */
      }
      input:not(:checked) + .confirm-modal, input:not(:checked) + .confirm-modal * {
        opacity: 0;
      }
      input:not(:checked) + .confirm-modal::before {
        height: 0;
        width: 0;
      }

      /* For that cute little fly down effect */
      input:not(:checked) + .confirm-modal form {
        transform: translate(-50%, -100px);
      }

      /* Allow buttons to be clickable. */
      .confirm-modal button {
        pointer-events: all;
      }




      @media (min-width:320px)  { /* smartphones, iPhone, portrait 480x320 phones */ 
        .big_hand {
          left: 36px !important;
          top: 133px !important;
          left: 132px !important;
        }
      }
      @media (min-width:481px)  { /* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */ }
      @media (min-width:641px)  { /* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */ }
      @media (min-width:961px)  { /* tablet, landscape iPad, lo-res laptops ands desktops */ 

      }
      @media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */ 
        .big_hand {
          width: 860px !important;
          top: 130px !important;
          left: 585px !important;
        }
      }
      @media (min-width:1281px) { /* hi-res laptops and desktops */ }



 /*     .aboutUs-thumbnail::before {
          content: "";
          position: absolute;
          width: 65%;
          height: 40px;
          background-color: #1a515d;
          top: 62px;
          right: 22%;
          z-index: 10;
          border-radius: 4px;
      }*/

        .section-heading a:hover {
          color: #0d6efd !important;
        }






/*reviews*/



.innerdiv
{
/*  transform: scale(0.9);*/
  display: grid;
  grid-gap: 1.5rem;
/*  grid-template-rows: repeat(3,25rem);
  grid-template-columns: repeat(4,17rem);*/
  margin-bottom: 0rem;
}
.eachdiv
{
  padding: 1rem 2rem;
    border-radius: 0.8rem;
    box-shadow: 5px 5px 20px #6d6b6b6b;
    color: white;
}
.div1
{
    background: #733FC8;
    grid-column: 1/3;
    grid-row: 1/2;
    background-image: url(https://raw.githubusercontent.com/RahulSahOfficial/testimonials_grid_section/5532c958b7d3c9b910a216b198fdd21c73112d84/images/bg-pattern-quotation.svg);
    background-repeat: no-repeat;
    background-position-x: 20rem;
}
.div2
{
  background:#49556B;
    grid-column: 3/4;
    grid-row: 1/2;
}
.div3
{
/*  background: white;*/
    grid-column: 4/5;
    grid-row: 1/3;
    color: black;
    background-image: url(https://raw.githubusercontent.com/RahulSahOfficial/testimonials_grid_section/5532c958b7d3c9b910a216b198fdd21c73112d84/images/bg-pattern-quotation.svg);
    background-repeat: no-repeat;
        background-position-x: 17rem;
    background-position-y: 41rem;
}
.div4
{
  background: white;
  grid-column: 1/2;
    grid-row: 2/3;
    color: black;

}
.div5
{
  background: #18202D;
  grid-column: 2/4;
    grid-row: 2/3;

}
/*.div6
{
  background: #733FC8;
    grid-column: 1/3;
    grid-row: 1/2;
    background-repeat: no-repeat;
    background-position-x: 25rem;
}
.div7
{
  background:#49556B;
    grid-column: 3/4;
    grid-row: 1/2;
}
.div8
{
  background: white;
    grid-column: 4/5;
    grid-row: 1/3;
    color: black;
}
.div9
{
  background: white;
  grid-column: 1/2;
    grid-row: 2/3;
    color: black;
}
.div10
{
  background: #18202D;
  grid-column: 2/4;
    grid-row: 2/3;
}*/


.eachdiv2
{
    padding: 1rem 2rem;
    border-radius: 0.8rem;
    color: white;
}
.div6
{
    background: #f6f6f6;
    grid-column: 1/3;
    grid-row: 1/2;
    color: black;
}
.div7
{
    background:#f6f6f6;
    grid-column: 3/4;
    grid-row: 1/2;
    color: black;
}
.div8
{
  background:#f6f6f6;
    grid-column: 4/5;
    grid-row: 1/3;
    color: black;
}
.div9
{
   background:#f6f6f6;
    grid-column: 1/2;
    grid-row: 2/3;
    color: black;

}
.div10
{
   background:#f6f6f6;
  grid-column: 2/4;
    grid-row: 2/3;
    color: black;

}

.userdetails
{
  display: flex;
}
.imgbox
{
  margin-right: 1rem;
}
.imgbox img
{
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  border: 2px solid #cec5c5;
}
.detbox
{
  display: flex;
    flex-direction: column;
    justify-content: center;
}
.detbox p
{
  margin: 0;
}
.detbox .name
{
  color: hsl(0, 0%, 81%);
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
    font-weight: 600;
}
.detbox .name.dark
{
  color: #49505A;
}
.detbox .designation
{
  color: hsl(0, 0%, 81%);
    opacity: 50%;
    font-size: 0.8rem;
}
.detbox .designation.dark
{
  color: #49505A;
}
.review h4
{
  font-size: 1.4rem;
  color: #F3DEFF;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
}
.review h3
{
    width: 100%;
    color: #171717;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Inter,sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 120%;
}
.review.dark h4{
  color:#4B5258;
}
.review.dark span{
  color:#4B5258;
}
.review p
{
  font-size: 0.95rem;
    color: #F3DEFF;
    font-weight: 500;
    opacity: 50%;
    line-height: 1.5;
}
.review span
{
  font-size: 0.95rem;
    color: #F3DEFF;
    font-weight: 500;
    opacity: 50%;
    line-height: 1.5;
}
.review.dark p{
  color: #0e0e0e;
}
.attribution
{
  font-size: 1rem;
    line-height: 1.5;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    text-align: right;
}
.attribution a
{
  text-decoration: none;
}

@media only screen and (max-width: 1000px)
{
  .innerdiv
  {
    transform: scale(0.7);
  }
}
@media only screen and (max-width: 800px)
{
  .innerdiv
  {
    transform: scale(0.6);
  }
}
@media only screen and (max-width: 600px)
{
  .div1 {
    background-position-x: 10rem;
  }
  .innerdiv
  {
    display: flex; 
    flex-direction: column;
    transform: scale(1);
/*    margin: 2rem;*/
    margin-bottom: 0rem;
  }
  .attribution
  {
    position: relative;
  }
}







.container {
  padding: 0px !important;
}

.welcome-content > h2 {
  font-size: 3rem !important;
  line-height: 70px !important;
}

.person {
  align-items: center;
  display: flex;
  flex-direction: column;
/*  width: 280px;*/
}
.container2 {
  border-radius: 50%;
  height: 312px;
  -webkit-tap-highlight-color: transparent;
  transform: scale(0.48);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 400px;
}
.container2:after {
  background-color: #f2f2f2;
  content: "";
  height: 10px;
  position: absolute;
  top: 390px;
  width: 100%;
}
.container2:hover {
  transform: scale(0.54);
}
.container-inner {
  clip-path: path(
    "M 390,400 C 390,504.9341 304.9341,590 200,590 95.065898,590 10,504.9341 10,400 V 10 H 200 390 Z"
  );
  position: relative;
  transform-origin: 50%;
  top: -200px;
}
.circle {
  background-color: #fee7d3;
  border-radius: 50%;
  cursor: pointer;
  height: 380px;
  left: 10px;
  pointer-events: none;
  position: absolute;
  top: 210px;
  width: 380px;
}
.img_team {
  pointer-events: none;
  position: relative;
  transform: translateY(20px) scale(1.15);
  transform-origin: 50% bottom;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.container2:hover .img {
  transform: translateY(0) scale(1.2);
}
.img1 {
  left: 22px;
  top: 164px;
  width: 340px;
}
.img2 {
  left: -46px;
  top: 174px;
  width: 444px;
}
.img3 {
  left: -16px;
  top: 144px;
  width: 466px;
}
.divider {
  background-color: #ca6060;
  height: 1px;
  width: 160px;
}
.name {
  color: #404245;
  font-size: 36px;
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
}
.title2 {
  color: #6e6e6e;
  font-family: arial;
  font-size: 14px;
  font-style: italic;
  margin-top: 4px;
}


/*title*/

.tick {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 20px;
    padding-top: 0;
    padding-right: 7px;
    display: block;
}


.tick_row {
      flex-direction: row;
    justify-content: left;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 10px;
    display: flex;
}

.tick_text {
    color: #343a40 !important;
    letter-spacing: 1px;
    margin-bottom: 0;
    font-family: Open Sans,sans-serif;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 16px;
}


/*accordion*/



#cases {
  width: 100%;
  height: 100%;
  text-align: left;
/*  position: fixed;*/
  top: 0;
  left: 0;
}

.accordion {
  display: flex;
  justify-content: space-evenly;
/*  margin: 5vh;*/
  height: 90vh;
  padding: 0 35px;
  overflow: hidden;
  background: white;
}

.section2 {
  display: flex;
  align-items: stretch;
  cursor: pointer;
  transition: all 0.5s ease;
  max-width: 5vw;
  min-width: 5vw;
}
.section2 label {
  font-weight: 600;
  font-size: 1.5rem;
}
.section2 label:hover {
  cursor: pointer;
  transform: scaleX(1.5);
  transform-origin: 100%;
  transition: 0.5s;
}
.section2 label:hover span {
  cursor: pointer;
  transform: rotate(-90deg) scaleY(0.75);
  transition: 0.5s;
}

.accordion
  input#item-1:not(:checked)
  ~ input#item-2:not(:checked)
  + .section2
  > label:hover {
  transform-origin: 0 !important;
  z-index: 25;
}
#item-1 + .section2 label:hover {
  z-index: 26;
  transform-origin: 0 !important;
}

.accordion input[type="radio"]:checked + .section2 label:hover {
  cursor: default;
  transform: none;
}

.accordion input[type="radio"]:checked + .section2 label:hover span {
  cursor: default;
  transform: rotate(-90deg);
}

.accordion input[type="radio"]:checked + .section2 {
  min-width: 90%;
  max-width: 90%;
  background: #fff;
  cursor: default;
}

.accordion input[type="radio"]:checked + .section2 label {
  max-width: 5vw;
  min-width: 5vw;
}
.accordion input[type="radio"]:checked + .section2 article {
  opacity: 1;
}

.section2 > label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5vw;
  height: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  color: white;
  border-top: 1px solid #333;
/*  outline: 1px solid;*/
  cursor: pointer;
  z-index: 5;
}
.section2 label span {
  margin: 0;
  transform: rotate(-90deg);
  white-space: nowrap;
}
.section2 article {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  transition: all 0.25s 0.1s ease-out;
}
.content2 {
  min-width: 100%;
  height: 100%;
  position: absolute;
  padding: 4em;
}
.accordion input {
  position: absolute;
  left: -10000px;
}

#item-1 + .section2,
#item-1 + .section2 article,
#item-1 + .section2 > label {
  background: #383e56;
  color: white;
}

#item-2 + .section2,
#item-2 + .section2 > label {
  background: #383e56;
  color: white;
}

#item-3 + .section2,
#item-3 + .section2 > label {
  background: #383e56;
  color: white;
}

#item-4 + .section2,
#item-4 + .section2 > label {
  background: #383e56;
  color: white;
}

@media only screen and (max-width: 700px) {
  .accordion {
    flex-direction: column;
  }
  .section2 {
    flex-direction: column;
    max-width: 100%;
    min-width: 100%;
    min-height: 10vh;
    max-height: 10vh;
  }

  .section2 label {
    width: 100%;
    height: 10vh;
  }
  .section2 label span {
    transform: none;
  }
  .accordion input[type="radio"]:checked + .section2 {
    max-width: 100%;
    max-height: 100%;
    flex: 1;
  }
  .accordion input[type="radio"]:checked + .section2 label {
    min-width: 100%;
    max-width: 100%;
    height: 10vh;
  }

  .section2 label:hover,
  .section2 label:hover span,
  .accordion input[type="radio"]:checked + .section2 label:hover span {
    transform: none;
  }
}


/*dropdown*/


.button3 {
  background: #d6d5e2;
  border-radius: 50%;
  cursor: pointer;
  height: 26px;
  width: 26px;
  z-index: 1;
}
.button3:after {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #474070;
  content:  ' ';
  height: 0;
  left: 8px;
  position: relative;
  top: -8px;
  width: 0;
}
.button3:hover {
  background: #c6c5d2;
}
.button3:active {
  background: #b6b5c2;
}
.places {
  color:  #898596;
  left: -64px;
  position: relative;
}
.menu {
  // background: #fff;
  // border: 1px solid #c6c6cc;
  border-radius: 8px;
  height: 222px;
  margin-top: 0px;
  position: relative;
  width: 273px;
}
.container3 {
  position: absolute;
}
.border1 {
  fill: #fff;
  fill-opacity: 0;
  stroke: #44454a;
  stroke-dasharray: 480 480;
  stroke-dashoffset: -480px;
  transition: stroke 400ms cubic-bezier(0.4, 0.0, 0.2, 1),
    stroke-dasharray 400ms cubic-bezier(0.4, 0.0, 0.2, 1),
    stroke-dashoffset 400ms cubic-bezier(0.4, 0.0, 0.2, 1),
    fill-opacity 400ms 40ms cubic-bezier(0.4, 0.0, 0.2, 1);
}
.border2 {
  fill: #fff;
  fill-opacity: 0;
  stroke: #44454a;
  stroke-dasharray: 0 480;
  stroke-dashoffset: 0;
  transition: stroke 400ms cubic-bezier(0.4, 0.0, 0.2, 1),
    stroke-dasharray 400ms cubic-bezier(0.4, 0.0, 0.2, 1),
    stroke-dashoffset 400ms cubic-bezier(0.4, 0.0, 0.2, 1),
    fill-opacity 400ms 40ms cubic-bezier(0.4, 0.0, 0.2, 1);
}
.shadow {
  left: -50px;
  opacity: 0;
  position: absolute;
  top: -46px;
  transition: opacity 400ms cubic-bezier(0.4, 0.0, 0.2, 1);
}
.contents {
  left: 20px;
  opacity: 0;
  position: relative;
  top: 48px;
  transition: opacity 400ms cubic-bezier(0.4, 0.0, 0.2, 1);
  width: 234px;
}
.row3 {
  align-items: center;
  border-bottom: 1px solid #cdd0de;
  cursor: pointer;
  display: flex;
  height: 46px;
  padding: 0 5px;
  user-select: none;
  -moz-user-select: none;
}
.row3:hover {
  background: #f8f8f8;
}
.row3:active {
  background: #f5f5f5;
}
.expanded .border1 {
  fill-opacity: 1;
  stroke: #c6c6cc;
  stroke-dasharray: 480 480;
  stroke-dashoffset: 0;
}
.expanded .border2 {
  fill-opacity: 1;
  stroke: #c6c6cc;
  stroke-dasharray: 480 480;
  stroke-dashoffset: 0;
}
.expanded .shadow {
  opacity: 1;
}
.expanded .button {
  transform: rotate(0);
}
.expanded .contents {
  opacity: 1;
  transition: opacity 400ms 100ms cubic-bezier(0.4, 0.0, 0.2, 1);
}


/*menu*/



#saasboxNav ul li {
  display: inline-block;
/*  padding: 15px;*/
  position: relative;
  padding: 5px;
}

#saasboxNav ul li ul {
  display: none;
}
#saasboxNav ul li:hover {
  cursor: pointer;
  background-color: #f2f2f2;

}
#saasboxNav ul li:hover ul {
      display: block;
    background: white;
    border: 1px solid #e8dfdf;
/*    margin-top: 15px;*/
    border-radius: 10px;
    padding-left: 0px;
  display: block;
/*  margin-top: 15px;*/
  width: 200px;
  left: 0;
  position: absolute;
}
#saasboxNav ul li:hover ul li {
  display: block;
  background-color: white;
}
#saasboxNav ul li:hover ul li span {
  float: right;
  color: #f9f9f9;
  background-color: #F03861;
  padding: 2px 5px;
  text-align: center;
  font-size: 0.8rem;
  border-radius: 3px;
}
#saasboxNav ul li:hover ul li:hover {
  background-color: #e0e0e0;
}
#saasboxNav ul li:hover ul li:hover span {
  background-color: #ee204e;
}
.arrow {
  position: absolute;
  top:28px;
  right:0px;
}

.dropdown_menu{
  padding: 2px 10px !important;
}




/*cases*/
/*
*,
*::before,
*::after {
  position: relative;
  left: 0;
  top: 0;
  box-sizing: border-box;
}


body {
  margin: 0;
  display: grid;
  place-items: center;
  min-height: 100%;
}

html,
body {
  scroll-behavior: smooth;
  scroll-padding-top: 1rem;
}*/
:root {
  --size-header: 2.25rem;
  --size-accordion-title: 1.25rem;
  --size-accordion-content: 1rem;
  --animation-speed: 100;
  --slide-ease: cubic-bezier(0.86, 0, 0.07, 1);
  --slide-duration: calc(400ms * 100 / var(--animation-speed));
  --slide-delay: calc(450ms * 100 / var(--animation-speed));
  --circle-duration: calc(900ms * 100 / var(--animation-speed));
}
::selection {
  background-color: rgba(0, 0, 0, 0.4);
}
.accordion_case {
  --circle-x: 1.8rem;
  --circle-y: 0;
  --circle-r: 200%;
  --circle-bg: #fff;
  color: #000;

  background-color: var(--circle-bg);
  max-width: 56ch;
  margin-bottom: 1rem;
  border-radius: min(8px, 0.5rem);

  display: grid;
  grid-template-rows: 0fr 0fr;
  transition-timing-function: var(--slide-ease);
  transition-duration: 200ms, 200ms, var(--slide-duration);
  transition-property: opacity, box-shadow, grid-template-rows;
  transition-delay: 0ms, 0ms, var(--slide-delay);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
  opacity: 0.9;
}

.accordion_case:not(:target):hover {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.5);
}

.accordion_case:not(:target):active {
  opacity: 1;
  box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.3);
}

.accordion_case,
.content_case {
  overflow: hidden;
}

.accordion_case:target {
  --d: 90deg;
  grid-template-rows: 0fr 1fr;
  transition: grid-template-rows var(--slide-ease) var(--slide-duration)
    var(--slide-delay);
}

.wrapper {
  padding-block: 0 1.05rem;
  padding-inline: 1.25rem;
}

.content_case {
  font-size: var(--size-accordion-content);
  line-height: 140%;
}

.content_case p {
  margin-bottom: 1rem;
}

.content_case a {
  color: currentColor;
  font-weight: 800;
  text-decoration: underline;
}

.work-step-wrapper :last-child,
.content_case :last-child {
  margin-bottom: 0;
}

.title_case a {
  padding: 1rem 1.25rem;
  font-size: var(--size-accordion-title);
  font-weight: 800;
  color: currentColor;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  place-items: center;
}

.title_case a::before {
  --chevron-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3C!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cpath fill='white' d='M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z'/%3E%3C/svg%3E");
  content: "";
  left: 0;
  top: 0;
  width: 0.65rem;
  aspect-ratio: 320 / 512;
  display: inline-block;
  margin-right: 0.75rem;
  transform: rotate(var(--d, 0deg));
  transition: transform var(--slide-ease) var(--slide-duration)
    var(--slide-delay);
  mask-image: var(--chevron-icon);
  mask-size: 100% 100%;
  -webkit-mask-image: var(--chevron-icon);
  -webkit-mask-size: 100% 100%;
  background-color: currentColor;
}

.accordion_case::before,
.accordion_case::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--circle-bg);
  mix-blend-mode: difference;
  transform-style: preserve-3d;
  transition-timing-function: ease;
  transition-property: opacity, clip-path, visibility;
  pointer-events: none;
  clip-path: circle(var(--r) at var(--circle-x) var(--circle-y));
  border-radius: inherit;
  z-index: 4;
}

.accordion_case::before {
  --r: 0%;
  transition-delay: var(--circle-duration), var(--circle-duration), 0ms;
  transition-duration: 0ms, var(--circle-duration), 0ms;
  opacity: 0;
}

.accordion_case:target::before {
  --r: var(--circle-r);
  transition-delay: 0ms, 0ms, 0ms;
  transition-duration: 0ms, var(--circle-duration), 0ms;
  opacity: 1;
}

.accordion_case::after {
  --r: var(--circle-r);
  transition-delay: 0ms, 0ms, var(--circle-duration);
  transition-duration: 0ms, var(--circle-duration), 0ms;
  visibility: hidden;
  opacity: 1;
}

.accordion_case:target:after {
  --r: 0%;
  transition-delay: 0ms, 0ms, 0ms;
  transition-duration: 0ms, 0ms, 0ms;
  visibility: visible;
  opacity: 0;
}

.title_case a:focus-visible {
  background-color: hsl(0, 100%, 90%);
  outline: none;
}

.accordion_case:target .title_case a:focus-visible {
  background-color: hsl(183, 100%, 93%);
}


/*card*/


.card2 {
  position: relative;
  display: flex;
  justify-content: center;
  cursor: pointer;
  background: #FFF;
  box-shadow: 0 0 6px 0 rgba(32, 32, 36, 0.12);
  transition: all 0.35s ease;
}
.card2::before, .card2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
  height: 4px;
}
.card2::before {
  width: 0;
  opacity: 0;
  transition: opacity 0 ease, width 0 ease;
  transition-delay: 0.5s;
}
.card2::after {
  width: 100%;
  background: white;
  transition: width 0.5s ease;
}
.card2 .content_card {
/*  width: 18em;*/
  max-width: 80%;
}
.card2 .logo {
  margin: 0 0 1em;
  width: 10.625em;
  transition: all 0.35s ease;
}
.card2 p {
  color: #999;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 2px;
}
.card2 .hover_content {
  overflow: hidden;
  max-height: 0;
  transform: translateY(1em);
  transition: all 0.55s ease;
}
.card2 .hover_content p {
  margin: 1.5em 0 0;
  color: #6E6E70;
  line-height: 1.4em;
}
.card2:hover {
/*  width: 24em;*/
  box-shadow: 0 10px 20px 0 rgba(32, 32, 36, 0.12);
}
.card2:hover::before {
  width: 100%;
  opacity: 1;
  transition: opacity 0.5s ease, width 0.5s ease;
  transition-delay: 0;
}
.card2:hover::after {
  width: 0;
  opacity: 0;
  transition: width 0 ease;
}
.card2:hover .logo {
  margin-bottom: 0.5em;
}
.card2:hover .hover_content {
  max-height: 100%;
  transform: none;
}






details {
/*  width: 75%;*/
  min-height: 5px;
/*  max-width: 700px;*/
  padding: 15px;
/*  margin: 0 auto;*/
  position: relative;
  font-size: 22px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 15px;
  box-sizing: border-box;
  transition: all .3s;
}

details + details {
  margin: 20px 0;
}

details[open] {
  min-height: 50px;
/*  background-color: #242424;*/
  border: 1px solid #ddd;
/*  box-shadow: 2px 2px 20px rgba(0,0,0,.2);*/
}

details p {
  color: #96999d;
  font-weight: 300;
}

summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  cursor: pointer;
}

summary:focus {
  outline: none;
  
}

summary:focus::after {
  content: "";
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 0 0 5px rebeccapurple;
}

summary::-webkit-details-marker {
  display: none
}

summary > p {
  text-align: left !important;
  margin: 0;
  width: 100%;
}

.control-icon {
  fill: rebeccapurple;
  transition: .3s ease;
  pointer-events: none;
}

.control-icon-close {
  display: none;
}

details[open] .control-icon-close {
  display: initial;
  transition: .3s ease;
}

details[open] .control-icon-expand {
  display: none;
}



/*tags*/

a.tag {
  text-decoration: none;
  white-space: nowrap;
  font-size: 1rem;
  color: #a1a1af;
  display: block;
  padding: 0.3em 0.85em;
  margin: 0.5em;
  text-transform: uppercase;
  border: 1px solid #28242f;
  border-radius: 2em;
  transition: transform 0.2s;
  transition-timing-function: cubic-bezier(0.45, -0.85, 0.55, -0.45);
}
a.tag:hover {
  transform: scale(1.2);
  background: linear-gradient(to right, #ff8a00, #da1b60);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.container_tags {
  padding-left: 1em;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: #a1a1af;
}
.container_tags .tags {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container_tags .tags span {
  margin-right: 1em;
  padding: 1em;
  text-transform: uppercase;
  transform: rotate(180deg);
  writing-mode: vertical-rl;
  border-left: 3px solid #28242f;
  background: linear-gradient(to right, #ff8a00, #da1b60);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.container_tags .tags a:last-child {
  margin-left: 0.5em;
}
.container_tags .tags a:last-child:hover {
  color: white;
}
.container_tags label {
  position: relative;
  white-space: nowrap;
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: flex-end;
  border: 3px solid transparent;
  border-radius: 2em;
  background-color: #17141d;
  background-image: radial-gradient(circle at 50%, #ff8a00, #da1b60);
  transition: all 250ms ease-in-out;
}
.container_tags label::before {
  position: absolute;
  right: 0;
  bottom: -20px;
  z-index: 0;
  transform: rotate(-35deg);
  width: 4px;
  height: 25px;
  content: "";
  border-radius: 2px;
  background-image: linear-gradient(to top, #ff8a00, #da1b60);
  transition: all 250ms ease-in-out;
}
.container_tags label .tag_search {
  position: relative;
  z-index: 1;
  display: block;
  padding-left: 1.75em;
  width: 42px;
  height: 42px;
  font-size: 1rem;
  border: 0;
  border-radius: inherit;
  background-color: #17141d;
  color: white;
  transition: width 250ms ease-in-out;
}
.container_tags label .tag_search:focus {
  outline: none;
}
.container_tags label:hover {
  width: 20%;
}
.container_tags label:hover::before {
  height: 30px;
  transform: rotate(-90deg) translate(28px, 15px);
}
.container_tags label:hover .tag_search {
  width: 100%;
  padding-right: 1em;
  padding-left: 1em;
}

@media (max-width: 991px) {
  .container_tags {
    background-image: none;
  }
  .container_tags label {
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
  }
}



/*popup*/




/*tags2*/


:root {
  --gray-50: hsl(204, 45%, 98%);
  --gray-600: hsl(218, 17%, 35%);
  --gray-700: hsl(218, 23%, 23%);
  --gray-800: HSL(220, 26%, 14%);
  --gray-900: hsl(230, 21%, 11%);
  --gap: 12px;
  --duration: 30s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
}

.marquee-container {
  display: grid;
  align-content: center;
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
}
.marquee-title {
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  color: var(--gray-50);
  margin-bottom: 5rem;
  text-align: center;
}
.marquee-wrapper {
  margin: auto;
  max-width: 100vw;
}
.marquee {
  display: flex;
  gap: var(--gap);
}
.marquee-group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll-left var(--duration) linear infinite;
}
.marquee-tag-wrapper {
  text-decoration: none;
  color: var(--gray-50);
  font-size: 12px;
  line-height: 15px;
  font-weight: 500;
  padding: 0.625rem 1.5rem 0.625rem 0.625rem;
  background-color: var(--gray-700);
  border-radius: 9999px;
}
.marquee-tag-wrapper:hover {
  background-color: var(--gray-800);
}
.marquee-tag-container {
  display: flex;
  align-items: center;
}
.marquee-tag-icon {
  padding: 6px;
  background-color: var(--gray-600);
  border-radius: 9999px;
}
.marquee-tag {
  margin-left: 0.75rem;
}
@keyframes scroll-left {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-group {
    animation-play-state: paused;
  }
}

