/*
Project:    Agency
Version:    1.0
Last change:    12/03/24 [fixed Float bug, vf]
Author Name: Agency
Primary use:    Official Site
*/

/*Reset CSS*/
*
{
    margin: 0;
    padding: 0;
}
html,body{
    height:50%;
    font-family:sans-serif;
    scroll-behavior: smooth;
}
a:hover{
    text-decoration: none;
}
.section-padding{
    padding: 50px;
}

/* Adding Fonts*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&family=Roboto:wght@400;500&display=swap');

.header{
    background: linear-gradient(-40deg, #6d020b, #1f1d1d);
    
}

/* Header Navigation Styles */
.header-nav {
    min-height: 70px;
}
.navbar-brand img{
    width: 35%;
    height: 20%;
}
.main-menu ul li{
    margin-left: 26px;
    text-align: center;
}
.main-menu ul li a{
    font-family: 'Poppins', sans-serif;
    color: #e94560;
    font-weight: 500;
    font-size: 16px;
}
.main-menu ul li:hover{
    transform: scale(1.1);
    transition: 0.5s all ease;
}
button.nav-button{
    background:#ff4c29;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    padding: 5px 10px;
    border: none;
    vertical-align: middle;
    margin-top: -5px;
    border-radius: 5px;
}

/* Header Banner Area Styles */

.container.header-content {
    height: 100%;
}
.highlight{
    color: #ff4c29;
}
.left-content h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 60px;
    font-weight: 500;
    color: #e94560;
}
.centralize{
    display: flex;
    align-items: center;
}
.left-content p {
    font-family: 'Roboto',sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #c7c7c7;
}
.call-to-action button {
    background: #ff4c29;
    border: none;
    font-family: 'Roboto',sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 5px 10px;
}
.call-to-action a {
    font-family: 'Roboto',sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #ff4c29;
    text-decoration: underline;
    margin-left: 30px;
}
.right-content img{
    width: 70%;
    padding-left: 30px;
}

/* Work process syles */

.process-block {
    text-align: center;
    padding: 10px;
}

.process-block img {
    background: #1a1a1a;
    border: 2px dotted white;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.process-block p {
    font-family: 'Roboto',sans-serif;
    color:#ddd;
    font-size: 18px;
    font-weight: 400;
    padding-top: 10px;
}

.process-block h3 {
    font-family: 'Roboto',sans-serif;
    font-size: 26px;
    font-weight: 500;
    color:#ddd;

}
.project-discussion{
    margin-left: 30px;
}
.project-discussion h2 {
    font-family: 'Roboto',sans-serif;
    font-size: 45px;
    font-weight: 500;
    color: #e94560;}

.project-discussion p {
    font-family: 'Roboto',sans-serif;
    font-size: 18px;
    line-height: 35px;
    color: #c7c7c7;}

.project-discussion button {
    background: #ff4c29;
    border: none;
    font-family: 'Roboto',sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 15px;
}

/* Services styles  */
.services{
    background: linear-gradient(30deg, #1a1a2e, #0f0f0f);
}
.service-heading {
    font-family: 'Roboto',sans-serif;
    font-size: 45px;
    font-weight: 500;
    color: #f00202;
}

/* Multiframe Carousel  */

@media (min-width: 768px) {
     
    .service-carousel.carousel-inner .carousel-item-right.active,
    .service-carousel.carousel-inner .carousel-item-next {
        transform: translateX(50%);
    }

    .service-carousel.carousel-inner .carousel-item-left.active,
    .service-carousel.carousel-inner .carousel-item-prev {
        transform: translateX(-50%);
    }
}

/* large - display 3 */
@media (min-width: 992px) {

    .service-carousel.carousel-inner .carousel-item-right.active,
    .service-carousel.carousel-inner .carousel-item-next {
        transform: translateX(33%);
    }

    .service-carousel.carousel-inner .carousel-item-left.active,
    .service-carousel.carousel-inner .carousel-item-prev {
        transform: translateX(-33%);
    }
}

@media (max-width: 768px) {
    .service-carousel.carousel-inner .carousel-item>div {
        display: none;
    }

    .service-carousel.carousel-inner .carousel-item>div:first-child {
        display: block;
    }
}

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

 .carousel-inner .carousel-item-right,
 .carousel-inner .carousel-item-left {
    transform: translateX(0);
}
.service-card h5{
	font-family:'Roboto',sans-serif;
	font-size:26px;
	font-weight:500;
	color:#e94560;
}
.service-card p{
	font-family:'Roboto',sans-serif;
	font-size:18px;
	color:black;
}
.service-card a{
	color:black;
	font-family:'Roboto',sans-serif;
	font-size:18px;
	font-weight:500;
	color:black;
	text-decoration:underline;
}
.service-card a:hover{
	color:#ff4c29;
	transition:all 0.5s ease;
}
.service-control-prev, .service-control-next {
    height: 50px;
    width: 50px;
    outline: black;
    background-color: #ff4c29;
    background-size: 100%, 100%;
    border-radius: 3px;
}
.service-control-next {
    margin-right: -105px;
}

.service-control-prev {
    margin-left: -205px;
}
.service-card {
    min-height: 495px;
}

/* Testimonial Styles  */
.testimonial .card{
    border: none !important;
}

a.carousel-control-prev.testimonial-control {
    top: 60%;
}

a.carousel-control-next.testimonial-control {
    top: 60%;
    left: 5%;
}
.testimonial-control{
    max-width: 32px;
}
.testimonial-description h3 {
	font-family: 'Roboto',sans-serif;
	font-size: 45px;
	font-weight: 500;
	color: #ff4c29;
    }


.testimonial-control-icon {
	background: #ff4c29;
	color: #e94560;
	height: 32px;
    width: 32px;
    padding:5px;
}
.client-meta-data h5 {
	font-family: 'Roboto',sans-serif;
	font-size: 24px;
	font-weight: 500;
	color: #e94560;
	}


.client-meta-data p {
	font-family: 'Rubik',sans-serif;
	font-size: 16px;
	font-style: italic;
	line-height:32px
	}
.coma{
    position: absolute;
    top: 70%;
    left: -10%;
    background: #ff4c29;
    padding: 20px;
}

/* Portfolio Styles  */

.portfolio{
    background: linear-gradient(-40deg, #1a1a2e, #0f0f0f);
}
 h2.portfolio-heading{
    font-family: 'Roboto',sans-serif;
    font-size: 45px;
    font-weight: 500;
    color: #e94560;
}
.portfolio-buttons button {
    background: transparent;
    border: none;
    padding: 5px 10px;
    font-family: 'Roboto',sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #e94560;
}

.portfolio-buttons button:hover {
    color: #ff4c29;
}

.portfolio-buttons {
    margin-bottom: 20px;
}
.myMixCont{
    margin-top: 30px;
}
.myMixCont img{
    margin-bottom: 10px;
}
/* Partner Section Styles  */

.partner-heading {
    font-family: 'Roboto',sans-serif;
    font-size: 45px;
    font-weight: 500;
    color: #e94560;
}


.card-body {
  background: linear-gradient(to bottom right, #ff0000, #990000);
  color: white;
}
.card-body a {
  color: #fff;
  font-weight: bold;
}
.card-body {
  background: linear-gradient(to bottom right, #ff0000, #990000);
  color: white;   /* makes all text inside white */
}

.card-body h5,
.card-body p,
.card-body a {
  color: white !important; /* ensure headings, text, and links are white */
}

 .showcase {
     padding: 150px 0;
     position: relative;
}
 .hexagon-container {
     display: flex;
     justify-content: center;
     align-items: center;
     flex-wrap: wrap;
     gap: 40px;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
}
 .hexagon {
     width: 220px;
     height: 290px;
     position: relative;
     margin: 20px;
     transition: all 0.4s ease;
}
 .hexagon:hover {
     transform: scale(1.1);
}
 .hexagon-inner {
     width: 100%;
     height: 100%;
     position: relative;
     transform: rotate(30deg);
     border-radius: 25px;
     padding: 50px 25px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
     overflow: hidden;
     transition: all 0.4s ease;
}
 .hexagon:hover .hexagon-inner {
     transform: rotate(0deg);
     border-radius: 15px;
}
 .hexagon:nth-child(odd) .hexagon-inner {
     background: linear-gradient(135deg, rgba(0, 255, 255, 0.12), rgba(255, 0, 128, 0.12));
     border: 1px solid rgba(0, 255, 255, 0.3);
}
 .hexagon:nth-child(even) .hexagon-inner {
     background: linear-gradient(135deg, rgba(255, 0, 128, 0.12), rgba(128, 0, 255, 0.12));
     border: 1px solid rgba(255, 0, 128, 0.3);
}
 .hexagon-icon {
     font-size: 2.8rem;
     margin-bottom: 20px;
     transform: rotate(-30deg);
     filter: drop-shadow(0 0 10px currentColor);
     transition: all 0.4s ease;
}
 .hexagon:hover .hexagon-icon {
     transform: rotate(0deg);
}
 .hexagon h4 {
     font-size: 1.3rem;
     color: #ffffff;
     transform: rotate(-30deg);
     margin-bottom: 15px;
     font-weight: bold;
     text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
     transition: all 0.4s ease;
}
 .hexagon:hover h4 {
     transform: rotate(0deg);
}
 .hexagon p {
     font-size: 0.95rem;
     color: #e0e0e0;
     transform: rotate(-30deg);
     line-height: 1.5;
     max-width: 140px;
     word-wrap: break-word;
     hyphens: auto;
     transition: all 0.4s ease;
}
 .hexagon:hover p {
     transform: rotate(0deg);
}
/* Section 4: Enhanced Timeline */
 .timeline {
     padding: 100px 0;
     position: relative;
}
 .timeline-container {
     max-width: 1100px;
     margin: 0 auto;
     position: relative;
     padding: 0 20px;
}
 .timeline-line {
     position: absolute;
     left: 50%;
     top: 0;
     bottom: 0;
     width: 4px;
     background: linear-gradient(180deg, #e0a3ff, #ff69b4, #9370db);
     transform: translateX(-50%);
     border-radius: 2px;
     box-shadow: 0 0 20px rgba(224, 163, 255, 0.3);
}
 .timeline-item {
     display: flex;
     justify-content: flex-end;
     padding-right: 60px;
     position: relative;
     margin-bottom: 60px;
}
 .timeline-item:nth-child(even) {
     justify-content: flex-start;
     padding-left: 60px;
     padding-right: 0;
}
 .timeline-content {
     max-width: 450px;
     padding: 50px 40px;
     position: relative;
     transform: perspective(1000px) rotateY(-5deg);
     transition: all 0.4s ease;
     background: rgba(224, 163, 255, 0.08);
     backdrop-filter: blur(25px);
     border: 1px solid rgba(224, 163, 255, 0.15);
     border-radius: 25px;
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
 .timeline-item:nth-child(even) .timeline-content {
     transform: perspective(1000px) rotateY(5deg);
}
 .timeline-content:hover {
     transform: perspective(1000px) rotateY(0deg) translateZ(20px);
     box-shadow: 0 25px 60px rgba(224, 163, 255, 0.2), 0 0 0 1px rgba(224, 163, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
     border-color: rgba(224, 163, 255, 0.3);
}
 .timeline-dot {
     position: absolute;
     left: 50%;
     top: 60px;
     transform: translateX(-50%);
     width: 24px;
     height: 24px;
     background: linear-gradient(135deg, #ff69b4, #e0a3ff);
     border-radius: 50%;
     box-shadow: 0 0 25px rgba(255, 105, 180, 0.6), 0 4px 15px rgba(0, 0, 0, 0.3);
     z-index: 1;
     border: 3px solid rgba(255, 255, 255, 0.2);
}
 .timeline-year {
     font-size: 1.8rem;
     color: #e0a3ff;
     margin-bottom: 20px;
     font-weight: bold;
     text-shadow: 0 0 15px rgba(224, 163, 255, 0.4);
}
 .timeline-content h4 {
     font-size: 1.5rem;
     color: #ffffff;
     margin-bottom: 20px;
     font-weight: 600;
}
 .timeline-content p {
     color: #d1d1d1;
     line-height: 1.7;
     font-size: 1rem;
}



.showcase {
    padding: 150px 0;
    position: relative;
    background: linear-gradient(to right, #6d020b 0%, #1f1d1d 100%); /* matches your theme */
    color: #fff; /* makes text visible on dark background */
}


.section-title {
    text-align: center;   /* centers the text */
    color: #ff4c24;       /* your accent color */
    font-weight: bold;
    margin-bottom: 50px;
}



/* Section 4: Enhanced Timeline */
.timeline {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, #1f1d1d, #6d020b); /* match site background */
}

/* Container */
.timeline-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

/* Center Line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ff4c24, #ff7f11, #6d020b);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 76, 36, 0.4);
}

/* Timeline Items */
.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 60px;
    position: relative;
    margin-bottom: 60px;
}
.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 60px;
    padding-right: 0;
}

/* Content Box */
.timeline-content {
    max-width: 450px;
    padding: 50px 40px;
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.4s ease;
    background: rgba(109, 2, 11, 0.85); /* dark red glass */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 76, 36, 0.3);
    border-radius: 25px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.timeline-item:nth-child(even) .timeline-content {
    transform: perspective(1000px) rotateY(5deg);
}
.timeline-content:hover {
    transform: perspective(1000px) rotateY(0deg) translateZ(20px);
    box-shadow: 0 25px 60px rgba(255, 127, 17, 0.5), 0 0 0 1px rgba(255, 127, 17, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 127, 17, 0.5);
}

/* Dot */
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 60px;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ff4c24, #ff7f11);
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(255, 76, 36, 0.7), 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 1;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

/* Year */
.timeline-year {
    font-size: 1.8rem;
    color: #ff7f11; /* orange highlight */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(255, 127, 17, 0.6);
}

/* Heading */
.timeline-content h4 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Paragraph */
.timeline-content p {
    color: #ffbca2;  /* soft orange-white text */
    line-height: 1.7;
    font-size: 1rem;
}

/* Footer Styles */

.footer{
    background: linear-gradient(30deg, #1a1a2e, #0f0f0f);
}
section.footer.section-padding {
    padding-bottom: 10px;
}
.footer-widget-1 p {
    font-family: 'Roboto',sans-serif;
    font-size: 18px;
    color:white;
    line-height: 35px;
    margin-top: 20px;
    text-align: center;
}
.footer-widget-2 h3,.footer-widget-3 h3 {font-family: 'Roboto',sans-serif;font-size: 26px;font-weight: 500;line-height: 35px; color:white;}

.footer-widget-2 ul li,.footer-widget-3 ul li {
    color:white;
    list-style: none;
    padding: 5px;
}

.footer-widget-2 ul li a,.footer-widget-3 ul li a {
    font-family: 'Roboto',sans-serif;
    font-size: 18px;
    line-height: 40px;
    color: white;
}
.footer-widget-4 p{
    font-family: 'Roboto',sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 40px;
    color:white;
    margin-top: 30px;
    margin-bottom: 20px;
}
.footer-widget-4 ul li{
    list-style-type: none;
    display: inline;
    color:white;
    padding: 5px 10px;
    font-size: 27px;
}
.footer-widget-4 ul li a {
    color: white;
}

.footer-widget-4 ul li a:hover {
    color: #ff4c29;
    transition: all 0.5s ease-in-out;
}
.copyright-text p {font-family: 'Roboto',sans-serif;font-size: 18px;font-weight: 400;color: #c7c7c7;line-height: 40px;}
.messenger i {
    color: #0f0f0f;
    background: #ff4c29;
    font-size: 40px;
    padding: 5px 10px;
}
/* Contact Us Styling  */

.contact-header{
    max-height: 500px;
}
.contact-header .right-content img{
    width: 100% !important;
}
.contact-header .container.header-content{
    max-height: 400px;
}

/* Office Blocs Styleing  */

.office-block {
    padding: 15px;
    border: 2px dotted #ff4c29;
    text-align: center;
}

.office-block h3 {font-family: 'Roboto',sans-serif;font-weight: 500;font-size: 35px;line-height: 32px;color: #e94560;padding: 25px 0px;}

.office-block p {font-family: 'Roboto',sans-serif;font-size: 18px;line-height: 35px;color: #c7c7c7;}

#project-details form {
    background-color: white;
    color: #888888;
    text-align: left;
    padding-top: 20px;
  }
  
  #project-details label {
    display: none;
  }
  
  #project-details input,
  #project-details  textarea {
    /* to create space for placing icon*/
    padding: 20px 10px 20px 32px;
    border-color: transparent;
    /* background-color: #FFDE11; */
    border-radius: 4px;
    border: 1px solid #999999;
  }
  
  #project-details .btn-default {
    margin-top: 5px;
    margin-bottom: 30px;
    padding: 15px 36px;
    background-color: #ff4c29;
    border: 0px;
    color: #e94560;
    width: 100%;
    border-radius: 5px;
    font-family: 'Roboto',sans-serif;
    font-size: 18px;
    font-weight: 500;
  }
  
  #project-details .btn-default:hover,
  #project-details .btn-default:focus {
    border-color: transparent;
    outline: 0px auto -webkit-focus-ring-color;
  }
  
  /*position should be relative and z-index greater than one*/
  #project-details .icon {
    position: relative;
    float: right;
    padding-right: 10px;
    margin-top: -30px;
    z-index: 2;
    color: #586794;
  }
  
  #project-details .icon-textarea {
    float: right;
    margin-top: -150px;
    padding-right: 10px;
    position: relative;
    z-index: 2;
    color: #586794;
  }
  #project-type{
    width: 100%;
    font-family: 'Roboto',sans-serif;
    font-size: 18px;
    color: #c7c7c7;
    border: 1px solid #ddd;
    padding:7px 10px 7px 32px;
  }

  /* Service Page Styles  */

/*   
section.services {
    text-align: center;
}
.card-row-gap {
    padding-bottom: 2rem;
}
.card-body{
background-color: #ffebef;

}
a.card-body{
    text-decoration: underline;
}
.best-solution img{
	width:100%;
	height:auto;
}

/* why choose Agency

.service-type-gap {
 padding-bottom: 8rem;
}
h2.col-md-6 {
    padding-bottom: 3rem;
    padding-top: 2rem;
} */
.feature-design-image {
    margin-bottom: 25px;
	    display: flex;
    justify-content: center;
}
section.header.contact-header {
    padding-bottom: 50px;
}
.card.service-block-card img {
    width: 100%;
    height: auto;
}

.card.service-block-card {
    min-height: 450px;
    margin-bottom: 20px;
}
.why-choose img {
    margin-bottom: 25px;
}

.why-choose {
    padding-bottom: 30px;
}
/* Blog Page Styles  */
.blog-post {
    border: 1px solid #999999;
    padding: 15px;
}
.blog-category p {
	font-family: 'Roboto',sans-serif;
	font-size: 14px;
	color: #ff4c29;
	line-height: 35px;
	}

.blog-content h2.blog-title {
	font-family: 'Roboto',sans-serif;
	font-size: 26px;
	font-weight: 500;
	color: #ff4c29;
	line-height: 35px;
	}

.blog-content p.blog-exercpt {
	font-family: 'Roboto',sans-serif;
	font-size: 18px;
	line-height: 35px;
	color: #c7c7c7;
	}

.blog-meta h3 {
	font-family: 'Roboto',sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #e94560;
	}

.blog-meta p.date {
	font-family: 'Roboto',sans-serif;
	font-size: 12px;
	line-height: 35px;
	color: #c7c7c7;
	}
	
.pagination ul li {
    list-style: none;
    display: inline;
    border: 1px solid #ddd;
    padding: 10px;
}
.pagination ul li a {
	font-family: 'Roboto',sans-serif;
	font-size: 18px;
	color: #c7c7c7;
	}

.pagination ul li.previous{
	background:#ddd;
}
.pagination ul li.previous a,.pagination ul li.next a{
	color:#e94560 !important;
}
.pagination ul li.next{
	background:#ff4c29;
}
p.sub-heading {font-family: 'Roboto',sans-serif;font-size: 20px;line-height: 35px;color: #e94560;padding-top: 20px;}

form#newsletter-form input#client-mail {
    max-width: 500px;
    border: 1px solid #ff4c29;
    border-radius: 3px;
}

form#newsletter-form button,.team-counter button {
    background: #ff4c29;
    border: none;
    padding: 5px 12px;
    font-family: 'Roboto',sans-serif;
    font-size: 18px;
    color: #e94560;
}

/* Portfolio Page Styles */

.portfolio-block {
    position: relative;
    margin-bottom:20px;
    border: 2px solod red;
}

.portfolio-overlay {
    position: absolute;
    background: #ff4c29;
    height: 90%;
    width: 90%;
    top: 10px;
    left: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	display:none;
}

.portfolio-block:hover .portfolio-overlay{
	display:flex;
	transition:0.5s ease;
}

.portfolio-overlay h3 {font-family: 'Roboto',sans-serif;font-size: 35px;font-weight: 500;color: #e94560;}

.portfolio-overlay p {font-family: 'Roboto',sans-serif;font-size: 20px;font-weight: 500;color: #c7c7c7;}


section.portfolio-call-to-action {
    background: #1f1f1f;
    text-align: center;
}

section.portfolio-call-to-action h2 {
	font-family: 'Roboto',sans-serif;
	font-size: 45px;
	font-weight: 500;
	line-height: 55px;
	color: #e94560;
	}
	
button.project-button-1,button.project-button-2 {
    border: none;
    padding: 10px 15px;
    font-family: 'Roboto',sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #e94560;
	margin-right:15px;
}
button.project-button-1{
	background:#ff4c29;
}
button.project-button-2{
	background:#0f0f0f;
}


/* Team Page Styles  */

.team-page-description h2 {font-family: 'Roboto',sans-serif;font-size: 45px;font-weight: 500;color: #e94560;line-height: 32px;padding-bottom: 25px;}

.team-page-description p {
    font-family: 'Roboto',sans-serif;
    font-size: 18px;
    /* font-weight: 500; */
    color: #e94560;
    line-height: 35px;
    padding-bottom: 25px;
}
.team-card {
    margin-bottom: 40px;
}
.team-card h3 {font-family: 'Roboto',sans-serif;font-size: 26px;font-weight: 500;color: #e94560;padding: 5px;}

.team-card p {font-family: 'Roboto',sans-serif;font-size: 14px;color: #c7c7c7;}

.team-card ul li {
    list-style: none;
    display: inline;
    padding: 5px 10px;
}

.team-card ul li a {
    color: #E1E1E1;
    font-size: 16px;
}

.team-card ul li a:hover {
    color: #ff4c29;
    transition: all 0.5s;
}

span.counter {font-family: 'Roboto',sans-serif;font-size: 45px;color: #e94560;}

span.counter-plus {
    font-family: 'Roboto',sans-serif;
    font-size: 45px;
    color: #ff4c29;
}