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

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato' !important;
}
main
{
  width:100%;
}
/*****************************************/
/* Start your style declarations here    */
/*****************************************/
/* cards */
.container-card
{
display:flex;
  max-width:1520px;
  width:100%;
  flex-wrap:wrap;
justify-content:center;
align-content:center;
gap:5px;
  padding:0px;
}
.flip-card {
  background-color: transparent;
  width: 300px;
  height: 400px;
  flex-basis: calc(33.33% - 10px); /* Adjust the width to fit 3 items per row */

  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background-color:black;
  color:white;
 
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.flip-card-front h3
{
  color:white;
}

.flip-card-front {
  background-color: black;
  color: white;
   display:flex;
  align-items:center;
  justify-content:center;
}
.flip-card-back ul
{
  list-style-type:none;
  padding-left:0px;
}
.bodyContainer h2
{
  display:none;
}
.flip-card-back {
  background-color: white;
  color: black;
  transform: rotateY(180deg);
     display:flex;
  align-items:center;
  justify-content:center;
}
/* Reseting */
.jobsTable .slick-arrow
{
  display:none !important;
}
.slick-arrow
{
  border:none;
}
.cards .slick-prev
{
  left:-20px;
}
.testimonials .slick-next::before, .testimonials .slick-prev::before
{
  color:white !important;
}
.card__text
{
  height:500px !important;
  text-align:left;
}
button
{
 transition: all 500ms ease;
}


    
   .blog-post__social-sharing .social-links__icon svg,
body .social-links__icon svg {
  fill:  black ;
}

body .social-links__icon:hover,
body .social-links__icon:focus,
body .social-links__icon:active {
  background-color:  white;
}

body .social-links__icon:hover svg,
body .social-links__icon:focus svg,
body .social-links__icon:active svg {
  fill: #c89c5c ;
  -webkit-transition: all 500ms ease;
-moz-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;*
}
/* testimmonial slider starts */
  /* Custom CSS styles for your slider */

       
        .slidee {
            display: flex !important;
            justify-content: space-between;
            padding: 20px;
        }
        .col {
            width: 48%; /* Two columns with a small gap in between */
        }
  .testimonial_container,.tes,.testimonials,.para
  {
    background-color:black;

      color:white;
  }
  .slick-next::before, .slick-prev::before {
  color: black;
}
  blockquote
  {
          color:white;

  }
  blockquote:before{
              color: white;

  }
  blockquote:after{
              color:white;

  }
  blockquote footer{
              color:white;

  }
  blockquote cite:before{
              color:white;

  }

blockquote {
    font-family: Lato;
    position: relative;
    margin: 0.5em;
    border: none;
    padding: 0.5em 2em 0.5em 3em;
}

blockquote:before {
    font-family: Georgia, serif;
    position: absolute;
    font-size: 6em;
    line-height: 1;
    top: 0;
    left: 0;
    content: "\201C";
}
blockquote:after {
    font-family: Georgia, serif;
    position: absolute;
   /* display: block; don't use this, it raised the quote too high from the bottom - defeated line-height? */
    float:right;
    font-size:6em;
    line-height: 1;
    right:0;
    bottom:-0.5em;
    content: "\201D";
}
blockquote footer {
    padding: 0 2em 0 0;
    text-align:right;
}
blockquote cite:before {
    content: "\2013";
  
/* testimonial slider ends */